:root {
    --purple: #9271FF; /* Roxo do topo do logo */
    --light-purple: #BCA8FF; /* Versão clara do roxo */
    --blue: #38B6FF; /* Azul da parte inferior do logo */
    --light-blue: #99DAFF; /* Versão clara do azul */
    --green: #FF6EB5; /* Mantendo o verde original para detalhes */
    --dark: #333333; /* Mantendo o dark original */
    --light: #f5f5f5; /* Mantendo o light original */
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar personalizado */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--blue), var(--purple));
    border-radius: 10px;
}



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



/* Hero Section com animação */
.hero {
    padding: 50px 0 30px;
    position: relative;
    overflow: hidden;
}

.hero {
    padding: 50px 0 30px;
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5; /* Cor sólida */
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.2;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--blue));
    border-radius: 2px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 40px;
    animation: fadeInUp 1.2s ease-out;
}

.video-wrapper {
    flex: 1;
    max-width: 600px;
    animation: fadeInRight 1.5s ease-out;
}

.video-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: var(--dark);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.video-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

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

.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(56, 182, 255, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--purple), var(--blue));
    transition: all 0.4s ease;
    z-index: -1;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(56, 182, 255, 0.4);
}

.btn:hover::before {
    left: 0;
}

/* Seção de recursos */
.features {
    padding: 100px 0;
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), 
                url('https://via.placeholder.com/1920x1080') center/cover no-repeat;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 70px;
    color: var(--dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--blue));
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, var(--light-blue) 0%, transparent 100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-15px);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
    color: white;
    font-size: 28px;
    box-shadow: 0 10px 20px rgba(56, 182, 255, 0.3);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Pricing Section Aprimorada */
.pricing {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: var(--light-purple);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 0;
}

.pricing::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--light-blue);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 0;
}

.pricing-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    padding: 50px 30px;
    width: 100%;
    max-width: 350px;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, var(--blue), var(--purple));
}

.pricing-card.featured::before {
    background: var(--green);
}

.pricing-card:hover {
    transform: translateY(-15px);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: none;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    z-index: 2;
}

.pricing-card.featured::after {
    content: 'Mais completo';
    position: absolute;
    top: 30px;
    right: -35px;
    background: var(--green);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(45deg);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.pricing-card .price {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: var(--purple);
    position: relative;
    display: inline-block;
}

.pricing-card .price span {
    font-size: 1.2rem;
    font-weight: normal;
    color: #888;
    position: relative;
    top: -20px;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.pricing-card ul li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card ul li::before {
    content: '✓';
    color: var(--green);
    margin-right: 10px;
    font-weight: bold;
    background: rgba(102, 204, 153, 0.1);
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.featured .btn {
    background: linear-gradient(135deg, var(--green), var(--blue));
}

.featured .btn::before {
    background: linear-gradient(135deg, var(--blue), var(--green));
}

/* Seção de depoimentos */
.testimonials {
    padding: 100px 0;
    background: white;
    position: relative;
}

.testimonial-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 40px;
    margin: 20px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 100px;
    color: var(--light-purple);
    line-height: 1;
    opacity: 0.3;
    z-index: 0;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 20px;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--dark);
}

.author-info p {
    color: #888;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before,
.cta::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta::before {
    top: -150px;
    left: -100px;
}

.cta::after {
    bottom: -150px;
    right: -100px;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta .btn {
    background: white;
    color: var(--blue);
}

.cta .btn:hover {
    color: var(--purple);
}

/* Footer Moderno */
footer {
    background-color: var(--dark);
    color: white;
    padding: 80px 0 40px;
    position: relative;
}

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

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--green);
}

.footer-column p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--green);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--green);
    transform: translateY(-5px);
}

.bottom-footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsividade Aprimorada */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h1::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .video-wrapper {
        max-width: 100%;
    }
    
    .video-container {
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-container {
        position: relative;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: linear-gradient(135deg, var(--blue), var(--purple));
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    nav ul li a {
        font-size: 1.2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .pricing-card {
        max-width: 90%;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-15px);
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-card,
    .feature-card {
        padding: 30px 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.partner-logo {
    height: 40px;
    display: flex;
    align-items: center;
}

.partner-logo img {
    max-height: 100%;
    width: auto;
}

/* Ajustes para responsividade */
@media (max-width: 768px) {
    .logo-container {
        gap: 10px;
    }
    
    .partner-logo {
        height: 30px;
    }
}

/* Estilos para a seção de FAQ com efeito accordion */
.faq {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark);
    background: white;
    position: relative;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    border-left-color: var(--purple);
    background: linear-gradient(90deg, rgba(146, 113, 255, 0.05), transparent);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-icon {
    transition: all 0.3s ease;
    color: var(--purple);
    font-size: 0.9rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 25px;
    color: #555;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding-top: 0;
    padding-bottom: 25px;
}

.faq-answer p, .faq-answer ul {
    margin-top: 0;
}

.faq-answer ul {
    padding-left: 20px;
    list-style-type: none;
}

.faq-answer ul li {
    margin-bottom: 10px;
    position: relative;
}

.faq-answer strong {
    color: var(--blue);
}

/* Estilização especial para emojis em lista */
.faq-answer ul li:first-child {
    margin-top: 15px;
}

/* Responsividade */
@media (max-width: 768px) {
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-question, .faq-answer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .faq-item.active .faq-answer {
        padding-bottom: 20px;
    }
}