:root {
    --bg-color: #0b0c10;
    --surface-color: #1a1b22;
    --surface-hover: #262833;
    --primary-color: #d4af37; /* Gold */
    --primary-glow: rgba(212, 175, 55, 0.3);
    --secondary-color: #45f3ff; /* Neon blue */
    --text-color: #e0e0e0;
    --text-muted: #9aa0a6;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}
/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1.2;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    gap: 10px;
    border: 1px solid transparent;
}
.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    box-shadow: 0 4px 15px var(--primary-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-glow);
    background-color: #e5be49;
}
.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
.btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}
.btn-outline:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
}
.btn-block {
    width: 100%;
    margin-top: 24px;
}
.btn-whatsapp {
    background-color: #25D366;
    color: white;
}
.btn-whatsapp:hover {
    background-color: #1ebe5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}
.btn-silver {
    background: linear-gradient(135deg, #c0c0c0, #e8e8e8);
    color: #000;
    font-weight: 700;
}
.btn-silver:hover {
    background: linear-gradient(135deg, #d0d0d0, #f0f0f0);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,255,255,0.15);
}
.btn-premium {
    background: linear-gradient(135deg, var(--secondary-color), #2d88ff);
    color: #fff;
    box-shadow: 0 4px 15px rgba(69, 243, 255, 0.3);
}
.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(69, 243, 255, 0.5);
}
/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(11, 12, 16, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}
.logo span {
    color: var(--primary-color);
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}
.nav-links a:hover {
    color: var(--primary-color);
}
/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    overflow: hidden;
    background: var(--bg-color);
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0.35;
    z-index: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(11,12,16,0.5) 0%,
        rgba(11,12,16,0.3) 50%,
        rgba(11,12,16,1) 100%
    );
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeUp 1s ease-out forwards;
}
.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero h1 span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}
.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-inline: auto;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}
/* About Section */
.about {
    padding: 100px 5%;
    background-color: var(--bg-color);
}
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}
.about-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}
.about-text .features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.about-text .features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 500;
}
.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}
.about-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 20px var(--primary-glow);
}
/* Prova Social */
.social-proof {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 5%;
    text-align: center;
}
.social-proof h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #fff;
}
.social-proof-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.social-proof-grid img {
    width: 260px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: var(--transition);
}
.social-proof-grid img:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
@media (max-width: 768px) {
    .social-proof-grid {
        flex-direction: column;
        align-items: center;
    }
    .social-proof-grid img {
        width: 100%;
        max-width: 340px;
    }
}

/* Pricing Section */
.pricing {
    padding: 100px 5%;
    background: linear-gradient(180deg, var(--bg-color) 0%, #111218 100%);
}
.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}
.pricing-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}
.pricing-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.card {
    background: rgba(26, 27, 34, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    backdrop-filter: blur(20px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.card:hover {
    transform: translateY(-10px);
    background: var(--surface-hover);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}
.card .price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}
.card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}
.card .desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
    min-height: 45px;
}
.card .features {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.card .features li {
    position: relative;
    padding-left: 28px;
    font-size: 0.95rem;
    color: #ccc;
}
.card .features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
}
/* Popular Card */
.card.popular {
    border-color: var(--primary-color);
    background: rgba(26, 27, 34, 0.9);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}
.card.popular:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}
.card.popular .badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: #000;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 6px 16px;
    border-bottom-left-radius: 16px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.card.premium .price {
    color: var(--secondary-color);
}
.card.premium .features li::before {
    color: var(--secondary-color);
}
/* Portfolio Section */
.portfolio {
    padding: 100px 5%;
    background-color: var(--bg-color);
}
.portfolio-header {
    text-align: center;
    margin-bottom: 40px;
}
.portfolio-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}
.portfolio-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Tabs */
.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}
.tab-btn {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 28px;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.1);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}
.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.tab-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}

/* Tab Content */
.tab-content {
    display: none;
    max-width: 860px;
    margin: 0 auto;
}
.tab-content.active {
    display: block;
}

/* Video responsivo */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* Produções grid */
.producoes-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 860px;
    margin: 0 auto;
}
/* Lead Form Section */
.lead-section {
    padding: 100px 5%;
    background: linear-gradient(180deg, var(--bg-color) 0%, #111218 100%);
}
.lead-header {
    text-align: center;
    margin-bottom: 50px;
}
.lead-header h2 {
    font-size: 3rem;
    margin-bottom: 16px;
}
.lead-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}
.lead-container {
    max-width: 650px;
    margin: 0 auto;
    background: #ffffff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    transition: var(--transition);
}
.lead-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px var(--primary-glow);
}
/* CTA Section */
.cta-section {
    padding: 100px 5%;
    text-align: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(69, 243, 255, 0.05));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.cta-section p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
}
/* Footer */
footer {
    padding: 40px 5%;
    background-color: #050508;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.footer-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}
/* Botão flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float svg {
    width: 30px;
    height: 30px;
    color: #fff;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6);
}

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s all ease-out;
}
.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}
/* Setas carrossel */
.pricing-arrows {
    display: none;
}
@media (max-width: 768px) {
    .pricing-arrows {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin-bottom: 16px;
    }
    .arrow-btn {
        background: rgba(255,255,255,0.08);
        border: 1.5px solid rgba(255,255,255,0.15);
        color: var(--primary-color);
        font-size: 1.2rem;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    .arrow-btn:hover {
        background: var(--primary-color);
        color: #000;
        border-color: var(--primary-color);
    }
    .arrow-hint {
        font-size: 0.75rem;
        color: var(--text-muted);
        font-family: var(--font-body);
    }
}

/* Carrossel mobile - Pacotes */
@media (max-width: 768px) {
    .pricing-cards {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding: 10px 24px 20px;
        scrollbar-width: none;
        grid-template-columns: unset;
    }
    .pricing-cards::-webkit-scrollbar {
        display: none;
    }
    .card {
        flex: 0 0 82vw;
        max-width: 340px;
        scroll-snap-align: center;
    }
    .card.popular {
        transform: scale(1);
    }
    /* Indicadores de paginação */
    .pricing-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }
    .pricing-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255,255,255,0.2);
        transition: all 0.3s ease;
        cursor: pointer;
    }
    .pricing-dot.active {
        background: var(--primary-color);
        width: 24px;
        border-radius: 4px;
    }
}
@media (min-width: 769px) {
    .pricing-dots {
        display: none;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    .card.popular {
        transform: scale(1);
    }
    .card.popular:hover {
        transform: translateY(-10px);
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .navbar .btn-outline {
        display: none;
    }
    .navbar {
        justify-content: center;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
}
