
:root {
    --primary: #8DA3B8;
    --primary-dark: #60748A;
    --accent: #d4af37;
    --bg: #f5f5f7;
    --text: #243040;
    --muted: #6c7a8a;
    --white: #ffffff;
}

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

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
}

/* Navbar */

.site-header {
    position: relative;
    color: var(--white);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(90deg, rgba(26,36,52,0.98), rgba(96,116,138,0.96));
    backdrop-filter: blur(10px);
}

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

.logo {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.9);
}

.brand-name {
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* Nav links */

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.25s ease;
}

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

/* Mobile menu */

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.menu-icon span {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 999px;
}

/* Hero */

.hero {
    margin-top: 64px;
    position: relative;
    min-height: 80vh;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    align-items: stretch;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.3), rgba(8,17,32,0.9));
}

.hero-media {
    position: relative;
    overflow: hidden;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1);
    transform: scale(1.03);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(8,17,32,0.55), rgba(96,116,138,0.45));
}

.hero-content {
    position: relative;
    padding: 3.5rem 3rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.2rem, 3vw, 3rem);
    line-height: 1.1;
    margin: 0;
}

.hero p {
    margin: 0;
    max-width: 34rem;
}

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

.hero-location {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.btn.primary {
    background: linear-gradient(135deg, var(--accent), #f3d88b);
    color: #372d16;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

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

.btn.outline {
    border-color: rgba(255,255,255,0.85);
    color: var(--white);
    background: transparent;
}

.btn.outline:hover {
    background: rgba(255,255,255,0.12);
}

.btn.full {
    width: 100%;
}

/* Sections */

.section {
    padding: 4rem 1.5rem;
}

.section.soft-bg {
    background: radial-gradient(circle at top left, #ffffff, #edf1f7);
}

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

.section h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.section-intro {
    text-align: center;
    max-width: 40rem;
    margin: 0.5rem auto 2.5rem;
    color: var(--muted);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--white);
    border-radius: 1.25rem;
    padding: 1.5rem 1.6rem;
    box-shadow: 0 16px 40px rgba(15,23,42,0.08);
    border: 1px solid rgba(141,163,184,0.18);
}

.card h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.card p {
    margin: 0;
    color: var(--muted);
}

/* Two column layout */

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

.two-column.reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}

.two-column.reverse .content-block {
    order: 2;
}

.two-column.reverse .media-block {
    order: 1;
}

.content-block p {
    color: var(--muted);
}

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

.check-list li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.5rem;
    color: var(--muted);
}

.check-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-size: 0.85rem;
}

/* Video */

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15,23,42,0.35);
}

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

/* Gallery */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
}

.gallery-item {
    margin: 0;
    overflow: hidden;
    border-radius: 1.1rem;
    cursor: pointer;
    position: relative;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,15,30,0.32), transparent 40%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.gallery-item img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.25s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Lightbox */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(7, 10, 18, 0.86);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 60;
    padding: 1.5rem;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 1rem;
    box-shadow: 0 24px 60px rgba(0,0,0,0.85);
}

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

/* Redes */

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

.social-list li {
    margin-bottom: 0.5rem;
}

.social-list a {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
}

.social-list a:hover {
    text-decoration: underline;
}

.fb-embed-wrapper {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 0.75rem;
    box-shadow: 0 16px 40px rgba(15,23,42,0.12);
    border: 1px solid rgba(141,163,184,0.25);
}

/* Contacto */

.contact-list {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
    color: var(--muted);
}

.contact-list li {
    margin-bottom: 0.35rem;
}

.contact-list a {
    color: var(--primary-dark);
    text-decoration: none;
}

.contact-list a:hover {
    text-decoration: underline;
}

.contact-form {
    background: var(--white);
    border-radius: 1.25rem;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 18px 46px rgba(15,23,42,0.12);
    border: 1px solid rgba(141,163,184,0.18);
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0.9rem;
}

label {
    font-size: 0.95rem;
    font-weight: 500;
}

input,
textarea {
    border-radius: 0.75rem;
    border: 1px solid rgba(141,163,184,0.6);
    padding: 0.6rem 0.75rem;
    font-size: 0.95rem;
    font-family: inherit;
    resize: vertical;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(141,163,184,0.6);
}

.form-note {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.5rem;
}

/* Footer */

.site-footer {
    background: #0b1523;
    color: rgba(255,255,255,0.88);
    padding: 2.5rem 1.5rem 2rem;
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.site-footer a {
    color: var(--accent);
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* WhatsApp float */

.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 35px rgba(0,0,0,0.25);
    z-index: 50;
    text-decoration: none;
}

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

/* Responsive */

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

    .hero-media {
        max-height: 320px;
    }

    .hero-content {
        padding: 2.5rem 1.5rem 3rem;
    }

    .two-column,
    .two-column.reverse {
        grid-template-columns: minmax(0, 1fr);
    }

    .two-column.reverse .content-block,
    .two-column.reverse .media-block {
        order: initial;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding-inline: 1rem;
    }

    .nav-links {
        position: fixed;
        inset: 56px 0 auto 0;
        background: linear-gradient(180deg, rgba(8,15,30,0.97), rgba(18,28,48,0.97));
        flex-direction: column;
        padding: 0.75rem 1.25rem 1.25rem;
        gap: 0.6rem;
        transform: translateY(-120%);
        transition: transform 0.2s ease;
    }

    .menu-icon {
        display: flex;
    }

    .menu-toggle:checked ~ .menu-icon + .nav-links {
        transform: translateY(0);
    }
}

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

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