:root {
    --bg: #f7f5f0;
    --surface: #ffffff;
    --surface-alt: #efe7d8;
    --text: #1e1e1e;
    --muted: #5e5e5e;
    --primary: #d21717;
    --primary-dark: #9f1010;
    --border: #dfd5c5;
    --shadow: 0 20px 40px rgba(25, 25, 25, 0.08);
    --radius: 24px;
    --container: 1160px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

svg {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin-top: 0;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(247, 245, 240, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(223, 213, 197, 0.8);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 78px;
}

body.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

.brand {
    display: flex;
    flex-direction: column;
}

.brand__branch {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
}

.brand__name {
    font-weight: 700;
}

.brand__role {
    font-size: 0.875rem;
    color: var(--muted);
}

.site-nav__menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.site-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.8rem;
}

.site-header__cta {
    flex: 0 0 auto;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 0 rgba(210, 23, 23, 0.45);
    animation: header-cta-pulse 2.2s ease-out infinite;
}

.site-header__cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: -140%;
    width: 60%;
    height: 100%;
    background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.35) 45%, transparent 100%);
    transform: skewX(-22deg);
    animation: header-cta-shine 2.8s ease-in-out infinite;
    pointer-events: none;
}

.site-header__cta:hover {
    box-shadow: 0 10px 24px rgba(210, 23, 23, 0.35);
}

.site-nav__menu li {
    display: flex;
}

.site-nav__menu a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-height: 44px;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(143, 106, 51, 0.16);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.site-nav__menu a:hover {
    transform: translateY(-1px);
    background: rgba(143, 106, 51, 0.12);
    border-color: rgba(143, 106, 51, 0.2);
    color: var(--primary-dark);
    box-shadow: 0 10px 24px rgba(25, 25, 25, 0.08);
}

.site-nav__menu a:focus-visible {
    outline: 3px solid rgba(143, 106, 51, 0.28);
    outline-offset: 2px;
    background: rgba(143, 106, 51, 0.12);
    border-color: rgba(143, 106, 51, 0.35);
    color: var(--primary-dark);
}

.site-nav__menu .current-menu-item > a,
.site-nav__menu .current_page_item > a,
.site-nav__menu .current-menu-parent > a,
.site-nav__menu .current-menu-ancestor > a,
.site-nav__menu .current-page-ancestor > a {
    color: var(--primary-dark);
    background: linear-gradient(135deg, rgba(143, 106, 51, 0.18), rgba(109, 77, 34, 0.12));
    border-color: rgba(143, 106, 51, 0.32);
    box-shadow: 0 10px 20px rgba(109, 77, 34, 0.16);
}

.site-nav__menu .current-menu-item > a:hover,
.site-nav__menu .current_page_item > a:hover,
.site-nav__menu .current-menu-parent > a:hover,
.site-nav__menu .current-menu-ancestor > a:hover,
.site-nav__menu .current-page-ancestor > a:hover {
    color: var(--primary-dark);
    background: linear-gradient(135deg, rgba(143, 106, 51, 0.24), rgba(109, 77, 34, 0.16));
}

.site-notice {
    border-top: 1px solid rgba(223, 213, 197, 0.8);
    background: rgba(143, 106, 51, 0.05);
}

.site-notice__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0 1.15rem;
}

.site-notice__text {
    margin: 0;
    font-size: 0.92rem;
    color: var(--muted);
    font-weight: 600;
    max-width: 68ch;
    text-align: center;
}

.site-notice__actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    justify-content: center;
}

.site-notice__link,
.site-notice__support-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.62rem 0.95rem;
    border-radius: 999px;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-notice__link {
    color: #fff;
    background: var(--primary);
    border: 1px solid var(--primary);
}

.site-notice__link:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.site-notice__support-link {
    color: var(--primary-dark);
    border: 1px solid rgba(143, 106, 51, 0.34);
    background: rgba(255, 255, 255, 0.45);
}

.site-notice__support-link:hover {
    background: rgba(143, 106, 51, 0.08);
    border-color: rgba(143, 106, 51, 0.46);
}

.site-notice__link:focus-visible,
.site-notice__support-link:focus-visible {
    outline: 3px solid rgba(143, 106, 51, 0.28);
    outline-offset: 2px;
}

.site-main {
    min-height: calc(100vh - 78px);
}

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.1rem;
    height: 1.1rem;
    flex: 0 0 auto;
}

.icon svg {
    width: 100%;
    height: 100%;
}

.icon--light {
    color: #fff;
}

.section,
.hero-section {
    padding: 5rem 0;
}

.section-alt {
    background: linear-gradient(180deg, rgba(239, 231, 216, 0.65), rgba(239, 231, 216, 0.25));
}

.hero-grid,
.grid-two,
.footer-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.hero-section {
    padding-top: 6rem;
}

.hero-section--compact {
    padding-bottom: 3rem;
}

.hero-section h1,
.section h1,
.section h2,
.section h3 {
    line-height: 1.1;
    margin: 0 0 1rem;
}

.hero-section h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    max-width: 12ch;
}

.section h1,
.section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.lead {
    font-size: 1.125rem;
    color: var(--muted);
    max-width: 60ch;
}

.hero-kicker {
    margin: 0 0 1rem;
    max-width: 58ch;
    color: var(--primary-dark);
    font-weight: 700;
}

.hero-section .cta-group {
    margin-top: 1.25rem;
    margin-bottom: 1rem;
}

.cta-group--hero-contacts {
    margin-top: 1.25rem;
    margin-bottom: 0.8rem;
}

.hero-contact-note {
    margin: 0 0 1rem;
    max-width: 62ch;
    color: var(--muted);
    font-weight: 600;
}

.hero-schedule-shortcuts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    margin: 0 0 1.2rem;
    max-width: 700px;
}

.hero-schedule-card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.8rem 0.95rem;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: 0 10px 24px rgba(25, 25, 25, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-schedule-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 24px rgba(25, 25, 25, 0.1);
    border-color: rgba(143, 106, 51, 0.35);
}

.hero-schedule-card:focus-visible {
    outline: 3px solid rgba(143, 106, 51, 0.28);
    outline-offset: 2px;
}

.hero-schedule-card__title {
    font-weight: 700;
    color: var(--primary-dark);
}

.hero-schedule-card__description {
    color: var(--muted);
    font-size: 0.9rem;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-dark);
    font-weight: 700;
}

.hero-card,
.highlight-box,
.content-card,
.contact-card,
.stat-card,
.carousel-card,
.cta-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-card,
.highlight-box,
.cta-panel {
    padding: 2rem;
}

.hero-visual {
    display: grid;
    gap: 1.25rem;
    align-content: start;
}

.hero-portrait-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    background: linear-gradient(180deg, #d21717 0%, #7a0d0d 100%);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-portrait-image {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    object-position: center top;
}

.hero-portrait-badge {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    padding: 1.25rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    text-align: center;
}

.hero-portrait-badge .eyebrow {
    margin-bottom: 0.2rem;
}

.hero-portrait-badge strong {
    display: block;
    font-size: 1.2rem;
}

.hero-portrait-badge p {
    margin: 0;
    max-width: 28ch;
}

.hero-card--overlay {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
}

.hero-card--overlay .hero-card__branch-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 0.14em;
    text-decoration-thickness: 1.5px;
}

.hero-card--overlay .hero-card__branch-link:hover {
    color: var(--primary-dark);
}

.hero-card--overlay .hero-card__branch-link:focus-visible {
    outline: 3px solid rgba(143, 106, 51, 0.28);
    outline-offset: 2px;
    border-radius: 4px;
}

.hero-trust,
.feature-list,
.check-list {
    margin: 1.5rem 0 0;
    padding: 0;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    list-style: none;
}

.hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 0.9rem;
    background: rgba(143, 106, 51, 0.08);
    border-radius: 999px;
    font-size: 0.9rem;
}

.feature-list,
.check-list {
    list-style: none;
}

.feature-list li,
.check-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.feature-list li::before,
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: var(--primary);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--primary);
    color: #fff;
}

.button-primary:hover {
    background: var(--primary-dark);
}

.button-secondary {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}

.button-icon-only {
    width: 50px;
    min-width: 50px;
    padding: 0;
    aspect-ratio: 1;
}

.button-icon-only .icon {
    width: 1.75rem;
    height: 1.75rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.button-small {
    min-height: 42px;
    padding: 0.7rem 1rem;
}

.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-inline-note {
    margin: 1rem 0 0;
    max-width: 62ch;
    color: var(--muted);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(290px, 1fr);
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.25rem;
}

.carousel-card {
    overflow: hidden;
    scroll-snap-align: start;
}

.carousel-card img,
.content-card__image img,
.single-showcase__image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.carousel-card__content,
.content-card__body,
.contact-card,
.stat-card,
.visual-card__body {
    padding: 1.5rem;
}

.card-grid,
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.stat-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.content-card__meta {
    display: inline-block;
    margin-bottom: 0.75rem;
    color: var(--muted);
    font-size: 0.9rem;
}

.content-card__body h3,
.content-card__body h2 {
    font-size: 1.35rem;
}

.content-card--placeholder {
    grid-column: 1 / -1;
}

.contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-grid--compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.contact-hero {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 2rem;
}

.contact-hero__badge {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, #d21717, #9f1010);
    color: #fff;
    box-shadow: var(--shadow);
}

.contact-hero__badge p {
    margin-bottom: 0;
    opacity: 0.92;
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding: 1.1rem;
    min-height: 220px;
}

.contact-card--featured {
    background: linear-gradient(135deg, rgba(31, 168, 85, 0.12), rgba(255, 255, 255, 1));
}

.contact-card--instagram {
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.14), rgba(253, 29, 29, 0.08), rgba(252, 176, 69, 0.12));
}

.contact-card__icon-wrap,
.visual-card__icon,
.social-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: rgba(143, 106, 51, 0.12);
    color: var(--primary-dark);
}

.contact-card__icon-wrap .icon,
.visual-card__icon .icon,
.social-card__icon .icon {
    width: 1.35rem;
    height: 1.35rem;
}

.contact-card__action {
    margin-top: auto;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.95rem;
}

.contact-card h2 {
    margin: 0;
    font-size: 1.2rem;
}

.contact-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.section-heading--spaced {
    margin-top: 2.5rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-card:hover {
    transform: translateY(-2px);
}

.social-card h3 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
}

.social-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.contact-support-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-support-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.simulation-section {
    padding-top: 0;
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.video-card {
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.video-card__embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.video-card__embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-card__body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.video-card__body h3 {
    margin: 0 0 0.5rem;
}

.video-card__body p {
    margin: 0;
    color: var(--muted);
}

.visual-card {
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.visual-card img,
.about-image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-card img {
    aspect-ratio: 4 / 4;
}

.visual-card__image-link {
    display: block;
}

.visual-card__body h3 a {
    color: inherit;
    text-decoration: none;
}

.visual-card__body h3 a:hover {
    text-decoration: underline;
}

.visual-card__icon {
    margin-bottom: 1rem;
}

.visual-card--tall {
    grid-row: auto;
}

.visual-card__body {
    min-height: 220px;
}

.map-section {
    padding-top: 0;
}

.map-embed-card {
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.map-embed-card iframe {
    display: block;
    width: 100%;
    height: 460px;
}

@keyframes floating-whatsapp-breathe {
    0%, 100% {
        transform: translateY(0);
        box-shadow: var(--shadow);
    }
    50% {
        transform: translateY(-3px);
        box-shadow: 0 24px 34px rgba(210, 23, 23, 0.24);
    }
}

@keyframes header-cta-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(210, 23, 23, 0.45);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(210, 23, 23, 0);
    }
}

@keyframes header-cta-shine {
    0% {
        left: -140%;
    }

    55%,
    100% {
        left: 170%;
    }
}

.about-visual-stack {
    display: grid;
    gap: 1.5rem;
}

.about-image-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.about-image-grid img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    aspect-ratio: 1 / 1;
}

.contact-card,
.text-link {
    transition: transform 0.2s ease;
}

.contact-card:hover,
.text-link:hover {
    transform: translateY(-2px);
}

.text-link {
    color: var(--primary-dark);
    font-weight: 700;
}

.cta-section {
    padding-top: 0;
}

.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.prose {
    max-width: 820px;
}

.prose p,
.prose ul,
.prose ol {
    margin-bottom: 1rem;
}

.prose img {
    border-radius: var(--radius);
}

.single-showcase__image {
    margin: 2rem 0;
}

.single-showcase__content {
    margin-bottom: 2rem;
}

.pagination {
    margin-top: 2rem;
}

.site-footer {
    background: #151515;
    color: #f2f2f2;
    padding: 4rem 0 2rem;
}

.footer-title {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-address,
.contact-support-card--address {
    font-style: normal;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
}

.footer-social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-social-button {
    border-color: rgba(255, 255, 255, 0.35);
    color: #f2f2f2;
}

.footer-social-button .icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.4rem;
}

.footer-social-button:hover {
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

.footer-bottom__actions {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.floating-whatsapp {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    padding: 0;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    box-shadow: 0 14px 30px rgba(25, 25, 25, 0.24);
    animation: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(25, 25, 25, 0.28);
    background: var(--primary-dark);
}

.floating-whatsapp .icon {
    width: 24px;
    height: 24px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 960px) {
    .site-header__inner,
    .section-heading,
    .cta-panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-grid,
    .grid-two,
    .footer-grid,
    .contact-grid,
    .contact-grid--compact,
    .card-grid,
    .stats-grid,
    .visual-grid,
    .video-grid,
    .contact-hero,
    .social-grid,
    .contact-support-grid {
        grid-template-columns: 1fr;
    }

    .site-nav__menu {
        flex-wrap: wrap;
    }

    .site-header__actions {
        width: 100%;
        justify-content: flex-start;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .site-notice__inner {
        flex-direction: column;
        align-items: center;
    }

    .map-embed-card iframe {
        height: 380px;
    }

    .hero-card--overlay {
        margin-top: 0;
    }

    .hero-portrait-image {
        min-height: 480px;
    }
}

@media (max-width: 640px) {
    .hero-section,
    .section {
        padding: 4rem 0;
    }

    .site-header__inner {
        padding: 0.9rem 0;
        align-items: center;
    }

    .site-header__actions {
        justify-content: center;
        align-items: center;
    }

    .site-nav {
        width: 100%;
    }

    .site-nav__menu {
        width: 100%;
        justify-content: center;
    }

    .site-header.is-mobile-compact .brand,
    .site-header.is-mobile-compact .site-nav {
        display: none;
    }

    .site-header.is-mobile-compact .site-header__inner {
        display: flex;
        flex-direction: row;
        min-height: 58px;
        padding: 0.5rem 0;
        align-items: center;
        justify-content: center;
    }

    .site-header.is-mobile-compact .site-header__actions {
        display: flex;
        flex: 1 1 auto;
        width: 100%;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        gap: 0;
    }

    .site-header.is-mobile-compact .site-header__cta {
        display: inline-flex;
        visibility: visible;
        opacity: 1;
        width: min(100%, 340px);
        max-width: 340px;
        min-height: 44px;
        animation: none;
    }

    .map-embed-card iframe {
        height: 320px;
    }

    .brand {
        gap: 0.2rem;
    }

    .button,
    .button-small {
        width: 100%;
    }

    .cta-group {
        width: 100%;
    }

    .cta-group .button {
        flex: 1 1 100%;
    }

    .cta-group .button-icon-only {
        flex: 0 0 auto;
        width: 50px;
        min-width: 50px;
    }

    .floating-whatsapp {
        left: auto;
        right: 0.9rem;
        bottom: 0.9rem;
        width: 50px;
        height: 50px;
        min-width: 50px;
        min-height: 50px;
    }

    .hero-grid > :first-child {
        order: 2;
    }

    .hero-grid > .hero-visual {
        order: 1;
    }

    .hero-schedule-shortcuts {
        grid-template-columns: 1fr;
    }

    .site-header__cta {
        width: 100%;
    }

    .site-notice__actions {
        flex-direction: column;
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .floating-whatsapp,
    .site-header__cta,
    .site-header__cta::after {
        animation: none;
    }
}
