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

:root {
    --purple-dark: #6B46C1;
    --purple-medium: #8B5CF6;
    --purple-light: #A78BFA;
    --pink-dark: #EC4899;
    --pink-medium: #F472B6;
    --pink-light: #FBCFE8;
    --bg-dark: #0F0F0F;
    --bg-darker: #050505;
    --text-light: #FFFFFF;
    --text-gray: #E5E7EB;
    --text-gray-dark: #9CA3AF;
    --gradient-primary: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    --gradient-secondary: linear-gradient(135deg, #6B46C1 0%, #F472B6 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo h1 span {
    font-weight: 800;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav a:hover {
    color: var(--purple-light);
}

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

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.7) 0%, rgba(15, 15, 15, 0.9) 100%);
    z-index: 1;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-container > div,
.vimeo-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 56.25% 0 0 0;
}

/* Mobile - vídeo ocupa toda altura */
@media (max-width: 768px) {
    .vimeo-wrapper {
        padding: 0 !important;
        height: 100% !important;
        width: 100% !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
    }
    .video-container {
        height: 100% !important;
    }
    .video-container iframe {
        height: 100% !important;
        width: 100% !important;
    }
}

.video-container iframe {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Desktop - mantém proporção 16:9 */
@media (min-width: 769px) {
    .vimeo-wrapper {
        padding: 56.25% 0 0 0 !important;
    }
    
    .video-container iframe {
        width: 100% !important;
        height: 100% !important;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--purple-medium);
}

.btn-secondary:hover {
    background: var(--purple-medium);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Sobre Section */
.sobre {
    background: var(--bg-darker);
}

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

.feature-card {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--purple-medium);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Planos Section */
.planos {
    background: var(--bg-dark);
}

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

.plano-card {
    background: rgba(139, 92, 246, 0.05);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.plano-card:hover {
    transform: translateY(-10px);
    border-color: var(--purple-medium);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.4);
}

.plano-destaque {
    border-color: var(--purple-medium);
    background: rgba(139, 92, 246, 0.1);
    transform: scale(1.05);
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.5);
}

.plano-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.plano-preco {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.moeda {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

.valor {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.periodo {
    font-size: 1rem;
    color: var(--text-gray);
    margin-top: 1.5rem;
}

.economia {
    color: #10B981;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.plano-beneficios {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.plano-beneficios li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.plano-beneficios li:last-child {
    border-bottom: none;
}

.info-telas {
    text-align: center;
    color: var(--purple-light);
    font-size: 0.9rem;
    margin-top: 1rem;
    padding: 0.8rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    font-weight: 500;
}

.btn-plano {
    width: 100%;
    margin-top: 1.5rem;
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.btn-plano:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
}

.btn-plano-destaque {
    background: var(--gradient-secondary);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);
}

.btn-plano-destaque:hover {
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.6);
}

/* Contato Section */
.contato {
    background: var(--bg-darker);
}

.contato-content {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.contato-card {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    transition: all 0.3s ease;
}

.contato-card:hover {
    transform: translateY(-5px);
    border-color: var(--purple-medium);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.contato-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.contato-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contato-card p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--purple-light);
}

.footer-contato p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-contato a {
    color: var(--purple-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-contato a:hover {
    color: var(--pink-medium);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    color: var(--text-gray-dark);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
        margin-top: 60px;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 2rem;
    }

    .hero-content {
        padding: 1rem 1.2rem;
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 100%;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.4;
    }

    .section-title {
        font-size: 2rem;
    }

    .nav {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .planos-grid {
        grid-template-columns: 1fr;
    }

    .plano-destaque {
        transform: scale(1);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .valor {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }

    .btn {
        width: 100%;
        max-width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .vimeo-wrapper {
        padding: 0 !important;
        height: 100% !important;
        width: 100% !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
    }

    .video-container {
        height: 100% !important;
        width: 100% !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
    }

    .video-container iframe {
        width: 100% !important;
        height: 100% !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        object-fit: cover !important;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(15, 15, 15, 0.3) 0%, rgba(15, 15, 15, 0.7) 50%, rgba(15, 15, 15, 0.95) 100%);
    }
}

@media (max-width: 480px) {
    .hero {
        height: 100vh !important;
        min-height: 100vh !important;
        max-height: 100vh !important;
        margin-top: 60px;
        padding-bottom: 1.5rem;
        position: relative;
    }

    .hero-content {
        padding: 0.8rem 1rem;
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 0.4rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }

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

    .logo h1 {
        font-size: 1.5rem;
    }

    .nav {
        display: none;
    }

    .vimeo-wrapper {
        padding: 0 !important;
        height: 100% !important;
        width: 100% !important;
    }

    .video-container {
        height: 100% !important;
    }

    .video-container iframe {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
    }

    .hero-buttons {
        gap: 0.5rem;
    }

    .btn {
        max-width: 100%;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(15, 15, 15, 0.2) 0%, rgba(15, 15, 15, 0.6) 50%, rgba(15, 15, 15, 0.95) 100%);
    }

    .info-telas {
        font-size: 0.85rem;
        padding: 0.6rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.plano-card,
.contato-card {
    animation: fadeInUp 0.6s ease-out;
}

