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

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #0b1f1a;
    background-color: #f5f7f6;
    line-height: 1.6;
}

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

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

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(245, 247, 246, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(10, 53, 41, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    gap: 1rem;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0f3d30;
}

.logo-text h1 {
    font-size: 1.1rem;
    letter-spacing: 0.18em;
    margin: 0;
}

.logo-text p {
    margin: 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #557166;
}

.main-nav {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.main-nav a {
    padding: 0.4rem 0.6rem;
    border-radius: 999px;
    transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
    background: #0f3d30;
    color: #f5f7f6;
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid #0f3d30;
    border-radius: 999px;
    padding: 0.25rem 0.6rem;
    font-size: 1.1rem;
    cursor: pointer;
}

/* Hero */

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: #fdfdfd;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 32, 24, 0.85), rgba(24, 87, 68, 0.6));
}

.hero-content {
    position: relative;
    padding: 4rem 1.25rem 4.5rem;
    max-width: 600px;
}

.hero-tag {
    display: inline-flex;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    background: rgba(245, 247, 246, 0.1);
    border: 1px solid rgba(245, 247, 246, 0.4);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.hero h2 {
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    margin: 0 0 0.75rem;
}

.hero p {
    margin: 0 0 1.5rem;
    font-size: 0.98rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.3rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #0f3d30;
    color: #fefefe;
}

.btn-primary:hover {
    background: #145343;
}

.btn-secondary {
    background: rgba(245, 247, 246, 0.1);
    color: #fefefe;
    border: 1px solid rgba(245, 247, 246, 0.4);
}

.btn-secondary:hover {
    background: rgba(245, 247, 246, 0.22);
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Sections */

.section {
    padding: 3.5rem 0;
}

.section-alt {
    background: #e9f1ed;
}

.section h3 {
    font-size: 1.5rem;
    margin-top: 0;
}

.section-intro {
    max-width: 540px;
    margin: 0.5rem 0 2rem;
    color: #475b52;
}

.grid-2 {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
}

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

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: 0.35rem;
    color: #3d5148;
    font-size: 0.95rem;
}

.card-img img {
    border-radius: 1.25rem;
    box-shadow: 0 18px 40px rgba(4, 35, 26, 0.32);
    object-fit: cover;
}

/* Menu cards */

.card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 1.25rem;
    box-shadow: 0 12px 30px rgba(2, 18, 13, 0.08);
}

.card-photo {
    border-radius: 1rem;
    margin-bottom: 0.9rem;
    height: 180px;
    width: 100%;
    object-fit: cover;
}

.card h4 {
    margin: 0 0 0.4rem;
    font-size: 1.1rem;
}

.card p {
    margin: 0;
    font-size: 0.95rem;
    color: #475b52;
}

/* Gallery */

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

.gallery-item {
    border-radius: 0.9rem;
    height: 140px;
    width: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

/* Lightbox */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(4, 16, 12, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
    padding: 1.5rem;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-height: 90vh;
    border-radius: 1rem;
}

.lightbox-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    font-size: 2rem;
    color: #fefefe;
    cursor: pointer;
}

/* Social & video */

.social-embed-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-card {
    background: #ffffff;
    border-radius: 1.1rem;
    padding: 1.1rem;
    box-shadow: 0 10px 24px rgba(3, 32, 23, 0.1);
}

.social-card h4 {
    margin-top: 0;
    margin-bottom: 0.4rem;
}

.fb-wrapper iframe {
    width: 100%;
}

.video-card h4 {
    margin-top: 0;
    margin-bottom: 0.6rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 1.1rem;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(1, 20, 14, 0.32);
}

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

/* Contact */

.contact-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
    display: grid;
    gap: 0.4rem;
    font-size: 0.95rem;
}

.contact-list a {
    color: #145343;
    text-decoration: underline;
}

.map-wrapper {
    border-radius: 1.1rem;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.map-wrapper iframe {
    width: 100%;
    height: 230px;
    border: 0;
}

.contact-form {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 1.4rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 0.9rem;
}

label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.85rem;
    font-weight: 600;
}

input,
textarea {
    width: 100%;
    padding: 0.6rem 0.7rem;
    border-radius: 0.6rem;
    border: 1px solid #c3d3cb;
    font: inherit;
    resize: vertical;
}

input:focus,
textarea:focus {
    outline: 2px solid #0f3d30;
    outline-offset: 1px;
    border-color: #0f3d30;
}

/* Footer */

.site-footer {
    background: #071713;
    color: #d0ded7;
    padding: 1.5rem 0 1.8rem;
    margin-top: 1.5rem;
    font-size: 0.85rem;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem 1rem;
}

.site-footer a {
    color: #9fd5c0;
    text-decoration: underline;
}

/* WhatsApp */

.whatsapp-float {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #22c15e;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    z-index: 150;
}

.wa-icon {
    font-size: 1.5rem;
}

/* Responsive */

@media (max-width: 900px) {
    .grid-2 {
        grid-template-columns: minmax(0, 1fr);
    }

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

    .social-embed-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .nav-toggle {
        display: inline-flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        background: rgba(245, 247, 246, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 0.7rem 1rem 0.9rem;
        border-radius: 0 0 0 1rem;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
    }

    .main-nav.open {
        opacity: 1;
        pointer-events: auto;
    }

    .hero {
        min-height: 65vh;
    }

    .hero-content {
        padding-top: 3.2rem;
        padding-bottom: 3.2rem;
    }

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

@media (max-width: 480px) {
    .grid-3 {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}
