/* ===== NUAGEST ADVANCED EDITORIAL THEME ===== */
:root {
    --primary: #111827;
    --secondary: #27364f;
    --gold: #1238ff;
    --gold-light: #5f7aff;
    --white: #ffffff;
    --text: #172033;
    --text-light: #68758b;
    --bg-light: #f4f7fb;
    --border: #d5dce7;
    --electric: #1238ff;
    --electric-dark: #0827d7;
    --night: #0d1528;
    --frame: #1c2a3e;
    --ice: #edf4fc;
    --steel: #71829a;
    --page-width: min(1280px, calc(100% - 96px));
    --shadow: 0 16px 40px rgba(13, 21, 40, 0.09);
    --shadow-lg: 0 32px 80px rgba(13, 21, 40, 0.18);
    --radius: 8px;
    --radius-lg: 8px;
    --transition: 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}

html {
    background: var(--frame);
}

body {
    min-width: 320px;
    overflow-x: clip;
    background: var(--frame);
    color: var(--text);
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
}

.js body.is-loading {
    overflow: hidden;
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 30000;
    display: none;
    place-items: center;
    overflow: hidden;
    background: var(--night);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.48s ease, visibility 0.48s ease;
}

.js .page-loader {
    display: grid;
}

.page-loader[hidden],
.js .page-loader[hidden] {
    display: none;
}

.page-loader.is-leaving {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader-inner {
    display: grid;
    justify-items: center;
    transform: translateY(-2px) scale(1);
    transition: transform 0.48s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.page-loader.is-leaving .page-loader-inner {
    transform: translateY(-2px) scale(0.96);
}

.page-loader-orb {
    display: block;
    width: 112px;
    height: 112px;
}

main > .hero,
main > .section,
body > .footer {
    width: var(--page-width);
    margin-right: auto;
    margin-left: auto;
}

.container {
    width: min(100%, 1160px);
    padding-right: 36px;
    padding-left: 36px;
}

.section {
    padding: 112px 0;
}

.section-light {
    background: #f7f9fc;
}

.section-dark {
    background: var(--night);
}

.gold-accent {
    color: var(--electric);
}

.section-kicker {
    color: var(--electric);
}

.section-kicker::before {
    background: var(--electric);
}

.section-kicker-light {
    color: #aebdff;
}

.section-title {
    font-size: 3.15rem;
    font-weight: 600;
    line-height: 1.02;
}

.section-subtitle {
    font-size: 0.98rem;
    line-height: 1.72;
}

/* ===== FRAMED HEADER ===== */
.header {
    top: 22px;
    right: auto;
    left: 50%;
    width: var(--page-width);
    padding: 19px 0;
    border: 0;
    border-radius: 32px 32px 0 0;
    background: rgba(237, 244, 252, 0.94);
    box-shadow: none;
    transform: translateX(-50%);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.header.header-hidden {
    transform: translate(-50%, calc(-100% - 28px));
}

.header.scrolled {
    top: 10px;
    padding: 11px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(13, 21, 40, 0.96);
    box-shadow: 0 18px 48px rgba(5, 10, 24, 0.28);
}

.header-inner {
    min-height: 40px;
}

.logo span {
    color: var(--electric);
}

.footer .logo span {
    color: #7891ff;
}

.logo::before {
    background: var(--electric);
}

.nav {
    gap: 38px;
}

.nav a {
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
}

.nav a:hover {
    color: var(--electric);
}

.nav a:not(.btn)::after {
    background: var(--electric);
}

.nav .btn {
    min-width: 168px;
    min-height: 42px;
    border-radius: 999px;
    background: transparent;
    color: var(--electric);
    border: 1px solid rgba(18, 56, 255, 0.5);
    box-shadow: none;
}

.nav .btn:hover {
    background: var(--electric);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(18, 56, 255, 0.24);
}

/* ===== HERO ===== */
.hero {
    min-height: 760px;
    margin-top: 22px;
    padding: 142px 0 82px;
    border: 0;
    border-radius: 32px 32px 0 0;
    background: var(--ice);
}

.hero::before {
    background:
        url('assets/hero-document-sculpture-v5.jpg') center center / cover no-repeat;
    opacity: 0.82;
    filter: saturate(0.92);
    transform: none;
}

.hero::after {
    background:
        linear-gradient(90deg, rgba(237, 244, 252, 0.99) 0%, rgba(237, 244, 252, 0.97) 38%, rgba(237, 244, 252, 0.84) 52%, rgba(237, 244, 252, 0.22) 74%, rgba(237, 244, 252, 0.08) 100%),
        linear-gradient(0deg, rgba(237, 244, 252, 0.92) 0%, transparent 24%);
}

.hero-content,
.hero.in-view .hero-content {
    max-width: 640px;
    transform: none;
}

.hero-badge {
    margin-bottom: 28px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--electric);
    box-shadow: none;
    font-size: 0.68rem;
    font-weight: 700;
}

.hero-badge::before {
    width: 26px;
    height: 2px;
    border-radius: 0;
    background: var(--electric);
    box-shadow: none;
}

.hero h1 {
    max-width: 620px;
    margin-bottom: 24px;
    color: var(--primary);
    font-size: 4.35rem;
    font-weight: 500;
    line-height: 0.98;
}

.hero-highlight {
    display: block;
    color: var(--electric);
}

.hero p {
    max-width: 590px;
    margin-bottom: 34px;
    color: #526077;
    font-size: 1rem;
    line-height: 1.72;
}

.hero-buttons {
    gap: 10px;
}

.hero-buttons .btn {
    min-width: 205px;
    min-height: 50px;
    border-radius: 999px;
}

.btn-primary {
    background: var(--electric);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(18, 56, 255, 0.22);
}

.btn-primary:hover {
    background: var(--electric-dark);
    color: var(--white);
    box-shadow: 0 16px 34px rgba(18, 56, 255, 0.3);
}

.btn-outline {
    border-color: rgba(17, 24, 39, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
    border-color: var(--electric);
    background: var(--electric);
}

.trust-indicators {
    max-width: 640px;
    margin-top: 44px;
    border-top-color: rgba(17, 24, 39, 0.14);
}

.trust-item {
    color: #526077;
}

.trust-icon {
    border-color: rgba(18, 56, 255, 0.18);
    background: rgba(255, 255, 255, 0.7);
    color: var(--electric);
}

/* ===== SERVICES AS ONE EDITORIAL SYSTEM ===== */
#areas {
    padding-top: 120px;
    padding-bottom: 120px;
    border: 0;
    background: #fbfcfe;
}

#areas .text-center {
    margin-bottom: 56px;
}

#areas .section-title {
    max-width: 980px;
    margin-bottom: 20px;
    font-size: 3.75rem;
    font-weight: 500;
    text-transform: uppercase;
}

#areas .section-subtitle {
    margin-bottom: 0;
}

.areas-grid {
    display: block;
    overflow: hidden;
    border: 1px solid #d8e2f0;
    border-radius: 24px;
    background: #f2f6fc;
    box-shadow: 0 24px 64px rgba(36, 58, 92, 0.12);
}

.areas-grid > .area-card,
.areas-grid > .area-card:last-child {
    grid-column: auto;
}

.area-card {
    min-height: 154px;
    display: grid;
    grid-template-columns: 58px minmax(220px, 0.72fr) minmax(300px, 1.25fr) auto;
    align-items: center;
    gap: 28px;
    padding: 28px 34px;
    border: 0;
    border-bottom: 1px solid #d8e2f0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: none;
    color: var(--primary);
}

.area-card:last-child {
    border-bottom: 0;
}

.area-card::before,
.area-card::after,
.area-card.interactive-glow::before {
    display: none;
}

.area-card:hover {
    border-color: #c7d5e9;
    background: #e8efff;
    box-shadow: none;
    transform: none;
}

.area-card.is-selected {
    border-color: transparent;
    background: var(--electric);
    box-shadow: none;
    transform: none;
}

.area-icon {
    width: 48px;
    height: 48px;
    margin: 0;
    border: 1px solid #c5d2e6;
    border-radius: 50%;
    background: #f7f9fd;
    color: var(--electric);
}

.area-card:hover .area-icon {
    border-color: #9eb3ef;
    background: #ffffff;
    color: var(--electric);
    transform: none;
}

.area-card.is-selected .area-icon {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transform: none;
}

.area-card h3 {
    margin: 0;
    color: var(--primary);
    font-size: 1.35rem;
    font-weight: 500;
    line-height: 1.15;
}

.area-description {
    margin: 0;
    color: #58677d;
    font-size: 0.82rem;
    line-height: 1.65;
}

.area-card:hover .area-description {
    color: #3f4f68;
}

.area-card.is-selected h3,
.area-card.is-selected .area-description {
    color: var(--white);
}

.area-action {
    min-width: 136px;
    min-height: 42px;
    margin: 0;
    border: 1px solid #a7b5c9;
    border-radius: 999px;
    background: transparent;
    color: var(--primary);
}

.area-card:hover .area-action,
.area-card-featured:hover .area-action,
.area-action:hover {
    border-color: var(--electric);
    background: var(--electric);
    color: var(--white);
}

.area-card.is-selected .area-action {
    border-color: rgba(255, 255, 255, 0.55);
    background: var(--white);
    color: var(--electric);
}

.service-overview {
    margin-top: 0;
    padding: 42px;
    border: 0;
    border-radius: 0 0 24px 24px;
    background: var(--electric);
    color: var(--white);
}

.service-overview h3,
.service-overview > p,
.service-overview-note {
    color: var(--white);
}

.service-overview-list li {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    box-shadow: none;
}

.service-overview-list li::before {
    border-color: var(--white);
}

.service-overview-close {
    border-color: rgba(255, 255, 255, 0.34);
    background: transparent;
    color: var(--white);
}

/* ===== DETAILED SERVICE CONTENT ===== */
.service-detail {
    background: #fbfcfe;
}

#canje-licencias {
    padding-top: 120px;
}

.explicativa-text h2 {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.06;
}

.benefit-list li {
    border-bottom-color: #dce3ee;
}

.benefit-icon,
.check-icon {
    border-color: rgba(18, 56, 255, 0.2);
    background: #edf2ff;
    color: var(--electric);
}

.benefit-list li:hover .benefit-icon,
.checklist-item:hover .check-icon {
    background: var(--electric);
    color: var(--white);
}

.explicativa-visual {
    background: var(--night);
    box-shadow: 0 34px 80px rgba(13, 21, 40, 0.2);
}

.stat-grid {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.12);
}

.stat-number {
    color: #8fa4ff;
}

.accordion-item.active,
.checklist-item:hover,
.timeline-item:hover .timeline-content {
    border-color: rgba(18, 56, 255, 0.58);
}

.accordion-item::before {
    background: var(--electric);
}

.accordion-item.active .accordion-icon {
    background: var(--electric);
    color: var(--white);
}

.checklist-item {
    border-color: #d9e0ea;
    box-shadow: 0 10px 28px rgba(13, 21, 40, 0.05);
}

.timeline::before,
.timeline.in-view::before,
.section.in-view .timeline::before {
    background: rgba(18, 56, 255, 0.45);
}

.timeline-dot {
    border-color: var(--electric);
    color: var(--electric);
}

.timeline-item:hover .timeline-dot {
    background: var(--electric);
    color: var(--white);
}

.card-dark {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.card-dark:hover {
    border-color: rgba(95, 122, 255, 0.8);
    background: rgba(18, 56, 255, 0.16);
}

.card-icon {
    border-color: rgba(95, 122, 255, 0.26);
    background: rgba(18, 56, 255, 0.1);
    color: #8fa4ff;
}

.card:hover .card-icon {
    background: var(--electric);
    color: var(--white);
}

/* ===== CONTACT AND FOOTER ===== */
#contacto {
    padding-top: 108px;
    padding-bottom: 108px;
    border-top: 1px solid #cedbec;
    border-bottom: 1px solid #cedbec;
    background: #dfeaf7;
}

.contact-info h2 {
    color: var(--primary);
    font-size: 3.25rem;
    font-weight: 500;
    line-height: 1.02;
}

.contact-info .gold-accent {
    color: var(--electric);
}

#contacto .section-kicker-light {
    color: var(--electric);
}

.contact-intro,
.contact-info p {
    color: #4d5f78;
}

.contact-detail {
    border-color: rgba(17, 24, 39, 0.14);
    color: #354761;
}

.contact-detail-icon {
    border-color: #b8c8dd;
    background: rgba(255, 255, 255, 0.62);
    color: var(--electric);
}

#contacto .contact-info.reveal-left,
#contacto .contact-info.reveal-left.visible {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
    will-change: auto;
}

#contacto .contact-detail,
#contacto .contact-detail:hover {
    color: #263750 !important;
    transform: none;
    transition: none;
}

#contacto .contact-detail strong,
#contacto .contact-detail span,
#contacto .contact-detail:hover strong,
#contacto .contact-detail:hover span {
    color: #263750 !important;
}

#contacto .contact-detail-icon,
#contacto .contact-detail:hover .contact-detail-icon,
#contacto .contact-detail-icon svg {
    animation: none;
    transform: none;
    transition: none;
}

.contact-form {
    border: 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 30px 80px rgba(13, 21, 40, 0.22);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--electric);
    box-shadow: 0 0 0 4px rgba(18, 56, 255, 0.12);
}

.checkbox-group input[type='checkbox'] {
    accent-color: var(--electric);
}

.checkbox-group a {
    color: var(--electric);
}

.form-warning {
    border-left-color: var(--electric);
    background: #eef2ff;
    color: #30406a;
}

.footer {
    padding-top: 72px;
    border-radius: 0 0 32px 32px;
    background: var(--night);
}

.footer-legal a:hover {
    color: #8fa4ff;
}

.scroll-progress {
    background: var(--electric);
    box-shadow: 0 0 16px rgba(18, 56, 255, 0.35);
}

.whatsapp-widget {
    position: fixed;
    right: max(22px, env(safe-area-inset-right));
    bottom: max(22px, env(safe-area-inset-bottom));
    z-index: 1900;
    display: grid;
    justify-items: end;
    gap: 10px;
}

.whatsapp-orb-button {
    position: relative;
    display: grid;
    width: 66px;
    height: 66px;
    padding: 0;
    place-items: center;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: var(--white);
    cursor: pointer;
    isolation: isolate;
    transition: transform var(--transition), filter var(--transition);
}

.whatsapp-orb-button:hover {
    filter: drop-shadow(0 10px 14px rgba(13, 21, 40, 0.28));
    transform: translateY(-3px);
}

.whatsapp-orb-button:focus-visible {
    outline: 2px solid var(--electric);
    outline-offset: 3px;
}

.whatsapp-widget.is-open .whatsapp-orb-button {
    transform: rotate(8deg);
}

.whatsapp-orb {
    display: block;
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 6px 10px rgba(13, 21, 40, 0.24));
}

.whatsapp-tooltip {
    position: absolute;
    right: 76px;
    bottom: 19px;
    padding: 6px 10px;
    border-radius: 6px;
    background: var(--night);
    box-shadow: 0 8px 24px rgba(13, 21, 40, 0.18);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(6px);
    transition: opacity var(--transition), transform var(--transition);
    white-space: nowrap;
}

.whatsapp-widget:not(.is-open) .whatsapp-orb-button:hover + .whatsapp-tooltip,
.whatsapp-widget:not(.is-open) .whatsapp-orb-button:focus-visible + .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-panel {
    width: min(316px, calc(100vw - 32px));
    padding: 14px;
    border: 1px solid rgba(13, 21, 40, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px rgba(13, 21, 40, 0.22);
    color: var(--text);
    transform-origin: right bottom;
    animation: whatsapp-panel-in 0.22s cubic-bezier(0.2, 0.8, 0.2, 1);
    backdrop-filter: blur(16px);
}

.whatsapp-panel[hidden] {
    display: none;
}

.whatsapp-panel-heading {
    display: grid;
    gap: 2px;
    padding: 2px 4px 12px;
}

.whatsapp-panel-heading strong {
    color: var(--night);
    font-size: 0.9rem;
}

.whatsapp-panel-heading span {
    color: var(--text-light);
    font-size: 0.7rem;
}

.whatsapp-option {
    display: grid;
    grid-template-columns: 10px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 11px;
    min-height: 62px;
    padding: 10px 12px;
    border-top: 1px solid rgba(13, 21, 40, 0.09);
    color: var(--night);
    text-decoration: none;
    transition: background-color var(--transition), color var(--transition);
}

.whatsapp-option:hover {
    background: #f2f5fa;
    color: var(--electric-dark);
}

.whatsapp-option:focus-visible {
    position: relative;
    z-index: 1;
    outline: 3px solid rgba(18, 56, 255, 0.32);
    outline-offset: -3px;
}

.whatsapp-option > span:nth-child(2) {
    display: grid;
    gap: 1px;
}

.whatsapp-option small {
    color: var(--text-light);
    font-size: 0.64rem;
    font-weight: 600;
}

.whatsapp-option strong {
    font-size: 0.82rem;
    letter-spacing: 0;
}

.whatsapp-option-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.13);
}

@keyframes whatsapp-panel-in {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cookie-link,
.gold-link {
    color: var(--electric-dark);
}

@media (max-width: 1080px) {
    :root {
        --page-width: calc(100% - 48px);
    }

    .hero h1 {
        font-size: 3.65rem;
    }

    #areas .section-title {
        font-size: 3rem;
    }

    .area-card {
        grid-template-columns: 50px minmax(180px, 0.8fr) minmax(240px, 1.2fr);
    }

    .area-action {
        grid-column: 2 / -1;
        justify-self: start;
    }
}

@media (max-width: 768px) {
    :root {
        --page-width: 100%;
    }

    html,
    body {
        background: #fbfcfe;
    }

    main > .hero,
    main > .section,
    body > .footer {
        width: 100%;
    }

    .container {
        padding-right: 20px;
        padding-left: 20px;
    }

    .section {
        padding: 78px 0;
    }

    .header,
    .header.scrolled {
        top: 0;
        width: 100%;
        padding: 10px 0;
        border: 0;
        border-radius: 0;
        transform: translateX(-50%);
    }

    .header.header-hidden {
        transform: translate(-50%, -100%);
    }

    .header:not(.scrolled) {
        background: rgba(237, 244, 252, 0.94);
    }

    .nav {
        background: var(--night);
    }

    .nav a {
        color: var(--white);
    }

    .nav .btn {
        border-color: var(--electric);
        background: var(--electric);
        color: var(--white);
    }

    .hero {
        min-height: 810px;
        margin-top: 0;
        padding: 104px 0 104px;
        align-items: flex-start;
        border-radius: 0;
    }

    .hero::before {
        background-color: var(--ice);
        background-position: 84% center;
        background-size: cover;
        background-repeat: no-repeat;
        opacity: 0.48;
        filter: saturate(0.9);
        transform: none;
    }

    .hero::after {
        background:
            linear-gradient(180deg, rgba(237, 244, 252, 0.99) 0%, rgba(237, 244, 252, 0.96) 52%, rgba(237, 244, 252, 0.76) 76%, rgba(237, 244, 252, 0.52) 100%),
            linear-gradient(90deg, rgba(237, 244, 252, 0.88), rgba(237, 244, 252, 0.36));
    }

    .hero-badge {
        margin-bottom: 20px;
    }

    .hero h1 {
        max-width: 540px;
        font-size: 2.75rem;
        line-height: 0.98;
    }

    .hero p {
        font-size: 0.92rem;
    }

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

    .hero-buttons .btn {
        min-width: 0;
    }

    .trust-indicators {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 8px;
        width: min(100%, 330px);
        margin: 26px auto 0;
        padding-top: 18px;
    }

    .trust-item,
    .trust-item:first-child {
        min-height: 46px;
        width: 100%;
        padding: 8px 14px;
        border: 1px solid rgba(18, 56, 255, 0.12);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.7);
        font-size: 0.72rem;
        gap: 12px;
        justify-content: flex-start;
        text-align: left;
    }

    .trust-icon {
        width: 28px;
        height: 28px;
        flex: 0 0 28px;
    }

    #areas {
        padding-top: 82px;
        padding-bottom: 82px;
    }

    #areas .text-center {
        margin-bottom: 38px;
        text-align: left;
    }

    #areas .section-title {
        margin-left: 0;
        font-size: 2.5rem;
        text-align: left;
    }

    #areas .section-subtitle {
        margin-left: 0;
        text-align: left;
    }

    .areas-grid {
        border-radius: 18px;
    }

    .area-card {
        min-height: 0;
        display: grid;
        grid-template-columns: 42px 1fr;
        gap: 16px;
        padding: 26px 22px;
    }

    .area-icon {
        width: 42px;
        height: 42px;
        grid-row: 1 / span 2;
    }

    .area-card h3 {
        font-size: 1.2rem;
    }

    .area-description {
        grid-column: 2;
        font-size: 0.78rem;
    }

    .area-action {
        grid-column: 2;
        min-width: 0;
        width: fit-content;
    }

    .service-overview {
        padding: 28px 22px;
        border-radius: 0 0 18px 18px;
    }

    .section-title {
        font-size: 2.15rem;
    }

    .explicativa-text h2 {
        font-size: 2.3rem;
    }

    #contacto {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .contact-info h2 {
        font-size: 2.55rem;
    }

    .footer {
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .hero {
        min-height: 780px;
        padding-top: 96px;
        padding-bottom: 88px;
    }

    .hero::before {
        background-position: 84% center;
        background-size: cover;
    }

    .hero h1 {
        font-size: 2.32rem;
    }

    .hero-badge {
        font-size: 0.58rem;
    }

    #areas .section-title {
        font-size: 2.15rem;
    }

    .area-card {
        display: block;
    }

    .area-icon {
        margin-bottom: 18px;
    }

    .area-description {
        margin-top: 12px;
        margin-bottom: 22px;
    }

    .contact-info h2 {
        font-size: 2.2rem;
    }

    .whatsapp-widget {
        right: max(16px, env(safe-area-inset-right));
        bottom: max(16px, env(safe-area-inset-bottom));
    }

    .whatsapp-orb-button {
        width: 60px;
        height: 60px;
    }

    .whatsapp-orb {
        width: 44px;
        height: 44px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-loader,
    .page-loader-inner {
        transition-duration: 0.01ms;
    }

    .hero::before {
        transform: none !important;
    }

    .whatsapp-panel {
        animation: none;
    }

    .whatsapp-orb-button,
    .whatsapp-tooltip,
    .whatsapp-option {
        transition-duration: 0.01ms;
    }
}
