html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

html.dark,
html.dark body {
    background-color: #121414;
    color: #e2e2e2;
}

html.dark body {
    font-family: Manrope, system-ui, sans-serif;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.glass-card {
    background: rgba(30, 32, 32, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gold-glow {
    box-shadow: 0 0 30px rgba(232, 0, 58, 0.15);
}

.whatsapp-glow {
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.2);
}

.whatsapp-cta {
    border-radius: 9999px;
    background: #25d366;
    color: #fff;
    box-shadow:
        0 4px 14px rgba(37, 211, 102, 0.45),
        0 10px 28px rgba(0, 0, 0, 0.28);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.25s ease,
                box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-cta:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(37, 211, 102, 0.55),
        0 14px 32px rgba(0, 0, 0, 0.32);
}

.whatsapp-cta:active {
    transform: translateY(0) scale(0.98);
}

.whatsapp-cta-icon {
    border-radius: 50%;
}

.services-cta {
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #e2e2e2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.25s ease,
                background 0.25s ease,
                box-shadow 0.25s ease;
}

.services-cta:hover {
    border-color: rgba(232, 0, 58, 0.4);
    background: rgba(232, 0, 58, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.services-cta:active {
    transform: translateY(0) scale(0.98);
}

.services-cta-icon {
    border-radius: 50%;
}

.instagram-btn {
    border-radius: 9999px;
}

.whatsapp-fab {
    border-radius: 50%;
    aspect-ratio: 1;
    background: #25d366;
    box-shadow:
        0 4px 14px rgba(37, 211, 102, 0.45),
        0 12px 28px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-fab:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow:
        0 6px 20px rgba(37, 211, 102, 0.55),
        0 16px 36px rgba(0, 0, 0, 0.4);
}

.whatsapp-fab:active {
    transform: scale(0.96);
}

.whatsapp-fab::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 9999px;
    border: 2px solid rgba(37, 211, 102, 0.5);
    animation: whatsapp-pulse 2.5s ease-out infinite;
    pointer-events: none;
}

@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 0.7; }
    70%, 100% { transform: scale(1.35); opacity: 0; }
}

@keyframes subtle-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}

.animate-float {
    animation: subtle-float 6s ease-in-out infinite;
}

.hero-gradient {
    background: radial-gradient(circle at 70% 30%, rgba(232, 0, 58, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(232, 0, 58, 0.05) 0%, transparent 40%);
}

.rounded-pill { border-radius: 9999px; }
.rounded-circle { border-radius: 50%; }

.nav-cta {
    border-radius: 9999px;
    transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover { filter: brightness(1.08); transform: translateY(-1px); }
.nav-cta:active { transform: scale(0.97); }

.maps-cta {
    border-radius: 9999px;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.maps-cta:hover {
    transform: translateY(-2px);
    background: rgba(232, 0, 58, 0.1);
    border-color: rgba(232, 0, 58, 0.35);
}

.final-cta {
    border-radius: 9999px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.final-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.final-cta:active { transform: scale(0.98); }

.mobile-nav {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}

.mobile-nav.is-open {
    max-height: 420px;
    opacity: 1;
}

details summary::-webkit-details-marker { display: none; }
details summary::marker { content: ""; }

.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;
}

.skip-link:focus {
    position: fixed;
    width: auto;
    height: auto;
    margin: 0;
    clip: auto;
    z-index: 100;
}

img, video, iframe { max-width: 100%; }

.cta-full-mobile {
    width: 100%;
}

.faq-summary {
    gap: 1rem;
}

.faq-summary span:last-child {
    flex-shrink: 0;
}

.safe-bottom {
    bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
}

.touch-target {
    min-height: 44px;
    min-width: 44px;
}

@media (prefers-reduced-motion: reduce) {
    .animate-float,
    .whatsapp-fab::before { animation: none; }
    .glass-card:hover { transform: none; }
    section { transition: none !important; }
}

@media (max-width: 639px) {
    .px-gutter {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

@media (hover: hover) and (pointer: fine) {
    .glass-card:hover {
        background: rgba(30, 32, 32, 0.8);
        border-color: rgba(232, 0, 58, 0.3);
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
}

@media (hover: none) {
    .glass-card:hover { transform: none; }
}

@media (min-width: 640px) {
    .safe-bottom {
        bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
    }
}

@media (min-width: 768px) {
    .safe-bottom {
        bottom: max(2rem, env(safe-area-inset-bottom, 0px));
    }
}

@media (min-width: 1024px) {
    .cta-full-mobile { width: auto; }
}

html, body {
    overflow-x: clip;
    max-width: 100vw;
}

header {
    padding-top: env(safe-area-inset-top, 0px);
}

@media (max-width: 1023px) {
    .hero-gradient {
        background: radial-gradient(circle at 50% 0%, rgba(232, 0, 58, 0.1) 0%, transparent 45%),
                    radial-gradient(circle at 80% 90%, rgba(232, 0, 58, 0.06) 0%, transparent 40%);
    }
}

main {
    width: 100%;
    overflow-x: clip;
}