:root {
    --ink:      #313A46;
    --stone:    #545D68;
    --bg:       #F6FAFB;
    --sky:      #E9F4F5;
    --lavender: #F1EEFB;
    --white:    #FFFFFF;
    --line:     #DCE6EA;
    --blue:     #7C90DB;
    --blue-deep:#5F74C4;
    --mint:     #6FC7BC;
    --mint-deep:#4FA89D;
    --shadow:   0 14px 34px rgba(95,116,196,.12);
    --radius:   18px;
    --radius-pill: 999px;
    --ease: cubic-bezier(.34,1.2,.4,1);

    --font-display: 'Quicksand', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background:
        linear-gradient(rgba(255,255,255,.82), rgba(255,255,255,.82)),
        url('../images/fondo-flores.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    line-height: 1.7;
    padding-top: 84px;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-deep); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--blue); }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.25;
    margin: 0 0 18px;
}
h1 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.2rem; }
.section-title-tight {
    white-space: nowrap;
    font-size: clamp(1.6rem, 2.8vw, 3rem);
}
p { margin: 0 0 18px; color: var(--ink); font-weight: 500; max-width: 68ch; }
ul, ol { margin: 0 0 18px 22px; }
li { margin-bottom: 6px; }
strong { font-weight: 700; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.eyebrow {
    font-family: var(--font-display);
    font-weight: 700;
    display: block;
    font-size: 1.05rem;
    letter-spacing: .12em;
    text-transform: none;
    color: var(--mint-deep);
    margin-bottom: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .92rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--blue); color: var(--white); }
.btn-solid:hover { background: var(--blue-deep); }
.btn-outline { background: var(--white); border-color: var(--line); color: var(--ink); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue-deep); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 10px 20px; font-size: .85rem; }

.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    background: #FFFFFF;
    border-bottom: 1px solid var(--line);
}
.brand {
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}
body.is-scrolled .brand {
    opacity: 1;
    pointer-events: auto;
}
.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 12px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.brand { display: flex; align-items: center; }
.brand-mark { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: var(--blue-deep); }
.brand-logo { height: 38px; width: auto; }
.footer-logo { height: 44px; width: auto; filter: brightness(0) invert(1); }
.brand-mark--light { color: var(--white); }

.main-menu { display: flex; align-items: center; gap: 22px; flex: 1; justify-content: center; }
.nav-link {
    display: flex; align-items: center; gap: 6px;
    font-family: var(--font-body); font-weight: 600; font-size: .9rem; color: var(--ink);
    background: none; border: none; cursor: pointer; padding: 8px 4px;
    position: relative;
}
.nav-link.is-active { color: var(--blue-deep); }
.nav-link svg { width: 15px; height: 15px; }

.quick-access { display: flex; gap: 10px; }
.quick-access-item {
    display: flex; align-items: center; gap: 8px;
    padding: 9px 16px 9px 10px;
    border-radius: var(--radius-pill);
    background: var(--sky);
    color: var(--ink);
    font-weight: 600; font-size: .85rem;
    transition: background .25s ease, transform .2s ease;
}
.quick-access-item:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.quick-access-item:hover .qa-icon { color: var(--white); }
.qa-icon { width: 22px; height: 22px; color: var(--blue-deep); flex-shrink: 0; transition: color .25s ease; }
.qa-icon--photo { border-radius: 50%; overflow: hidden; }
.qa-icon--photo img { width: 100%; height: 100%; object-fit: cover; }
.qa-icon svg { width: 100%; height: 100%; }
.qa-icon img { width: 100%; height: 100%; object-fit: contain; }
.ext-icon { width: 11px; height: 11px; opacity: .6; }

.quick-access-dropdown { position: relative; padding: 0; background: transparent; }
.qa-toggle {
    display: flex; align-items: center; gap: 8px;
    padding: 9px 14px 9px 10px;
    border-radius: var(--radius-pill);
    background: var(--sky); border: none; cursor: pointer;
    font-family: var(--font-body); font-weight: 600; font-size: .85rem; color: var(--ink);
    transition: background .25s ease, transform .2s ease;
}
.qa-toggle:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); }
.qa-toggle:hover .qa-icon { color: var(--white); }
.qa-toggle .caret { width: 12px; height: 12px; }

.qa-submenu {
    position: absolute; top: calc(100% + 10px); left: 0;
    min-width: 240px;
    max-height: 320px;
    overflow-y: auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 8px;
    display: flex; flex-direction: column; gap: 2px;
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    z-index: 50;
}
@media (min-width: 981px) {
    .quick-access-dropdown:hover .qa-submenu,
    .quick-access-dropdown.is-open .qa-submenu { opacity: 1; visibility: visible; transform: translateY(0); }
}
.qa-submenu a { padding: 10px 12px; border-radius: 8px; font-size: .87rem; font-weight: 500; color: var(--ink); }
.qa-submenu a:hover { background: var(--sky); color: var(--blue-deep); }
.qa-submenu-all { margin-top: 4px; padding-top: 10px !important; border-top: 1px solid var(--line); font-weight: 700 !important; color: var(--blue-deep) !important; }

@media (max-width: 980px) {
    .nav-link {
        width: 100%; justify-content: space-between;
        padding: 16px 2px; border-bottom: 1px solid var(--line);
        font-weight: 700; font-size: .98rem;
    }
    .nav-link::after { display: none; }
    .nav-link.is-active { color: var(--blue-deep); }

    .quick-access-item {
        width: 100%; justify-content: space-between;
        padding: 16px 2px; border-bottom: 1px solid var(--line);
        background: transparent; border-radius: 0;
        font-weight: 700; font-size: .98rem;
    }
    .quick-access-item:hover { background: transparent; color: var(--blue-deep); transform: none; }
    .quick-access-item .qa-icon { display: none; }

    .quick-access-dropdown { padding: 0; display: block; align-items: normal; }
    .qa-toggle {
        width: 100%; justify-content: space-between;
        padding: 16px 2px; border-bottom: 1px solid var(--line);
        background: transparent; border-radius: 0;
        font-weight: 700; font-size: .98rem;
    }
    .qa-toggle:hover { background: transparent; color: var(--blue-deep); transform: none; }
    .qa-toggle .qa-icon { display: none; }
    .qa-toggle .caret { transition: transform .25s ease; }
    .quick-access-dropdown.is-open .qa-toggle .caret { transform: rotate(180deg); }

    .qa-submenu {
        position: static !important; opacity: 1 !important; visibility: visible !important; transform: none !important;
        box-shadow: none; border: none; background: transparent; border-radius: 0;
        width: 100%; gap: 16px; padding: 0;
        max-height: 0; overflow: hidden;
        transition: max-height .3s ease, padding .3s ease, margin .3s ease;
        margin: 0;
        border-left: 2px solid var(--blue);
        display: flex !important;
    }
    .quick-access-dropdown.is-open .qa-submenu { max-height: 900px; padding: 16px 0 16px 18px; margin-left: 2px; }
    .qa-submenu a { padding: 0; background: transparent; color: var(--blue-deep); font-weight: 500; font-size: .93rem; }
    .qa-submenu a:hover { background: transparent; color: var(--blue); }
}

.menu-toggle { display: none; }

@media (max-width: 980px) {
    .main-menu {
        position: fixed; inset: 0 0 0 auto; width: min(340px, 90vw);
        background: var(--white); padding: 96px 26px 32px;
        display: flex; flex-direction: column; align-items: flex-start; gap: 0;
        transform: translateX(100%); transition: transform .4s var(--ease);
        overflow-y: auto; box-shadow: var(--shadow);
        justify-content: flex-start;
    }
    .main-menu.is-open { transform: translateX(0); }
    .quick-access { flex-direction: column; width: 100%; gap: 0; }
    .quick-access-item { width: 100%; }
    .menu-toggle {
        display: flex; flex-direction: column; justify-content: center; gap: 5px;
        width: 40px; height: 40px; background: none; border: none; cursor: pointer; z-index: 201;
    }
    .menu-toggle span { width: 100%; height: 2px; background: var(--ink); transition: transform .25s ease, opacity .25s ease; }
    .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

.hero {
    background: transparent;
    position: relative;
    overflow: hidden;
}
.hero-grid {
    max-width: 760px;
    margin: 0 auto;
    padding: 88px 28px 76px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 28px;
    position: relative;
    z-index: 1;
}
.hero-text p { font-size: 1.1rem; color: var(--stone); max-width: 50ch; margin: 0 auto; }
.hero-logo { max-width: 900px; width: 100%; margin: 0 auto; display: block; }
.hero-actions { display: flex; gap: 14px; margin-top: 6px; flex-wrap: wrap; justify-content: center; }
.hero-media { display: none; }

@media (max-width: 700px) {
    .hero-grid { padding: 64px 24px 56px; }
}

.page-banner {
    background: transparent;
    color: var(--ink);
    padding: 58px 0 44px;
}
.page-banner h1 { color: var(--ink); margin-bottom: 10px; }
.page-banner p { color: var(--stone); max-width: 60ch; }
.page-banner .wrap { position: relative; z-index: 1; }

.section-sky { background: rgba(233,244,245,.72); }
.section-lavender { background: transparent; }
.section-panel { background: rgba(255,255,255,.82); }

.section { padding: 84px 0; }
.section-head { max-width: 620px; margin: 0 auto 44px; text-align: center; }
@media (max-width: 700px) { .section { padding: 52px 0; } }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 30px; } }

.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.feature-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px 26px;
    text-align: center;
    transition: box-shadow .3s ease, transform .3s ease;
}
a.feature-card { display: block; text-decoration: none; color: inherit; cursor: pointer; }
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.feature-card .icon {
    width: 52px !important; height: 52px !important; color: var(--blue-deep);
    margin: 0 auto 16px; padding: 12px;
    background: var(--sky); border-radius: 50% !important;
    overflow: hidden !important;
    display: flex; align-items: center; justify-content: center;
}
.feature-card .icon svg { width: 100%; height: 100%; }
.feature-card .icon img { width: 100% !important; height: 100% !important; object-fit: cover !important; border-radius: 50% !important; display: block; }
.feature-card .icon--photo { padding: 0 !important; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p { color: var(--stone); font-size: .93rem; margin: 0 auto; }
.feature-card .card-link { display: inline-block; margin-top: 14px; font-weight: 700; font-size: .85rem; color: var(--blue-deep); }

.gallery { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.gallery-track { position: relative; aspect-ratio: 3/2; background: var(--sky); }
.gallery-slide { display: none; width: 100%; height: 100%; }
.gallery-slide.is-active { display: block; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; }

.gallery-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(49,58,70,.5); color: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; border: none; transition: background .2s ease;
    z-index: 2;
}
.gallery-arrow:hover { background: var(--blue); }
.gallery-arrow.prev { left: 14px; }
.gallery-arrow.next { right: 14px; }
.gallery-arrow svg { width: 18px; height: 18px; }

.gallery-dots { display: flex; justify-content: center; gap: 7px; padding: 14px; background: var(--white); flex-wrap: wrap; }
.gallery-dots .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line); cursor: pointer; border: none; padding: 0; transition: background .2s ease, transform .2s ease; }
.gallery-dots .dot.is-active, .gallery-dots .dot:hover { background: var(--blue); transform: scale(1.2); }

.form-row { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }
.form-row label { font-size: .85rem; font-weight: 600; }
.form-row input, .form-row textarea, .form-row select {
    font-family: var(--font-body);
    font-size: .95rem;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    resize: vertical;
}
.form-row input:focus, .form-row textarea:focus { border-color: var(--blue); outline: none; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }
.form-status { min-height: 1.2em; font-size: .9rem; margin-top: 8px; }
.form-status.ok { color: var(--mint-deep); }
.form-status.err { color: #C0554A; }

.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-frame iframe { width: 100%; height: 420px; border: 0; display: block; }

.esquelas-list { display: flex; flex-direction: column; gap: 16px; }
.esquela-row {
    display: grid; grid-template-columns: 84px 1fr auto; gap: 20px; align-items: center;
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 22px;
    text-decoration: none; color: inherit;
    transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.esquela-row:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--blue); }
.esquela-row .esquela-icon { width: 84px; height: 84px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.esquela-row .esquela-icon svg { width: 40px; height: 40px; color: var(--blue-deep); }
.esquela-row .esquela-icon img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.3); }
.esquela-row .info { min-width: 0; }
.esquela-row h3 { margin-bottom: 4px; font-size: 1.05rem; }
.esquela-row .meta { color: var(--stone); font-size: .88rem; margin: 0; }
.esquela-row .row-arrow { width: 20px; height: 20px; color: var(--blue-deep); }
@media (max-width: 640px) {
    .esquela-row { padding: 14px 16px; gap: 14px; }
}

.esquela-detalle { text-align: center; padding: 40px 36px; }
.esquela-detalle .esquela-icon { width: 140px; height: 140px; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.esquela-detalle .esquela-icon svg { width: 60px; height: 60px; color: var(--blue-deep); }
.esquela-detalle .esquela-icon img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.3); }
.esquela-detalle .meta { color: var(--stone); font-size: .95rem; margin-bottom: 22px; }
.esquela-detalle .texto { max-width: 60ch; margin: 0 auto 28px; text-align: left; }
.esquela-not-found { text-align: center; padding: 40px 0; }
@media (max-width: 640px) {
    .esquela-detalle { padding: 28px 18px; }
    .esquela-detalle .texto { font-size: .95rem; }
}

.card h2 { margin-bottom: 6px; }
.contact-intro { color: var(--stone); font-size: .92rem; margin-bottom: 24px; }
.contact-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; align-items: center; gap: 14px; }
.contact-item .icon-circle {
    width: 40px; height: 40px; flex-shrink: 0;
    border-radius: 50%; background: var(--sky); color: var(--blue-deep);
    display: flex; align-items: center; justify-content: center;
}
.contact-item .icon-circle svg { width: 17px; height: 17px; }
.contact-item .icon-circle img { width: 17px; height: 17px; object-fit: contain; }
.contact-item-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.contact-item-label { font-size: .72rem; color: var(--stone); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
.contact-item-value { font-size: .98rem; font-weight: 700; color: var(--ink); }
.contact-item-value:hover { color: var(--blue-deep); }
.contact-item-sub { font-size: .8rem; color: var(--stone); }

.form-check { display: flex; align-items: flex-start; gap: 10px; margin: 6px 0 18px; font-size: .85rem; color: var(--stone); cursor: pointer; }
.form-check input { margin-top: 3px; }
.form-check a { color: var(--blue-deep); }
.form-legal { font-size: .78rem; color: var(--stone); text-align: center; margin: 12px 0 0; }

.modal-overlay, .cookie-modal {
    display: none; position: fixed; inset: 0; z-index: 1000;
    background: rgba(49,58,70,.55);
    align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.is-open, .cookie-modal.is-open { display: flex; }
.modal-box, .cookie-modal-content {
    background: var(--white); border-radius: 20px; padding: 34px;
    max-width: 480px; width: 100%; box-shadow: var(--shadow);
    max-height: 86vh; overflow-y: auto;
}
.modal-box--wide { max-width: 600px; }
.modal-box h2, .cookie-modal-content h2 { font-size: 1.4rem; margin-bottom: 10px; }
.modal-lead { color: var(--stone); font-size: .92rem; margin-bottom: 20px; }
.cookie-modal-content p { color: var(--stone); font-size: .92rem; }
.cookie-check-list { display: flex; flex-direction: column; gap: 10px; margin: 16px 0; font-size: .88rem; }
.cookie-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.modal-close { position: absolute; top: 18px; right: 20px; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--stone); }

.sede-picker { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.sede-picker-item {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 16px; border-radius: var(--radius-pill);
    background: var(--sky); border: 1px solid transparent; color: var(--ink);
    font-weight: 600; font-size: .85rem; cursor: pointer;
    transition: background .2s ease, border-color .2s ease;
}
.sede-picker-item svg { width: 15px; height: 15px; color: var(--blue-deep); }
.sede-picker-item:hover { background: var(--lavender); }
.sede-picker-item.is-active { background: var(--blue); color: var(--white); border-color: var(--blue-deep); }
.sede-picker-item.is-active svg { color: var(--white); }

.sede-info { background: var(--sky); border-radius: 14px; padding: 22px; }
.sede-info h3 { margin-bottom: 8px; }
.sede-direccion { display: flex; align-items: center; gap: 8px; color: var(--stone); font-size: .88rem; margin-bottom: 12px; }
.sede-direccion svg { width: 15px; height: 15px; color: var(--blue-deep); flex-shrink: 0; }

.site-footer { background: var(--ink); color: rgba(255,255,255,.78); padding: 30px 0 0; }
.footer-inner {
    max-width: 1180px; margin: 0 auto; padding: 0 28px 22px;
    display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 18px;
    border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand p { margin: 0; font-size: .8rem; color: rgba(255,255,255,.55); }
.footer-groups { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-group { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; font-size: .83rem; }
.footer-group:not(:last-child) { padding-right: 22px; border-right: 1px solid rgba(255,255,255,.16); }
.footer-group a { color: rgba(255,255,255,.75); }
.footer-group a:hover { color: var(--mint); }

.footer-legal {
    max-width: 1180px; margin: 0 auto; padding: 14px 28px;
    display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px;
    font-size: .72rem;
}
.footer-legal ul { list-style: none; display: flex; flex-wrap: wrap; gap: 16px; margin: 0; padding: 0; }
.footer-legal a { color: rgba(255,255,255,.55); }
.footer-legal a:hover { color: var(--white); }
.footer-legal p { color: rgba(255,255,255,.4); margin: 0; }

@media (max-width: 780px) {
    .footer-inner { flex-direction: column; align-items: flex-start; }
    .footer-groups { flex-direction: column; align-items: flex-start; gap: 12px; }
    .footer-group { border-right: none !important; padding-right: 0 !important; }
}
@media (max-width: 500px) { .footer-legal { flex-direction: column; align-items: flex-start; } }

.text-center { text-align: center; }
.mt-lg { margin-top: 48px; }

.photo-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, var(--sky) 0%, var(--lavender) 100%);
}
.photo-frame img { width: 100%; height: auto; display: block; }
.photo-frame--empty { aspect-ratio: 4/3; }
.photo-frame--empty::after {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237C90DB' stroke-width='1.2'><rect x='3' y='5' width='18' height='14' rx='2'/><circle cx='9' cy='10' r='1.6'/><path d='M21 16l-5.5-5-6 6M9 17l-2-2-4 4'/></svg>");
    background-repeat: no-repeat; background-position: center; background-size: 56px;
    opacity: .5;
}

@media (max-width: 480px) {
    .wrap { padding: 0 18px; }
    .nav-inner { padding: 10px 18px; }
    .brand-logo { height: 32px; }
    .hero-grid { padding: 52px 18px 44px; gap: 22px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .page-banner { padding: 44px 0 34px; }
    .section { padding: 44px 0; }
    .feature-card { padding: 24px 18px; }
    .card { padding: 22px; }
    .modal-box, .cookie-modal-content { padding: 24px; }
    .split { gap: 24px; }
    .footer-brand { flex-wrap: wrap; }
    .esquela-actions, .gallery-dots { gap: 6px; }
}

@media (max-width: 900px) {
    .split { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 480px) {
    .card { padding: 20px; }
    .card h2 { font-size: 1.3rem; }
}
@media (max-width: 390px) {
    .g-recaptcha { transform: scale(.85); transform-origin: 0 0; margin-bottom: 8px !important; }
}