/* Estilos Gerais */
:root {
    --primary-color: #845dbc;
    --primary-dark: #6a4a97;
    --primary-light: #a17fd0;
    --secondary-color: #ff6b6b;
    --text-color: #333333;
    --text-light: #666666;
    --background-light: #f9f7ff;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray: #e0e0e0;
    --shadow: 0 5px 20px rgba(132, 93, 188, 0.1);
    --transition: all 0.3s ease;
    --success-color: #4CAF50;
}

/* Estilos para a seção de Planos */
.pricing {
    padding: 100px 0;
    background-color: var(--background-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(132, 93, 188, 0.2);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    padding: 30px 20px;
    text-align: center;
    background-color: var(--white);
    border-bottom: 1px solid var(--gray);
}

.pricing-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.8rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.pricing-fee {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.pricing-price {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.pricing-price span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-right: 5px;
}

.pricing-price h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.pricing-description {
    font-size: 0.95rem;
    color: var(--text-color);
}

.pricing-features {
    padding: 30px 20px;
    flex-grow: 1;
}

.pricing-features ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.pricing-features ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1rem;
    margin-top: 3px;
}

.pricing-cta {
    padding: 0 20px 30px;
    text-align: center;
}

/* Estilos para o Popup */
.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup.show {
    display: block;
    opacity: 1;
}

.popup-content {
    background-color: var(--white);
    margin: 15% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-50px);
    opacity: 0;
    transition: all 0.5s ease;
}

.popup.show .popup-content {
    transform: translateY(0);
    opacity: 1;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--text-light);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-popup:hover {
    color: var(--primary-color);
}

.popup-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.popup h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.popup p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(132, 93, 188, 0.2);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #ff5252;
    border-color: #ff5252;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 15px 0;
    transition: var(--transition);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
}

.nav ul {
    display: flex;
}

.nav ul li {
    margin-left: 30px;
}

.nav ul li a {
    font-weight: 500;
    position: relative;
}

.nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav ul li a:hover:after {
    width: 100%;
}

.cta-button-small .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.cta-button {
    margin-top: 40px;
}

.cta-note {
    font-size: 0.9rem;
    margin-top: 10px;
    color: var(--text-light);
    font-style: italic;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.avatar-image {
    max-width: 70%;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.hero-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: var(--primary-light);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(132, 93, 188, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--background-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background-color: var(--background-light);
}

.steps {
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50px;
    width: 100px;
    height: 2px;
    background-color: var(--primary-light);
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* About Us Section */
.about-us {
    padding: 80px 0;
    background-color: var(--background-light);
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(135deg, rgba(132, 93, 188, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.about-us::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--primary-light);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 1;
    animation: pulse 10s ease-in-out infinite alternate;
}

.about-us::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--primary-light);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 1;
    animation: pulse 8s ease-in-out infinite alternate-reverse;
}

.about-content {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.about-text {
    max-width: 1000px;
    text-align: center;
    background: linear-gradient(to right, rgba(255,255,255,0.9), rgba(255,255,255,0.95), rgba(255,255,255,0.9));
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(132, 93, 188, 0.15);
    border-top: 4px solid var(--primary-color);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.about-text::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    opacity: 0.1;
    border-radius: 50%;
    z-index: 0;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.7;
    letter-spacing: 0.2px;
    text-align: left;
    font-weight: 400;
    position: relative;
    padding: 0 10px;
    max-height: 250px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-light) var(--gray-light);
    border-left: 3px solid rgba(132, 93, 188, 0.2);
    transition: var(--transition);
}

.about-text p:hover {
    border-left: 3px solid var(--primary-color);
    background-color: rgba(132, 93, 188, 0.05);
}

.about-text p::-webkit-scrollbar {
    width: 6px;
}

.about-text p::-webkit-scrollbar-track {
    background: var(--gray-light);
    border-radius: 10px;
}

.about-text p::-webkit-scrollbar-thumb {
    background-color: var(--primary-light);
    border-radius: 10px;
}

.about-text p:first-of-type {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-dark);
    grid-column: 1 / -1;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 2px dashed rgba(132, 93, 188, 0.2);
    margin-bottom: 20px;
}

.about-text p:first-of-type::first-letter {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    float: left;
    margin-right: 8px;
    line-height: 1;
    text-shadow: 1px 1px 1px rgba(132, 93, 188, 0.3);
}

.about-text .tagline {
    font-weight: 700;
    color: var(--white);
    font-size: 1.3rem;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(132, 93, 188, 0.3);
    background-color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-block;
    grid-column: 1 / -1;
    transform: translateY(5px);
    box-shadow: 0 5px 15px rgba(132, 93, 188, 0.3);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: var(--background-light);
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    background-color: var(--background-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(132, 93, 188, 0.15);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    position: relative;
    padding: 0 20px;
}

.testimonial-content p:before,
.testimonial-content p:after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-light);
    position: absolute;
}

.testimonial-content p:before {
    left: 0;
    top: -10px;
}

.testimonial-content p:after {
    right: 0;
    bottom: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info h4 {
    font-weight: 600;
    color: var(--primary-color);
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Waitlist Section */
.waitlist {
    padding: 100px 0;
    background-color: var(--background-light);
}

.waitlist .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.waitlist-content {
    flex: 1;
    max-width: 600px;
}

.waitlist-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.waitlist-content p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.waitlist-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(132, 93, 188, 0.2);
}

.waitlist-form .btn {
    width: 100%;
}

.waitlist-note {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

.waitlist-note i {
    color: var(--primary-color);
    margin-right: 5px;
}

.waitlist-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.counter {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(132, 93, 188, 0.3);
    animation: float 6s ease-in-out infinite;
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.counter-text {
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(135deg, rgba(132, 93, 188, 0.8) 0%, rgba(132, 93, 188, 1) 100%);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--primary-light);
    opacity: 0.2;
    border-radius: 50%;
    z-index: 1;
    animation: pulse 10s ease-in-out infinite alternate;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: var(--primary-light);
    opacity: 0.2;
    border-radius: 50%;
    z-index: 1;
    animation: pulse 8s ease-in-out infinite alternate-reverse;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta-content p {
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-section .btn {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    position: relative;
    z-index: 2;
}

.cta-section .btn:hover {
    background-color: transparent;
    color: var(--white);
}

/* Footer */
.footer {
    background-color: #2c2142;
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo {
    max-width: 300px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-links-column h4 {
    margin-bottom: 20px;
    position: relative;
}

.footer-links-column h4:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-light);
    bottom: -8px;
    left: 0;
}

.footer-links-column ul li {
    margin-bottom: 10px;
}

.footer-links-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links-column ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .steps {
        flex-direction: column;
        gap: 50px;
    }
    
    .step:not(:last-child):after {
        top: auto;
        bottom: -25px;
        right: auto;
        left: 50%;
        width: 2px;
        height: 50px;
        transform: translateX(-50%);
    }
    
    .about-text {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-text p {
        max-height: none;
        overflow-y: visible;
    }
    
    .waitlist .container {
        flex-direction: column;
        gap: 50px;
    }
    
    .waitlist-content {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-logo {
        text-align: center;
        margin: 0 auto;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        align-items: center;
    }
    
    .logo {
        margin-bottom: 15px;
        text-align: center;
    }
    
    .nav {
        order: 2;
        width: 100%;
        margin: 15px 0;
    }
    
    .nav ul {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav ul li {
        margin: 5px 15px;
    }
    
    .cta-button-small {
        order: 3;
        margin-top: 10px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 50px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .waitlist-content h2 {
        font-size: 1.8rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .footer-links-column {
        text-align: center;
    }
    
    .footer-links-column h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links-column ul li a:hover {
        padding-left: 0;
    }
    
    .about-text {
        padding: 20px 15px;
    }
}