
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #2b2b2b;
    background-color: #faf7f2;
    line-height: 1.6;
}

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

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

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: rgba(19, 19, 19, 0.8);
    backdrop-filter: blur(12px);
    color: #fff;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-area img {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    object-fit: cover;
}

.logo-text-main {
    font-weight: 600;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
}

.logo-text-sub {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.8;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

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

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #f4c16c;
    transition: width 0.2s ease;
}

nav a:hover::after {
    width: 100%;
}

.btn-primary {
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #f4c16c, #e09b52);
    color: #2b1b0f;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
}

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

main {
    margin-top: 70px;
}

.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: stretch;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../img/hero_garden.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    filter: brightness(0.4);
    z-index: -2;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255,255,255,0.18), transparent 50%),
                linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.35));
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    color: #f9ddad;
    margin-bottom: 0.75rem;
}

.hero-title {
    font-size: clamp(2.3rem, 4vw, 3.4rem);
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-highlight {
    color: #f4c16c;
}

.hero-subtitle {
    max-width: 560px;
    font-size: 0.98rem;
    color: #f7f0e5;
    margin-bottom: 1.5rem;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.hero-tag {
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(249,221,173,0.35);
    font-size: 0.75rem;
    backdrop-filter: blur(8px);
    background: rgba(0,0,0,0.3);
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.btn-ghost {
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.45);
    font-size: 0.8rem;
    background: rgba(0,0,0,0.25);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-ghost span.icon {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

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

.hero-card {
    background: rgba(9,9,9,0.85);
    border-radius: 1.5rem;
    padding: 1.5rem 1.7rem;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 1.3rem;
    min-height: 280px;
    box-shadow: 0 22px 55px rgba(0,0,0,0.7);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(16px);
}

.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.hero-badge {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(81,200,164,0.1);
    color: #8ef0cf;
    border: 1px solid rgba(143,240,207,0.4);
}

.hero-card-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    opacity: 0.8;
}

.hero-card-body {
    display: grid;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #f0e7da;
}

.hero-card-body strong {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #f4c16c;
}

.hero-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    color: #f0e7da;
}

.pill {
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(244,193,108,0.6);
    font-size: 0.7rem;
}

.section {
    padding: 4rem 1.5rem;
}

.section-alt {
    background: #f2e7da;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-end;
}

.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.78rem;
    color: #b58c52;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    max-width: 520px;
    font-size: 0.95rem;
    color: #4a3d33;
}

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

.feature-card {
    background: #fff;
    border-radius: 1.2rem;
    padding: 1.4rem 1.5rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.04);
    border: 1px solid #f1e2d1;
}

.feature-title {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.feature-pill {
    font-size: 0.75rem;
    color: #91714a;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 0.7rem;
}

.feature-text {
    font-size: 0.9rem;
    color: #5b4a3a;
}

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

.highlight-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 1.7rem 1.8rem;
    box-shadow: 0 18px 45px rgba(0,0,0,0.06);
    border: 1px solid #f1e2d1;
}

.highlight-list {
    display: grid;
    gap: 0.9rem;
    font-size: 0.9rem;
    color: #4a3d33;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.highlight-item span.bullet {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 1px solid #c89e64;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    cursor: pointer;
    background: #000;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease, opacity 0.35s ease;
    opacity: 0.9;
}

.gallery-item::after {
    content: "Ver más";
    position: absolute;
    inset: auto 0 0 0;
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 80;
    padding: 1rem;
}

.gallery-overlay.active {
    display: flex;
}

.overlay-inner {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.overlay-inner img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 1.2rem;
    box-shadow: 0 25px 60px rgba(0,0,0,0.75);
}

.overlay-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 1rem;
}

.social-embeds {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 1.8rem;
    align-items: flex-start;
}

.social-embeds iframe {
    width: 100%;
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 2.5rem;
}

form {
    display: grid;
    gap: 0.9rem;
}

label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #4a3d33;
}

input, textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border-radius: 0.7rem;
    border: 1px solid #d8c7b3;
    font-family: inherit;
    font-size: 0.9rem;
    background: #fff;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-details {
    display: grid;
    gap: 1rem;
    font-size: 0.9rem;
    color: #4a3d33;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-icon {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid #c89e64;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.map-embed iframe {
    width: 100%;
    border: none;
    border-radius: 1rem;
    min-height: 260px;
}

footer {
    border-top: 1px solid #e1d2c2;
    background: #f6ece1;
    padding: 1.5rem 1.5rem 2rem;
    margin-top: 2rem;
}

footer .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.8rem;
    color: #6c5640;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
    align-items: center;
}

.footer-inner p {
    margin: 0;
}

.floating-buttons {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    z-index: 90;
}

.floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-btn.call {
    background: #2f3b4f;
}

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

.floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 55px rgba(0,0,0,0.6);
}

.badge-agenda {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: #271c17;
    color: #f4c16c;
    border: 1px solid rgba(244,193,108,0.7);
}

.badge-agenda img {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    object-fit: cover;
}

@media (max-width: 960px) {
    nav ul {
        display: none;
    }
    .hero-content {
        grid-template-columns: minmax(0, 1fr);
    }
    .hero-card {
        order: -1;
    }
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .two-column,
    .social-embeds,
    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .section {
        padding-inline: 1.1rem;
    }
    .hero-content {
        padding-inline: 1.1rem;
    }
    .features-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .hero-card {
        padding: 1.3rem 1.3rem;
    }
    .nav-container {
        padding-inline: 1rem;
    }
    .hero-title {
        font-size: 2.1rem;
    }
}
