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

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

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

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

.container {
    width: min(1120px, 100% - 2.5rem);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(248, 245, 240, 0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #b49a76;
    object-fit: cover;
}

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

.brand-name {
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: #7a7a7a;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.9rem;
}

.main-nav a {
    position: relative;
    padding-bottom: 0.15rem;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8a9a5b, #b49a76);
    transition: width 0.25s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    border: none;
    background: none;
    font-size: 1.4rem;
    cursor: pointer;
}

/* Hero */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: #1f1f1f;
    background-image: radial-gradient(circle at top left, #f0eadf, #f8f5f0 40%, #fdfbf8);
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 10% 0%, rgba(180, 154, 118, 0.12) 0, transparent 55%),
        radial-gradient(circle at 90% 100%, rgba(138, 154, 91, 0.12) 0, transparent 55%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.6), transparent 55%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 3rem;
    padding-block: 3.5rem 4.25rem;
}

.hero-text h1 {
    font-size: clamp(2.1rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    color: #2e3127;
}

.hero-text p {
    max-width: 32rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.hero-note {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #6b6b6b;
}

.hero-card {
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card .hero-image {
    border-radius: 1.75rem;
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.6);
}

/* Sections */
.section {
    padding-block: 3.5rem;
}

.section-alt {
    background: #f2ebe2;
}

.section-title {
    text-align: center;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    color: #2f3326;
}

.section-intro {
    text-align: center;
    max-width: 38rem;
    margin: 0 auto 2rem;
    color: #6b6b6b;
}

.two-columns {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: flex-start;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.65rem 1.3rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #8a9a5b, #b49a76);
    color: #fff;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.btn-outline {
    background: transparent;
    border-color: #8a9a5b;
    color: #2f3326;
}

.btn-outline:hover {
    background: rgba(138, 154, 91, 0.08);
}

.full-width {
    width: 100%;
}

/* Highlight & lists */
.highlight-box {
    padding: 1.5rem 1.75rem;
    border-radius: 1.5rem;
    background: #fff;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
}

.highlight-box h3 {
    margin-top: 0;
}

.highlight-box ul {
    margin: 0.5rem 0 0;
    padding-left: 1.1rem;
}

.highlight-box li {
    margin-bottom: 0.4rem;
}

.benefits-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.55rem;
}

.benefits-list i {
    color: #8a9a5b;
    margin-top: 0.15rem;
}

.benefits-note {
    padding: 1.5rem 1.75rem;
    border-radius: 1.5rem;
    background: #f8f5f0;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.25rem;
}

.card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 1.5rem 1.6rem;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #2f3326;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.9rem;
    margin-top: 2rem;
}

.gallery-item {
    border-radius: 1.1rem;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
    opacity: 0.96;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lightbox.open {
    display: flex;
}

.lightbox-content {
    max-width: min(700px, 100%);
    max-height: 90vh;
    border-radius: 1rem;
}

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

/* Video */
.video-section {
    align-items: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

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

/* Redes */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    font-size: 0.85rem;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.social-item i {
    color: #8a9a5b;
}

.social-item:hover {
    background: #f5efe6;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.facebook-embed {
    position: relative;
}

.fb-fallback {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.fb-fallback a {
    pointer-events: auto;
}

.fb-logo {
    max-width: 160px;
    border-radius: 999px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

/* Contact */
.contact-section {
    align-items: flex-start;
}

.contact-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0 0;
}

.contact-list li {
    margin-bottom: 0.45rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-list i {
    color: #8a9a5b;
}

.contact-form {
    background: #fff;
    padding: 1.5rem 1.75rem;
    border-radius: 1.5rem;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 0.55rem 0.85rem;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    background: #fdfbf8;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.form-group textarea {
    border-radius: 1rem;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #8a9a5b;
    box-shadow: 0 0 0 1px rgba(138, 154, 91, 0.2);
    background: #fff;
}

/* Footer */
.site-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    background: #f1e6d8;
    padding-block: 1rem;
    font-size: 0.8rem;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.footer-right a {
    font-weight: 500;
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 1.3rem;
    right: 1.3rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.whatsapp-float i {
    font-size: 1.7rem;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
    background: #1ebe5d;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content,
    .two-columns {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-block: 2.6rem 3.2rem;
    }

    .hero-card {
        order: -1;
    }

    .two-columns {
        gap: 2rem;
    }

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

    .facebook-embed iframe {
        width: 100% !important;
    }
}

@media (max-width: 720px) {
    .nav-container {
        padding-block: 0.6rem;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        flex-direction: column;
        background: #f8f5f0;
        padding: 0.75rem 1.3rem 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .main-nav.open {
        transform: scaleY(1);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-toggle {
        display: block;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.9rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .brand-logo {
        width: 48px;
        height: 48px;
    }
}
