/* =========================================================
   IVYS Multiservices — Home page
   ========================================================= */

:root {
    --c-navy-deep:   #01214B;
    --c-navy:        #0D2346;
    --c-blue:        #2C8BD9;
    --c-blue-2:      #2D8AD8;
    --c-text:        #5B5757;
    --c-text-muted:  #777777;
    --c-text-light:  #999999;
    --c-bg:          #FFFFFF;
    --c-bg-soft:     #F5F5F5;
    --c-border:      #E1E1E1;

    --ff: 'Roboto', system-ui, -apple-system, Segoe UI, sans-serif;

    --container: 1200px;
    --radius-pill: 100px;
    --radius: 6px;

    --shadow-soft: 0 6px 24px rgba(13, 35, 70, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Offset anchor scroll so sticky header doesn't cover the section heading */
#servicio,
#nosotros,
#comunidad,
#invitacion,
#ivet {
    scroll-margin-top: 90px;
}

body {
    margin: 0;
    font-family: var(--ff);
    font-size: 17px;
    line-height: 1.6;
    color: var(--c-text);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 28px;
    font-family: var(--ff);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    white-space: nowrap;
}
.btn-pill { border-radius: var(--radius-pill); }
.btn-lg   { padding: 14px 44px; font-size: 17px; }

.btn-primary {
    background: var(--c-navy-deep);
    color: #fff;
    border-color: var(--c-navy-deep);
}
.btn-primary:hover { background: #082c66; border-color: #082c66; }

.btn-dark {
    background: var(--c-navy);
    color: #fff;
    border-color: var(--c-navy);
}
.btn-dark:hover { background: #123066; border-color: #123066; }

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.btn-outline-light:hover { background: #fff; color: var(--c-navy); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand img { width: 75px; }

.header-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #000;
    font-weight: 400;
    font-size: 15px;
}
.header-meta .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000;
}
.header-meta .meta-item i { font-size: 14px; color: var(--c-blue); }
.header-meta .meta-divider {
    width: 1px;
    height: 22px;
    background: var(--c-blue);
}

/* =========================================================
   CTA BAR (navy)
   ========================================================= */
.cta-bar {
    background: var(--c-navy);
    padding: 8px 0;
}
.cta-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.cta-bar-title {
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 400;
}
.cta-bar .btn { padding: 7px 22px; font-size: 13px; }

/* =========================================================
   HEADER VARIANTS
   ========================================================= */
.site-header--minimal { border-bottom: 1px solid #eaeaea; }
.site-header--minimal .brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
.site-header--minimal .brand img { width: auto; height: 48px; }
.brand-label {
    font-size: 28px;
    font-weight: 600;
    color: var(--c-navy-deep);
    letter-spacing: 2px;
    line-height: 1;
}

/* --- Contact-style header meta (email + social icons) --- */
.header-meta--contact {
    gap: 16px;
}
.header-meta--contact .meta-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--c-navy-deep);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}
.header-meta--contact .meta-email:hover { color: var(--c-blue); }
.header-meta--contact .meta-email i { color: var(--c-blue); }
.header-socials {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}
.header-socials a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--c-navy);
    color: #fff;
    font-size: 13px;
    transition: background 0.2s ease, transform 0.2s ease;
}
.header-socials a:hover { background: var(--c-blue); transform: translateY(-1px); }

/* =========================================================
   TITLE BAR (sub-page hero strip)
   ========================================================= */
.title-bar {
    background: var(--c-bg-soft);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #EAEAEA;
    border-bottom: 1px solid #EAEAEA;
}
.title-bar-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--c-navy-deep);
    margin: 0 0 12px;
    letter-spacing: 0.5px;
}
.title-bar-sub {
    font-size: 16px;
    font-weight: 400;
    color: var(--c-navy-deep);
    margin: 4px 0;
    line-height: 1.5;
}

/* =========================================================
   GENERIC SUB-PAGE HERO
   ========================================================= */
.page-hero {
    padding: 80px 0 40px;
    text-align: center;
}
.page-hero-title {
    font-size: 44px;
    font-weight: 400;
    color: var(--c-navy-deep);
    margin: 0 0 24px;
    letter-spacing: 0.5px;
}
.page-hero-subtitle {
    font-size: 19px;
    font-weight: 700;
    color: var(--c-navy-deep);
    max-width: 920px;
    margin: 0 auto 22px;
    line-height: 1.5;
}
.page-hero-text {
    font-size: 16px;
    color: var(--c-text);
    max-width: 1080px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =========================================================
   EXPLORA PAGE
   ========================================================= */
.explora-hero {
    padding: 50px 0 20px;
    text-align: center;
}
.explora-hero-title {
    font-size: 51px;
    font-weight: 600;
    color: var(--c-navy-deep);
    margin: 0;
    letter-spacing: 2px;
}

/* --- Service section (block image left, text right) --- */
.explora-service {
    padding: 60px 0 100px;
    overflow: hidden;
}
.explora-service-grid {
    display: grid;
    grid-template-columns: minmax(260px, 380px) 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}
.explora-service-media {
    display: flex;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
}
.explora-service-media img {
    display: block;
    width: 100%;
    max-width: 380px;
    height: auto;
    margin: 0;
    padding: 0;
    image-rendering: -webkit-optimize-contrast;
}
.explora-service-body {
    color: var(--c-text);
    font-size: 15px;
    line-height: 1.65;
    padding-right: max(24px, calc((100vw - 1200px) / 2 + 24px));
}
.explora-service-body p { margin: 0 0 18px; }

.section-title-blue {
    font-size: 32px;
    font-weight: 400;
    color: var(--c-navy-deep);
    margin: 0 0 16px;
}
.section-title-navy {
    font-size: 32px;
    font-weight: 400;
    color: var(--c-navy-deep);
    margin: 36px 0 16px;
}
.section-title-navy:first-child { margin-top: 0; }
.lead-bold {
    font-size: 18px;
    font-weight: 700;
    color: var(--c-navy-deep);
    margin: 0 0 18px !important;
    line-height: 1.45;
}
.step-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--c-navy-deep);
    margin: 24px 0 10px;
}

/* --- Vision section (text left, image right) --- */
.explora-vision {
    padding: 60px 0 100px;
}
.explora-vision-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.explora-vision-body {
    color: var(--c-text);
    font-size: 15px;
    line-height: 1.65;
}
.explora-vision-body p { margin: 0 0 16px; }
.explora-vision-body strong { color: var(--c-navy-deep); font-weight: 700; }
.explora-vision-media img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
}

/* --- Community + Calendar centered blocks --- */
.explora-community,
.explora-calendar {
    padding: 60px 20px 80px;
    text-align: center;
}
.community-block {
    max-width: 920px;
}
.community-block .section-title-navy {
    margin-top: 0;
    margin-bottom: 14px;
}
.community-block .lead-bold { margin-bottom: 18px !important; }
.community-block p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--c-text);
}

.community-wa {
    margin-top: 24px;
}
.btn-outline-blue {
    background: #fff;
    color: var(--c-navy-deep);
    border: 3px solid var(--c-blue-2);
    padding: 12px 60px;
    font-weight: 600;
}
.btn-outline-blue:hover {
    background: var(--c-blue-2);
    color: #fff;
}

/* --- Events on Explora page --- */
.events--explora { padding-top: 30px; }

/* --- Ivet section --- */
.ivet-section {
    padding: 80px 0 100px;
}
.ivet-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}
.ivet-media {
    display: flex;
    justify-content: center;
}

/* Layered collage: top-left thumb, big center portrait, bottom-right thumb */
.ivet-collage {
    position: relative;
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1 / 1.15;
}
.ivet-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62%;
    height: 78%;
    object-fit: cover;
    object-position: center top;
    border-radius: 24px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
    z-index: 2;
}
.ivet-thumb {
    position: absolute;
    width: 40%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 18px;
    border: 5px solid #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    z-index: 3;
}
.ivet-thumb--top    { top: 0;    left: 0; }
.ivet-thumb--bottom { bottom: 0; right: 0; }
.ivet-body {
    color: var(--c-text);
    font-size: 15px;
    line-height: 1.7;
}
.ivet-body .section-title-navy {
    margin-top: 0;
    margin-bottom: 10px;
}
.ivet-body .ivet-tagline {
    font-size: 17px;
    font-weight: 600;
    color: var(--c-blue);
    margin: 0 0 22px;
    line-height: 1.4;
}
.ivet-body p { margin: 0 0 18px; }

.hero-portrait-link {
    display: inline-block;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.hero-portrait-link:hover {
    transform: translateY(-3px);
    filter: brightness(1.03);
}

/* =========================================================
   EVENT BANNER (full-width hero with image background + overlay)
   ========================================================= */
.event-banner {
    position: relative;
    width: 100%;
    min-height: 680px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    margin: 50px 0;
}
.event-banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}
.event-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}
.event-banner-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 70px 0 0;
    text-align: center;
}
.event-banner-content .container { max-width: 900px; }

.event-banner .event-title {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: #6FB5F0;
    margin: 0 0 16px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}
.event-banner .event-title:hover { color: #9FCDF5; text-decoration: underline; }
.event-banner .event-meta {
    font-size: 17px;
    color: #FFFFFF;
    font-weight: 500;
    margin: 0 0 26px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.55);
}
.event-banner .event-description p {
    font-size: 16px;
    color: #FFFFFF;
    line-height: 1.7;
    margin: 0 0 14px;
    text-shadow: 0 2px 6px rgba(0,0,0,0.55);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
    padding: 80px 0 60px;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    width: 100%;
}
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: max(24px, calc((100vw - 1200px) / 2 + 24px));
}
.hero-media {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0;
    margin-right: 0;
}
.hero-portrait {
    display: block;
    margin-right: 0;
    padding-right: 0;
}
.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.05;
    color: var(--c-navy-deep);
    margin: 0 0 12px;
    letter-spacing: -1px;
}
.hero-subtitle {
    font-size: 20px;
    color: var(--c-text-muted);
    max-width: 460px;
    margin: 0 0 32px;
    line-height: 1.45;
}
.whatsapp-btn-img {
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.whatsapp-btn-img img { max-width: 280px; width: 100%; height: auto; }
.whatsapp-btn-img:hover { transform: translateY(-2px); opacity: 0.92; }

.hero-portrait {
    max-height: 560px;
    width: auto;
    object-fit: contain;
}

/* =========================================================
   STEPS
   ========================================================= */
.steps {
    padding: 30px 0 70px;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    padding: 0 60px;
}
.step h3 {
    color: var(--c-navy-deep);
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 12px;
}
.step p {
    color: var(--c-navy-deep);
    font-size: 16px;
    line-height: 1.55;
    margin: 0;
}

/* =========================================================
   FORM
   ========================================================= */
.form-section {
    padding: 40px 0 80px;
}
.form-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 36px;
}
.form-intro h2 {
    font-size: 22px;
    color: var(--c-text-muted);
    font-weight: 400;
    margin: 0 0 14px;
}
.form-intro h2 strong { font-weight: 700; }
.form-intro p {
    color: var(--c-text-muted);
    margin: 0;
    font-size: 17px;
}

.contact-form {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: #222;
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--ff);
    font-size: 15px;
    color: #222;
    background: var(--c-bg-soft);
    border: 1px solid transparent;
    border-radius: var(--radius);
    transition: all 0.2s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--c-blue);
    box-shadow: 0 0 0 3px rgba(44, 139, 217, 0.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-disclaimer {
    text-align: center;
    font-size: 13px;
    color: var(--c-text);
    line-height: 1.6;
    margin: 30px auto 28px;
    max-width: 820px;
}
.form-submit {
    display: flex;
    justify-content: center;
    margin-top: 14px;
}

.alert {
    max-width: 760px;
    margin: 0 auto 24px;
    padding: 14px 20px;
    border-radius: var(--radius);
    font-size: 15px;
    text-align: center;
}
.alert-success { background: #E8F5E9; color: #1B5E20; border: 1px solid #A5D6A7; }
.alert-error   { background: #FFEBEE; color: #B71C1C; border: 1px solid #EF9A9A; }

/* =========================================================
   MAP SECTION
   ========================================================= */
.map-section {
    padding: 30px 0 80px;
    text-align: center;
}
.map-title {
    font-size: 51px;
    font-weight: 600;
    color: var(--c-blue);
    margin: 0 0 40px;
}
.map-wrap {
    max-width: 1000px;
    margin: 0 auto;
}
.florida-map {
    width: 100%;
    aspect-ratio: 1 / 1.1;     /* matches Florida's natural shape — no empty space */
    max-height: 760px;
    background: transparent;
    position: relative;
    z-index: 0;
    isolation: isolate;
}
.florida-map .leaflet-container {
    background: transparent !important;
    cursor: default;
}
.florida-map .leaflet-control,
.florida-map .leaflet-control-attribution { display: none !important; }

.florida-map .leaflet-interactive {
    transition: all 0.2s ease;
}

/* Pulsing service-area marker */
.ivys-pulse-marker { position: relative; }
.ivys-pulse-marker .ivys-pulse-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    margin: -7px 0 0 -7px;
    background: #01214B;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    z-index: 2;
}
.ivys-pulse-marker .ivys-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    margin: -11px 0 0 -11px;
    border-radius: 50%;
    background: rgba(44, 139, 217, 0.5);
    animation: ivys-pulse 2s ease-out infinite;
    z-index: 1;
}
@keyframes ivys-pulse {
    0%   { transform: scale(0.6); opacity: 0.9; }
    100% { transform: scale(2.6); opacity: 0;   }
}

/* Tooltip styling */
.florida-map .leaflet-tooltip {
    font-family: var(--ff);
    font-weight: 500;
    color: var(--c-navy-deep);
    background: #fff;
    border: 0;
    box-shadow: 0 6px 20px rgba(13, 35, 70, 0.18);
    padding: 8px 14px;
    border-radius: 8px;
    line-height: 1.4;
    font-size: 13px;
}
.florida-map .leaflet-tooltip strong { color: var(--c-blue); font-size: 14px; }
.florida-map .leaflet-tooltip-top:before,
.florida-map .leaflet-tooltip-bottom:before {
    border-top-color: #fff;
    border-bottom-color: #fff;
}

@media (max-width: 768px) {
    .map-section { padding: 10px 0 20px; }
    .map-section .container { padding: 0; }
    .map-title { margin-bottom: 12px; }
    .map-wrap {
        max-width: none;
        padding: 0;
        margin: 0;
    }
    .florida-map {
        max-height: none;
        min-height: 70vh;
    }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background: var(--c-bg-soft);
    padding: 60px 0 30px;
    margin-top: 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
    padding-bottom: 30px;
}
.footer-brand img { width: 130px; }

.footer-contact { text-align: right; }
.footer-email {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--c-navy-deep);
    margin-bottom: 14px;
}
.footer-social {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}
.footer-social a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--c-navy);
    font-size: 13px;
    border-radius: 50%;
    transition: background 0.2s ease;
}
.footer-social a:hover { background: var(--c-blue); }

.footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-nav li { margin-bottom: 10px; }
.footer-nav a {
    font-size: 18px;
    font-weight: 600;
    color: var(--c-navy-deep);
    transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--c-blue); }

.footer-nav-right { text-align: right; }
.footer-nav-bordered {
    border-left: 3px solid var(--c-blue);
    padding-left: 20px;
}

.footer-legal {
    text-align: center;
    color: var(--c-text-muted);
    font-size: 14px;
    line-height: 1.7;
    padding-top: 20px;
}
.footer-legal p { margin: 0; }

.footer-legal--links { padding-top: 30px; }
.footer-legal-row {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: auto auto 1fr;
    gap: 40px;
    align-items: center;
    font-size: 16px;
    color: var(--c-text-light);
}
.footer-legal-row a {
    color: var(--c-text-light);
    font-weight: 400;
    transition: color 0.2s ease;
}
.footer-legal-row a:hover { color: var(--c-navy-deep); }

/* =========================================================
   FLOATING ELEMENTS
   ========================================================= */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    z-index: 999;
    transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

#backToTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--c-navy);
    color: #fff;
    text-align: center;
    line-height: 45px;
    font-size: 22px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 998;
    display: none;
    transition: background 0.3s ease;
    text-decoration: none;
}
#backToTop:hover { background: #123066; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    .hero-title { font-size: 38px; }
    .hero-subtitle { font-size: 18px; }
    .map-title { font-size: 40px; }
    .steps-grid { padding: 0 20px; gap: 40px; }
}

@media (max-width: 768px) {
    .header-inner { gap: 12px; }
    .brand img { width: 55px; }
    .header-meta { gap: 10px; font-size: 13px; }
    .header-meta .meta-divider { height: 18px; }

    .cta-bar-title { font-size: 17px; }
    .cta-bar-inner { gap: 12px; }
    .cta-bar .btn { padding: 8px 18px; font-size: 12px; }

    .hero { padding: 50px 0 30px; }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        text-align: left;
        padding: 0 24px;
    }
    .hero-content { display: contents; }
    .hero-title { order: 1; margin: 0; }
    .hero-subtitle { order: 2; margin: 0; }
    .hero-media {
        order: 3;
        justify-content: center;
        margin: 8px -24px 0;
    }
    .whatsapp-btn-img {
        order: 4;
        justify-self: center;
        margin-top: 4px;
    }
    .hero-title { font-size: 30px; }
    .hero-subtitle { font-size: 16px; margin: 0 auto 24px; }
    .whatsapp-btn-img img { max-width: 220px; }

    .hero-portrait { max-height: 380px; }

    .steps { padding: 20px 0 50px; }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 32px;
        text-align: center;
    }

    .form-intro h2 { font-size: 18px; }
    .map-title { font-size: 30px; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px 30px;
        padding-bottom: 24px;
    }
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }
    .footer-brand img { width: 140px; margin: 0 auto; }

    .footer-contact {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        text-align: left;
        padding: 6px 0 14px;
    }
    .footer-contact .footer-email {
        margin: 0;
        font-size: 15px;
    }
    .footer-contact .footer-social {
        justify-content: flex-end;
        gap: 12px;
    }
    .footer-social a { width: 32px; height: 32px; font-size: 14px; }

    .footer-nav-right {
        text-align: right;
        border: 0;
        padding: 0;
    }
    .footer-nav-bordered {
        text-align: left;
        border-left: 2px solid var(--c-blue);
        padding-left: 16px;
    }
    .footer-nav a { font-size: 18px; font-weight: 600; }
    .footer-nav li { margin-bottom: 14px; }

    .brand-label { font-size: 20px; }
    .page-hero { padding: 50px 0 30px; }
    .page-hero-title { font-size: 30px; }
    .page-hero-subtitle { font-size: 16px; }
    .event-banner { min-height: 520px; margin: 30px 0; }
    .event-banner-content { padding: 40px 0 0; }
    .event-banner .event-title { font-size: 22px; }
    .event-banner .event-meta,
    .event-banner .event-description p { font-size: 14px; }

    .footer-legal-row {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
        font-size: 14px;
    }

    /* Header contact-variant responsive */
    .header-meta--contact { gap: 8px; }
    .header-meta--contact .meta-email { font-size: 12px; }
    .header-socials a { width: 26px; height: 26px; font-size: 11px; }

    /* Title bar responsive */
    .title-bar { padding: 28px 0; }
    .title-bar-title { font-size: 22px; }
    .title-bar-sub { font-size: 13px; }

    /* Explora responsive */
    .explora-hero-title { font-size: 34px; }
    .explora-service { padding: 40px 0 60px; }
    .explora-service-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .explora-service-media {
        margin: 0;
        padding: 0;
        justify-content: flex-start;
    }
    .explora-service-media img {
        width: 60%;
        max-width: 240px;
        margin: 0;
        padding: 0;
    }
    .explora-service-body {
        padding-right: 0;
        padding: 0 24px;
    }
    .section-title-blue,
    .section-title-navy { font-size: 24px; }
    .explora-vision { padding: 40px 0 60px; }
    .explora-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .explora-vision-media {
        order: -1;
        margin: 0 -24px;
    }
    .explora-vision-media img {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 0;
        display: block;
    }
    .ivet-section { padding: 50px 0 60px; }
    .ivet-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .ivet-collage { max-width: 320px; }
    .btn-outline-blue { padding: 12px 40px; }

    .whatsapp-float { width: 48px; height: 48px; font-size: 24px; bottom: 18px; left: 18px; }
    #backToTop { width: 40px; height: 40px; line-height: 40px; bottom: 18px; right: 18px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 28px; }
    .map-title { font-size: 26px; }
    .cta-bar-title { font-size: 15px; }
}
