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

:root {
    --bg: #050505;
    --bg-alt: #111111;
    --card: #181818;
    --primary: #ffd633;
    --primary-soft: rgba(255, 214, 51, 0.08);
    --text: #f7f7f7;
    --muted: #b5b5b5;
    --accent: #ffffff;
    --radius-lg: 18px;
    --radius-full: 999px;
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.6);
}

body {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top left, #202020, #050505 60%);
    color: var(--text);
    line-height: 1.6;
}

/* Layout */

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

.section {
    padding: 4.5rem 0;
}

.section-alt {
    background: linear-gradient(135deg, #0c0c0c, #151515);
}

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

/* Header */

.main-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

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

.logo-main {
    height: 52px;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
}

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

.main-nav a {
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
}

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

.main-nav a:hover {
    color: var(--accent);
}

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

/* Hero */

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 214, 51, 0.12), transparent 55%),
                linear-gradient(120deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.96));
}

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

.hero-kicker {
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.hero h1 {
    font-size: clamp(2.4rem, 3.1vw + 1.5rem, 3.4rem);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero h1 span {
    color: var(--primary);
}

.hero-text {
    color: var(--muted);
    max-width: 32rem;
    margin-bottom: 1.5rem;
}

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

/* Buttons */

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

.btn-primary {
    background: var(--primary);
    color: #141414;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.75);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Sections */

.section h2 {
    font-size: 1.9rem;
    margin-bottom: 1rem;
}

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

/* Feature list */

.feature-list {
    list-style: none;
    margin-top: 1rem;
    display: grid;
    gap: 0.5rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: "●";
    font-size: 0.6rem;
    color: var(--primary);
    margin-top: 0.25rem;
}

/* Highlight card */

.highlight-card {
    background: radial-gradient(circle at top, rgba(255, 214, 51, 0.12), transparent 60%),
                var(--card);
    border-radius: var(--radius-lg);
    padding: 1.8rem 1.6rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.highlight-card h3 {
    font-size: 1.2rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.highlight-card p {
    color: var(--text);
    margin-bottom: 1.1rem;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: var(--primary-soft);
}

/* Info blocks */

.info-block {
    margin-top: 1.2rem;
    padding: 1rem 1rem 0.9rem;
    border-left: 3px solid var(--primary);
    background: rgba(0, 0, 0, 0.35);
    border-radius: 10px;
}

.info-block h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

/* Video */

.video-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-soft);
}

.video-card h3 {
    margin-bottom: 0.9rem;
}

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

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

/* Gallery */

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

.gallery-item {
    width: 100%;
    display: block;
    border-radius: 14px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 214, 51, 0.65);
}

/* Lightbox */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease;
    z-index: 60;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: min(900px, 92vw);
    max-height: 88vh;
    border-radius: 10px;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.8);
}

/* Redes */

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1rem 0 0.5rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--accent);
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.15s ease, transform 0.15s ease;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-1px);
}

.social-embeds {
    display: grid;
    gap: 1rem;
}

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

.ig-embed {
    background: rgba(0, 0, 0, 0.35);
    border-radius: 10px;
    padding: 0.75rem;
    border: 1px dashed rgba(255, 255, 255, 0.18);
}

/* Contact */

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

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

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

.contact-form {
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
}

.contact-form h3 {
    margin-bottom: 0.9rem;
}

.contact-form label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.7rem;
    color: var(--muted);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-top: 0.2rem;
    padding: 0.6rem 0.7rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(0, 0, 0, 0.55);
    color: var(--text);
    font-family: inherit;
    font-size: 0.9rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 1px solid var(--primary);
    border-color: var(--primary);
}

.small-text {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.55rem;
}

/* Footer */

.main-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0 2rem;
    background: #050505;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--muted);
}

.main-footer a {
    color: var(--primary);
    text-decoration: none;
}

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

/* WhatsApp */

.whatsapp-float {
    position: fixed;
    right: 1.1rem;
    bottom: 1.1rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
    z-index: 70;
    text-decoration: none;
}

.whatsapp-float span {
    font-size: 1.5rem;
}

/* Responsive */

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

    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .main-nav {
        font-size: 0.8rem;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-content {
        padding: 4rem 0 3rem;
    }
}

@media (max-width: 600px) {
    .section {
        padding: 3rem 0;
    }

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

    .logo-main {
        height: 44px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}
