@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --verde-50: #f0fdf4;
    --verde-100: #dcfce7;
    --verde-200: #bbf7d0;
    --verde-400: #4ade80;
    --verde-500: #22c55e;
    --verde-600: #16a34a;
    --verde-700: #15803d;
    --verde-800: #166534;
    --verde-900: #14532d;
    --verde-950: #0a2e1a;
}

* {
    box-sizing: border-box;
    font-family: 'Inter', system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
}

.font-display {
    font-family: 'Georgia', 'Times New Roman', serif;
}

.btn-pulse {
    animation: pulse-verde 2.2s infinite;
}

@keyframes pulse-verde {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
    }
    50% {
        box-shadow: 0 0 0 18px rgba(34, 197, 94, 0);
    }
}

.bg-pattern {
    background-color: #f5faf7;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(21, 128, 61, 0.05) 0%, transparent 50%);
}

.bg-pattern-light {
    background-color: #fafdfb;
    background-image:
        radial-gradient(circle at 30% 60%, rgba(34, 197, 94, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(21, 128, 61, 0.03) 0%, transparent 50%);
}

.input-focus:focus {
    border-color: var(--verde-500);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

#successMessage {
    animation: slide-up 0.5s ease forwards;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-whatsapp {
    background-color: #25d366;
}

.btn-whatsapp:hover {
    background-color: #1fba56;
}

.site-shell {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.site-nav.is-scrolled {
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
}

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

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--verde-900);
    text-decoration: none;
}

.site-brand img {
    width: auto;
    height: 2.5rem;
    border-radius: 0.75rem;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(10, 46, 26, 0.12);
}

.site-brand__text {
    display: none;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.site-nav__desktop {
    display: none;
    align-items: center;
    gap: 1.2rem;
}

.site-nav__link {
    position: relative;
    color: var(--verde-800);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-nav__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 0;
    height: 2px;
    background: var(--verde-500);
    transition: width 0.2s ease;
}

.site-nav__link:hover,
.site-brand:hover,
.site-footer__link:hover,
.site-footer__reserve:hover {
    color: var(--verde-600);
}

.site-nav__link:hover::after {
    width: 100%;
}

.site-nav__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.8rem;
    padding: 0.7rem 1.35rem;
    border-radius: 999px;
    background: var(--verde-600);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(22, 163, 74, 0.22);
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.site-nav__button:hover {
    background: var(--verde-700);
    transform: translateY(-1px);
    box-shadow: 0 18px 32px rgba(21, 128, 61, 0.26);
}

.site-nav__button[aria-current='page'] {
    background: var(--verde-950);
    box-shadow: 0 10px 24px rgba(10, 46, 26, 0.24);
}

.site-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 0;
    border-radius: 0.9rem;
    background: transparent;
    color: var(--verde-800);
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav__toggle:hover {
    background: var(--verde-50);
}

.site-nav__mobile {
    display: none;
    border-top: 1px solid rgba(34, 197, 94, 0.16);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.site-nav__mobile.is-open {
    display: block;
}

.site-nav__mobile-shell {
    display: grid;
    gap: 0.75rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.site-nav__mobile-link,
.site-nav__mobile-button {
    display: block;
    border-radius: 1rem;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
}

.site-nav__mobile-link {
    color: var(--verde-800);
    background: transparent;
}

.site-nav__mobile-link:hover {
    background: var(--verde-50);
}

.site-nav__mobile-button {
    background: var(--verde-600);
    color: #fff;
    text-align: center;
}

.site-nav__mobile-button[aria-current='page'] {
    background: var(--verde-950);
}

.site-footer {
    background: var(--verde-950);
    color: var(--verde-100);
    padding: 3rem 0 4rem;
}

.site-footer__row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.site-footer__brand {
    text-align: center;
}

.site-footer__brand img {
    width: auto;
    height: 3rem;
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    object-fit: cover;
    box-shadow: 0 14px 30px rgba(10, 46, 26, 0.26);
}

.site-footer__copy {
    max-width: 18rem;
    margin: 0;
    color: rgba(220, 252, 231, 0.82);
    font-size: 0.92rem;
    line-height: 1.6;
}

.site-footer__contact {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
    max-width: 30rem;
}

.site-footer__contact-item {
    margin: 0;
    color: rgba(220, 252, 231, 0.86);
    font-size: 0.92rem;
    line-height: 1.6;
}

.site-footer__contact-label {
    display: block;
    margin-bottom: 0.18rem;
    color: rgba(134, 239, 172, 0.92);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer__contact-link {
    color: rgba(220, 252, 231, 0.92);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__copy-button {
    appearance: none;
    border: 0;
    padding: 0;
    background: transparent;
    color: rgba(220, 252, 231, 0.92);
    font: inherit;
    cursor: pointer;
    transition: color 0.2s ease;
}

.site-footer__contact-link:hover,
.site-footer__copy-button:hover {
    color: #fff;
}

.site-footer__copy-status {
    display: inline-block;
    min-width: 7.5rem;
    margin-left: 0.55rem;
    color: rgba(134, 239, 172, 0.92);
    font-size: 0.78rem;
    font-weight: 700;
}

.site-footer__separator {
    display: inline-block;
    margin: 0 0.4rem;
    color: rgba(134, 239, 172, 0.7);
}

.site-footer__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.35rem;
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

.site-footer__link,
.site-footer__reserve {
    color: rgba(220, 252, 231, 0.86);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__reserve {
    font-weight: 700;
}

.site-footer__socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
}

.site-footer__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 999px;
    background: rgba(220, 252, 231, 0.08);
    color: rgba(220, 252, 231, 0.9);
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.site-footer__social-icon {
    width: 1.25rem;
    height: 1.25rem;
    display: block;
}

.site-footer__social:hover {
    transform: translateY(-2px);
    background: rgba(74, 222, 128, 0.18);
    color: #fff;
}

.site-footer__bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(34, 197, 94, 0.18);
    text-align: center;
    color: rgba(134, 239, 172, 0.7);
    font-size: 0.78rem;
}

@media (min-width: 640px) {
    .site-shell {
        padding: 0 1.5rem;
    }

    .site-nav__row {
        min-height: 5rem;
    }

    .site-brand img {
        height: 3rem;
    }

    .site-brand__text {
        display: inline;
    }
}

@media (min-width: 768px) {
    .site-footer__row {
        flex-direction: row;
    }

    .site-footer__brand {
        text-align: left;
    }

    .site-footer__brand img {
        margin-left: 0;
    }

    .site-footer__nav {
        align-items: flex-end;
    }
}

@media (min-width: 1024px) {
    .site-nav__desktop {
        display: inline-flex;
    }

    .site-nav__toggle,
    .site-nav__mobile {
        display: none !important;
    }
}