/* ══════════════════════════════════════════
    BANNER / HERO
══════════════════════════════════════════ */
.banner {
    position: relative;
    min-height: 520px;
    background: linear-gradient(110deg, #f5eee6 0%, #fdf8f3 55%, #e8f4f2 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Decorative background texture */
.banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(42,157,143,.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(200,56,90,.06) 0%, transparent 70%);
    pointer-events: none;
}

.banner__stage {
    position: relative;
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 48px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

/* ── LEFT: text content ── */
.banner__content {
    position: relative;
    z-index: 2;
}

.banner__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 18px;
}
.banner__eyebrow::before,
.banner__eyebrow::after {
    content: '';
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--teal);
    border-radius: 2px;
}

.banner__title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.12;
    margin-bottom: 8px;
}
.banner__title em {
    font-style: italic;
    color: var(--rose);
}

.banner__subtitle {
    font-family: var(--font-display);
    font-size: clamp(15px, 1.8vw, 20px);
    font-weight: 600;
    color: var(--gold);
    letter-spacing: .02em;
    margin-bottom: 20px;
}

.banner__desc {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    max-width: 440px;
    margin-bottom: 36px;
}

/* Buttons */
.banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    border-radius: 30px;
    padding: 13px 26px;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    transition: background .22s, color .22s, border-color .22s, transform .18s, box-shadow .22s;
    white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn--primary {
    background: var(--rose);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(200,56,90,.30);
}
.btn--primary:hover {
    background: #a82647;
    box-shadow: 0 6px 24px rgba(200,56,90,.40);
    transform: translateY(-2px);
}

.btn--secondary {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn--secondary:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

/* Phone icon inline */
.btn__icon {
    width: 18px; height: 18px; flex-shrink: 0;
}

/* ── RIGHT: image area ── */
.banner__visual {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main photo frame */
.banner__photo-frame {
    position: relative;
    width: 360px;
    height: 340px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(27,44,78,.18);
}
.banner__photo-frame img {
    width: 100%; height: 100%; object-fit: cover;
}
/* Placeholder when no photo provided */
.banner__photo-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #dde8f5 0%, #c8dcea 100%);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px; color: var(--navy); opacity: .6;
}
.banner__photo-placeholder svg { width: 64px; height: 64px; }
.banner__photo-placeholder span { font-size: 13px; font-weight: 600; }

/* Gold border accent on frame */
.banner__photo-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 3px solid rgba(212,169,64,.35);
    pointer-events: none;
}

/* ── DECORATIVE IMAGES ── */

/* Flores: esquina superior derecha */
.deco--flores-tr {
    position: absolute;
    top: -10px;
    right: -20px;
    width: 180px;
    pointer-events: none;
    z-index: 3;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.10));
}

/* Flores: esquina inferior izquierda del visual */
.deco--flores-bl {
    position: absolute;
    bottom: -20px;
    left: -30px;
    width: 150px;
    pointer-events: none;
    z-index: 3;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.10));
    transform: rotate(180deg);
}

/* Colibrí: posicionado sobre la foto, parte superior izquierda del visual */
.deco--colibri {
    position: absolute;
    top: -30px;
    left: -50px;
    width: 140px;
    pointer-events: none;
    z-index: 4;
    filter: drop-shadow(0 6px 16px rgba(0,0,0,.15));
    animation: colibri-hover 3.5s ease-in-out infinite;
}

@keyframes colibri-hover {
    0%, 100% { transform: translateY(0px) rotate(-3deg); }
    50%       { transform: translateY(-10px) rotate(2deg); }
}

/* Flores en la esquina izquierda del banner (fuera del grid) */
.deco--flores-left {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    pointer-events: none;
    z-index: 2;
    opacity: .7;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,.08));
}

/* ══════════════════════════════════════════
    AVISO LEGAL (debajo del banner)
══════════════════════════════════════════ */
.legal-notice {
    background: #fff8e7;
    border-top: 2px solid var(--gold);
    padding: 14px 24px;
}
.legal-notice__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.legal-notice__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    color: var(--gold);
}
.legal-notice__text {
    font-size: 11.5px;
    line-height: 1.6;
    color: #6b5a2a;
}
.legal-notice__text strong {
    font-weight: 700;
    color: var(--navy);
}

/* ══════════════════════════════════════════
    RESPONSIVE
══════════════════════════════════════════ */

/* Tablet */
@media (max-width: 960px) {
    .navbar__links { gap: 2px; }
    .navbar__links a { font-size: 12.5px; padding: 6px 7px; }
    .navbar__links .nav-cta a { padding: 7px 13px; }
    .navbar__brand-name { font-size: 19px; }

    .banner__stage {
    grid-template-columns: 1fr;
    padding: 48px 36px 60px;
    text-align: center;
    }
    .banner__content { display: flex; flex-direction: column; align-items: center; }
    .banner__desc { max-width: 560px; text-align: center; }
    .banner__visual {
    height: 300px;
    justify-content: center;
    }
    .banner__photo-frame { width: 320px; height: 280px; }
    .deco--colibri { width: 110px; top: -20px; left: -30px; }
    .deco--flores-tr { width: 140px; top: -5px; right: -10px; }
    .deco--flores-bl { width: 120px; }
    .deco--flores-left { display: none; }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar__links { display: none; }
    .navbar__toggle { display: flex; }
    .navbar__drawer { display: flex; }

    .banner { min-height: auto; }
    .banner__stage {
    padding: 36px 20px 48px;
    gap: 28px;
    }
    .banner__title { font-size: clamp(26px, 7vw, 36px); }
    .banner__visual { height: 240px; }
    .banner__photo-frame { width: 280px; height: 220px; border-radius: 14px; }
    .deco--colibri { width: 90px; top: -15px; left: -20px; }
    .deco--flores-tr { width: 110px; top: 0; right: -8px; }
    .deco--flores-bl { width: 100px; bottom: -10px; left: -15px; }

    /* On mobile: show click-to-call CTA prominently */
    .btn--primary {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 15px 24px;
    }
    .banner__actions { flex-direction: column; align-items: stretch; }
    .btn--secondary { justify-content: center; }
}

@media (max-width: 400px) {
    .navbar__inner { padding: 0 16px; }
    .navbar__brand-tagline { display: none; }
    .banner__stage { padding: 28px 16px 40px; }
    .banner__photo-frame { width: 240px; height: 190px; }
}

