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

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

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

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

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.section {
    padding: 4rem 0;
}

.section.light {
    background: #111;
}

.section.dark {
    background: radial-gradient(circle at top, #2a2520 0, #050505 45%, #000 100%);
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #f7f7f7;
}

.section-intro {
    margin-bottom: 2rem;
    color: #d0d0d0;
}

/* Header */

.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
}

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

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

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

.logo-title {
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

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

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

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

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

/* Hero */

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    filter: brightness(0.45);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.4), transparent 60%);
}

.hero-content {
    position: relative;
    padding: 5rem 0 4rem;
    max-width: 620px;
}

.hero h1 {
    font-size: clamp(2.2rem, 3.3vw, 3rem);
    margin-bottom: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.hero-note {
    font-size: 0.9rem;
    color: #f3e3b0;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.4rem 0 0.6rem;
}

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

.primary-btn {
    background: linear-gradient(135deg, #d4af37, #f6e27a);
    color: #2b2212;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.primary-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
}

.secondary-btn {
    background: transparent;
    border-color: rgba(244, 211, 94, 0.8);
    color: #f4d35e;
}

.secondary-btn:hover {
    background: rgba(244, 211, 94, 0.1);
}

.full-width {
    width: 100%;
}

/* Sections */

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

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.badges span {
    font-size: 0.8rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    color: #f3e3b0;
}

.promo-cards {
    display: grid;
    gap: 1.4rem;
}

.card {
    background: radial-gradient(circle at top, rgba(244, 211, 94, 0.18) 0, #111 50%);
    border-radius: 1.2rem;
    padding: 1.4rem 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.6);
}

.card h3 {
    margin-bottom: 0.8rem;
    color: #fbe8a1;
}

.card ul {
    list-style: none;
}

.card li {
    position: relative;
    padding-left: 1.1rem;
    font-size: 0.9rem;
    color: #e8e8e8;
    margin-bottom: 0.35rem;
}

.card li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #d4af37;
}

/* Servicios */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-item {
    background: rgba(0, 0, 0, 0.55);
    border-radius: 1.1rem;
    padding: 1.3rem 1.4rem;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.service-item h3 {
    margin-bottom: 0.6rem;
    font-size: 1rem;
    color: #fbe8a1;
}

.service-item p {
    font-size: 0.9rem;
    color: #dfdfdf;
}

.promo-banners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.promo-img img {
    border-radius: 1.1rem;
    border: 1px solid rgba(244, 211, 94, 0.6);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

/* Galería */

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

.gallery-item {
    border-radius: 0.8rem;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
    object-fit: cover;
    max-height: 260px;
    width: 100%;
}

.gallery-item:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.7);
}

/* Video */

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

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 1.2rem;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.5);
}

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

/* Social */

.social-section {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-btn {
    padding: 0.6rem 1.3rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.55);
    font-size: 0.9rem;
    background: rgba(10, 10, 10, 0.9);
    color: #fbe8a1;
    transition: background 0.2s ease, transform 0.15s ease;
}

.social-btn:hover {
    background: rgba(212, 175, 55, 0.16);
    transform: translateY(-1px);
}

/* Contacto */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: flex-start;
}

.contact-info {
    list-style: none;
    margin: 1.4rem 0 1.8rem;
}

.contact-info li {
    margin-bottom: 0.4rem;
    font-size: 0.95rem;
}

.map-embed {
    border-radius: 1.1rem;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.map-embed iframe {
    width: 100%;
    height: 260px;
    border: 0;
}

.contact-form {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 1.3rem;
    padding: 1.8rem 1.6rem;
    border: 1px solid rgba(212, 175, 55, 0.5);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
}

.contact-form h3 {
    margin-bottom: 1rem;
    color: #fbe8a1;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.6rem 0.75rem;
    border-radius: 0.6rem;
    border: 1px solid rgba(120, 120, 120, 0.9);
    background: rgba(10, 10, 10, 0.9);
    color: #f7f7f7;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.4);
}

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

.form-note {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: #d0d0d0;
}

/* WhatsApp floating */

.whatsapp-floating {
    position: fixed;
    bottom: 1.1rem;
    right: 1rem;
    z-index: 90;
    background: #25d366;
    color: #111;
    border-radius: 999px;
    padding: 0.6rem 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.whatsapp-floating::before {
    content: "✆";
    font-size: 1rem;
}

.whatsapp-floating:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.8);
}

/* Footer */

.main-footer {
    background: #020202;
    border-top: 1px solid rgba(212, 175, 55, 0.4);
    padding: 1.5rem 0 1.3rem;
    font-size: 0.8rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: center;
    text-align: center;
    color: #c6c6c6;
}

.footer-content a {
    color: #fbe8a1;
}

/* Lightbox */

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

.lightbox.open {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 92vw;
    max-height: 88vh;
}

.lightbox img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0.8rem;
}

.lightbox-close {
    position: absolute;
    top: -2.2rem;
    right: -0.2rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #f5f5f5;
    cursor: pointer;
}

/* Animaciones */

.fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */

@media (max-width: 900px) {
    .two-cols,
    .video-section,
    .contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .video-section {
        gap: 1.4rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 0.6rem;
        padding: 0.5rem 0.3rem;
    }

    .main-nav {
        gap: 0.9rem;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 0.8rem;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-content {
        padding-top: 4.2rem;
    }

    .section {
        padding: 3.2rem 0;
    }

    .whatsapp-floating {
        bottom: 0.8rem;
        right: 0.7rem;
    }
}

@media (max-width: 520px) {
    .main-nav {
        display: none;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .card,
    .contact-form {
        padding: 1.4rem 1.2rem;
    }
}
