/* Base Styles */
:root {
    --primary-color: #6c5ce7;
    --primary-dark: #5a49d8;
    --secondary-color: #2d3436;
    --light-color: #f5f6fa;
    --gray-color: #dfe6e9;
    --dark-gray: #636e72;
    --success-color: #00b894;
    --warning-color: #fdcb6e;
    --danger-color: #d63031;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--secondary-color);
    line-height: 1.6;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--gray-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: relative;
    background-color: white;
    box-shadow: var(--shadow-sm);
    z-index: 100;
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

@media (min-width: 768px) {
    .logo img {
        height: 60px;
    }
}

/* Ocultar navegação em dispositivos móveis */
@media (max-width: 767px) {
    .nav {
        display: none;
    }
}

.nav ul {
    display: flex;
    gap: 30px;
}

.nav a {
    font-weight: 500;
    position: relative;
}

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

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

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

.header-buttons {
    display: flex;
    gap: 15px;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    background-color: var(--light-color);
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero p {
    font-size: 20px;
    color: var(--dark-gray);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.floating-emojis {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.emoji {
    position: absolute;
    opacity: 0;
    animation: float 10s infinite ease-in-out;
}

.emoji-1 { top: 10%; left: 10%; animation-delay: 0s; }
.emoji-2 { top: 20%; left: 80%; animation-delay: 1s; }
.emoji-3 { top: 80%; left: 15%; animation-delay: 2s; }
.emoji-4 { top: 40%; left: 70%; animation-delay: 3s; }
.emoji-5 { top: 65%; left: 5%; animation-delay: 4s; }
.emoji-6 { top: 75%; left: 60%; animation-delay: 5s; }
.emoji-7 { top: 35%; left: 30%; animation-delay: 6s; }
.emoji-8 { top: 90%; left: 90%; animation-delay: 7s; }
.emoji-9 { top: 5%; left: 40%; animation-delay: 8s; }
.emoji-10 { top: 45%; left: 10%; animation-delay: 9s; }
.emoji-11 { top: 30%; left: 85%; animation-delay: 10s; }
.emoji-12 { top: 60%; left: 40%; animation-delay: 11s; }

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateY(-40px) rotate(20deg);
        opacity: 0;
    }
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--light-color);
}

.features h2, .section-subtitle {
    text-align: center;
}

.features h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 50px;
}

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

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-emoji {
    font-size: 60px;
    display: block;
    margin-bottom: 20px;
    line-height: 1;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--dark-gray);
}

.more-features {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Integrations Section */
.integrations {
    padding: 80px 0;
    text-align: center;
}

.integrations h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.integrations p {
    font-size: 18px;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto 20px;
}

.integrations-more {
    font-weight: 600;
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-color);
}

.testimonials h2, .testimonials .section-subtitle {
    text-align: center;
}

.testimonials h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

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

.testimonial-slide {
    display: none;
    padding: 40px;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* Guarantee Section */
.guarantee {
    padding: 80px 0;
    background-color: white;
}

.guarantee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-badge {
    width: 200px;
    height: auto;
}

.guarantee-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.guarantee-text p {
    font-size: 18px;
    color: var(--dark-gray);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: var(--light-color);
}

.pricing h2, .pricing .section-subtitle {
    text-align: center;
}

.pricing h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.pricing-cards {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .pricing-cards {
        flex-wrap: wrap;
    }
}

.pricing-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    width: 100%;
    max-width: 350px;
    border: 1px solid var(--gray-color);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.pricing-features {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pricing-card.highlight {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.popular-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 5px;
}

.price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--dark-gray);
}

.price-total {
    text-align: center;
    color: var(--dark-gray);
    margin-bottom: 5px;
}

.price-save {
    text-align: center;
    color: var(--success-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-features {
    margin: 25px 0;
}

.pricing-features li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.pricing-features {
    margin: 25px 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pricing-card .btn {
    width: 100%;
    margin-top: 20px;
}
.pricing {
    padding: 80px 0;
    background-color: var(--light-color);
}

.pricing h2, .pricing .section-subtitle {
    text-align: center;
}

.pricing h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.toggle-option {
    font-weight: 500;
    cursor: pointer;
}

.toggle-option.active {
    color: var(--primary-color);
    font-weight: 600;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-color);
    transition: var(--transition);
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: var(--transition);
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.pricing-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    width: 100%;
    max-width: 400px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.price {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
}

.price span {
    font-size: 18px;
    font-weight: 400;
}

.price-total, .price-save {
    text-align: center;
    margin-bottom: 5px;
    font-size: 16px;
}

.price-save {
    color: var(--success-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-features {
    margin: 30px 0;
}

.pricing-features li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.pricing-card .btn {
    width: 100%;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq h2, .faq .section-subtitle {
    text-align: center;
}

.faq h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

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

.faq-item {
    border-bottom: 1px solid var(--gray-color);
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    position: relative;
    list-style: none;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    width: 100%;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    position: absolute;
    right: 0;
}

details[open] .faq-question::after {
    content: '-';
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease-in-out;
}

details[open] .faq-answer {
    padding: 0 0 20px 0;
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-in-out;
}

details.faq-item {
    border-bottom: 1px solid var(--gray-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

details.faq-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

details.faq-item summary {
    list-style: none;
    transition: all 0.3s ease;
}

details.faq-item summary:hover h3 {
    color: var(--primary-color);
}

details.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-answer p {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 30px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.footer-contact {
    text-align: center;
    margin-bottom: 20px;
}

.footer-contact p {
    margin-bottom: 10px;
    color: var(--gray-color);
}

.footer-privacy h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--light-color);
    text-align: center;
}

.footer-privacy ul {
    list-style: none;
    padding: 0;
}

.footer-privacy ul li {
    margin-bottom: 10px;
    color: var(--gray-color);
    text-align: center;
}

.footer-company {
    text-align: center;
    color: var(--gray-color);
}

.footer-company p {
    margin-bottom: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    justify-content: center;
}

.social-link {
    color: var(--gray-color);
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.social-link:hover {
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer-links {
        justify-content: space-between;
    }
    
    /* Ajuste responsivo para a logo maior */
    .logo img {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav ul {
        gap: 20px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    /* Ajuste responsivo para a logo maior */
    .logo img {
        height: 80px;
    }
}

@media (max-width: 576px) {
    .nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .header-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .header-buttons .btn {
        width: 100%;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .guarantee-badge {
        width: 150px;
    }
    
    .guarantee-text h2 {
        font-size: 28px;
    }
    
    .social-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Ajuste responsivo para a logo maior */
    .logo img {
        height: 60px;
    }
}
