/* Reset e Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0066ff;
    --primary-dark: #0052cc;
    --secondary-color: #ff6b00;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f5f7fa;
    --bg-white: #ffffff;
    --border-color: #e1e5e9;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --green-color: #00dd52;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

.btn-large {
    padding: 14px 28px;
    font-size: 1.1rem;
}

.btn-text {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.btn-text:hover {
    text-decoration: underline;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    line-height: 1.3;
}

p {
    margin-bottom: 15px;
}

/* Header */
.header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

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

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
}

.logo span {
    color: var(--primary-color);
}

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

.main-nav a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

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

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--bg-white);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 4px;
    top: 100%;
    left: 0;
    padding: 10px 0;
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-login {
    font-weight: 500;
}

.btn-login:hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

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

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Automação Section */
.automation {
    background-color: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
}

.automation-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.highlight-text {
    font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
}

.automation-image img {
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Vídeo Demonstrativo Section */
.video-demo {
    background-color: var(--bg-light);
    padding: 100px 0;
}

.video-demo .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.video-demo .section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.video-demo .section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.video-demo-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.video-demo-container iframe {
    display: block;
}

/* Preços Section */
.pricing {
    background-color: var(--bg-white);
    padding: 100px 0;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.toggle-label {
    font-size: 1rem;
    font-weight: 500;
    margin: 0 10px;
}

.discount {
    background-color: var(--secondary-color);
    color: white;
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 20px;
    margin-left: 5px;
}

.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: #ccc;
    transition: .4s;
}

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

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

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-color);
}

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

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

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

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

.pricing-plan {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 40px 30px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-plan.popular {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-plan.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

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

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.plan-price {
    margin-bottom: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.price.annual {
    display: none;
}

.plan-header p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.plan-features ul {
    margin-bottom: 30px;
}

.plan-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.plan-features i {
    color: var(--success-color);
    margin-right: 10px;
}

.plan-cta {
    text-align: center;
}

.plan-cta .btn-primary {
    width: 100%;
}

/* Quando o toggle está ativado (anual) */
body.annual-pricing .price.monthly {
    display: none;
}

body.annual-pricing .price.annual {
    display: block;
}

/* Números Section */
.numbers {
    background-color: var(--bg-light);
    text-align: center;
}

.numbers h2 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
}

.numbers h2 .gradient-text-blue,
.numbers h2 .gradient-text-green {
    font-size: 2rem;
}

.numbers > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    background-color: var(--bg-white);
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item h3 span {
    font-size: 2rem;
    margin-left: 5px;
}

.stat-item p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-detail {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Depoimentos Section */
.testimonials {
    background-color: var(--bg-white);
    padding-bottom: 120px;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto 30px;
    min-height: 200px;
    overflow: hidden;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
    padding: 20px 30px;
    transform: translateX(50px);
    pointer-events: none;
    z-index: 1;
}

.testimonial-item.active {
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 10;
    display: block !important;
}

.testimonial-quote {
    display: block;
    font-size: 1.4rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.5;
}

.testimonial-author {
    margin-top: 15px;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
}

.testimonial-controls {
    position: relative;
    z-index: 5;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.prev-btn, .next-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-light);
}

.prev-btn:hover, .next-btn:hover {
    color: var(--primary-color);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.cta-container {
    text-align: center;
}

.cta-container h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Features Section */
.features {
    background-color: var(--bg-light);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.feature-item {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.feature-item h4 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.feature-item img {
    margin-top: 30px;
    border-radius: 6px;
}

.ecosystem {
    text-align: center;
}

.ecosystem h2 {
    font-size: 2rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.video-container {
    background-color: var(--primary-color);
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-btn {
    background-color: var(--bg-white);
    color: var(--primary-color);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.play-btn i {
    font-size: 1.2rem;
}

/* Integração Section */
.integration {
    text-align: center;
}

.integration h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.integration p {
    max-width: 700px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
}

.integration-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.integration-logos img {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.integration-logos img:hover {
    opacity: 1;
}

/* Jornada Section */
.journey {
    background-color: var(--bg-light);
}

.journey-header {
    text-align: center;
    margin-bottom: 60px;
}

.journey-header h2 {
    font-size: 2.2rem;
}

.journey-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.journey-step {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.journey-step h3 {
    margin-top: 10px;
    font-size: 1.4rem;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 80px 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

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

.scroll-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.scroll-top:hover {
    color: var(--primary-color);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    z-index: 9999;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
}

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

.btn-hide, .btn-settings {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.feature-item, .journey-step, .stat-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-item.animate, .journey-step.animate, .stat-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Adicionar atraso para criar efeito em cascata */
.feature-item:nth-child(2), .journey-step:nth-child(2), .stat-item:nth-child(2) {
    transition-delay: 0.2s;
}

.feature-item:nth-child(3), .journey-step:nth-child(3), .stat-item:nth-child(3) {
    transition-delay: 0.4s;
}

.feature-item:nth-child(4), .journey-step:nth-child(4), .stat-item:nth-child(4) {
    transition-delay: 0.6s;
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .feature-grid, .journey-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    
    .pricing-plans {
        gap: 20px;
    }
    
    .pricing-plan {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 15px 0;
        z-index: 999;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
    
    .main-nav ul li {
        width: 100%;
    }
    
    .main-nav a {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 3;
    }
    
    .header-buttons {
        flex: 1;
        justify-content: flex-end;
        gap: 10px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .feature-grid, .journey-steps {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .pricing-plans {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-plan, .pricing-plan.popular {
        max-width: 100%;
        width: 100%;
        transform: none;
    }
    
    .pricing-plan:hover, .pricing-plan.popular:hover {
        transform: translateY(-5px);
    }
    
    .video-demo-container iframe {
        height: 380px;
    }
    
    .testimonial-quote {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .numbers h2 {
        font-size: 1.5rem;
    }
    
    .numbers h2 .gradient-text-blue,
    .numbers h2 .gradient-text-green {
        font-size: 1.7rem;
    }
    
    .testimonial-slider {
        min-height: 250px; /* Aumentar altura para telas menores */
    }
    
    .testimonial-dots {
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    /* Espaçamento do conteúdo */
    .automation-content, .video-demo-content, .numbers, .testimonials, .ecosystem, .integration {
        margin-top: 20px;
    }
    
    /* Ajustes para imagens responsivas */
    .hero-image img, .automation-image img, .numbers img {
        width: 100%;
        height: auto;
        border-radius: 6px;
        margin: 0 auto;
        display: block;
    }
    
    /* Melhorar visualização de imagens maiores */
    .numbers img {
        margin-top: 20px;
        margin-bottom: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }
    
    /* Espaçamento na seção de automação */
    .automation-content p {
        margin-bottom: 20px;
    }
    
    /* Ajuste para o popup de visitantes em telas muito pequenas */
    @media (max-width: 360px) {
        .visitors-popup {
            max-width: 150px;
            font-size: 0.75rem;
        }
        
        .visitors-popup .visitor-icon {
            width: 20px;
            height: 20px;
            margin-right: 6px;
        }
    }
    
    /* Correção para vídeo responsivo */
    .video-demo-container {
        position: relative;
        padding-bottom: 56.25%; /* Proporção 16:9 */
        height: 0;
        overflow: hidden;
        max-width: 100%;
    }
    
    .video-demo-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    
    /* Garantir que todas as seções sejam exibidas em mobile */
    .features, .journey, .numbers, .ecosystem, .automation, .video-demo, .integration, .testimonials {
        display: block;
        opacity: 1;
        transform: none;
    }
    
    .feature-grid, .journey-steps {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 30px;
    }
    
    .feature-item, .journey-step, .stat-item, .testimonial-item {
        opacity: 1;
        transform: none;
        transition: none;
        display: block;
        padding: 20px 15px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .hero-tagline {
        font-size: 1.5rem !important;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    section {
        padding: 40px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .hero-image img {
        max-width: 90%;
        margin: 0 auto;
        display: block;
    }
    
    .pricing-plan, .footer-top, .footer-bottom {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-col ul {
        font-size: 0.95rem;
    }
    
    .plan-features li {
        font-size: 1rem;
    }
    
    .footer-col {
        margin-bottom: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .pricing-plan {
        margin-bottom: 24px;
    }
    
    .video-demo-container iframe {
        height: 240px;
    }
    
    /* Ajustes nos cabeçalhos e textos */
    .section-header {
        margin-bottom: 25px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .feature-highlight {
        font-size: 1.3rem !important;
        margin-bottom: 15px !important;
    }
    
    p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Ajustes específicos para visitantes popup */
    .visitors-popup {
        bottom: 10px;
        left: 10px;
        padding: 8px 10px;
        font-size: 0.8rem;
        max-width: 170px;
    }
    
    .visitors-popup .visitor-icon {
        width: 24px;
        height: 24px;
        margin-right: 8px;
    }
    
    /* Melhora no toggle de preços */
    .pricing-toggle {
        margin-bottom: 25px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Melhoras nos cards de preços */
    .pricing-plan {
        padding: 20px 15px;
    }
    
    /* Ajuste para botões de CTA */
    .cta-container {
        padding: 20px 10px;
    }
    
    .cta-container h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .cta-container .btn-primary {
        width: 100%;
    }
    
    /* Ajustes para footer */
    .footer {
        text-align: center;
    }
    
    .footer-col h3, .footer-col h4 {
        margin-bottom: 15px;
    }
    
    .address-info {
        font-size: 0.85rem !important;
    }
    
    .testimonial-slider {
        padding: 10px 0;
    }
    
    .testimonial-quote {
        font-size: 0.95rem;
        line-height: 1.4;
        padding: 5px;
    }
    
    .testimonial-controls {
        margin-top: 15px;
        margin-bottom: 20px;
    }
    
    .prev-btn, .next-btn {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f5f5f5;
        border-radius: 50%;
        color: var(--primary-color);
    }
    
    /* Estilo para planos de preços em mobile */
    .pricing-plan {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .pricing-plan:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    
    .pricing-plan.popular {
        border-color: var(--primary-color);
    }
    
    .popular-tag {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .custom-tag {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    /* Melhorias para seções em cascata */
    section + section {
        padding-top: 20px;
    }
    
    /* Ajuste para elementos empilhados */
    .journey-steps .journey-step:not(:last-child) {
        margin-bottom: 15px;
    }
    
    .numbers h2 {
        font-size: 1.3rem;
        line-height: 1.5;
    }
    
    .numbers h2 .gradient-text-blue,
    .numbers h2 .gradient-text-green {
        font-size: 1.5rem;
    }
    
    .testimonial-slider {
        min-height: 340px; /* Altura suficiente para o conteúdo em telas pequenas */
    }
    
    .testimonial-quote {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .testimonial-author strong {
        font-size: 1rem;
    }
    
    .testimonial-author span {
        font-size: 0.8rem;
    }
    
    .testimonial-controls {
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .prev-btn, .next-btn {
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    .testimonial-item {
        padding: 10px;
    }
    
    .testimonial-content {
        padding: 0 5px;
    }
}

/* Ajuste específico para tablets entre 481px e 768px */
@media (min-width: 481px) and (max-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
    }
    
    .btn-primary, .btn-secondary {
        width: auto;
    }
    
    .pricing-plans {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pricing-plan.custom-plan {
        grid-column: span 2;
    }
}

.nav-ebook::after {
    content: 'Novo';
    position: absolute;
    top: -12px;
    right: -15px;
    background-color: #ff3366;
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 10px;
    font-weight: bold;
}

.nav-custom {
    color: #0066ff !important;
    font-weight: 600 !important;
    position: relative;
}

.nav-custom::after {
    content: 'Novo';
    position: absolute;
    top: -12px;
    right: -15px;
    background-color: #ff3366;
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 10px;
    font-weight: bold;
}

/* Botões do Hero */
.btn-secondary.btn-large {
    padding: 15px 30px;
    font-size: 16px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    color: #0066ff;
    border: 2px solid #0066ff;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-outline:hover {
    background-color: #0066ff;
    color: white;
    transform: translateY(-2px);
}

.btn-outline.btn-large {
    padding: 15px 30px;
    font-size: 16px;
}

/* Alinhamento perfeito do popup de visitantes */
.visitors-popup {
    display: flex;
    align-items: center;
}
.visitors-popup .visitor-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-right: 10px;
    flex-shrink: 0;
}
.visitors-popup .visitor-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    vertical-align: middle;
}
.visitors-popup .visitor-info {
    display: flex;
    align-items: center;
}
.visitors-popup .visitor-info p {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

/* Garantir visibilidade das features e jornada */
.feature-item, .journey-step, .journey, .journey-header {
    opacity: 1 !important;
    transform: none !important;
}

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

/* Botão de Atendimento */
.btn-primary i.fab.fa-whatsapp {
    font-size: 1.2em;
    margin-right: 5px;
}

@media (max-width: 768px) {
    /* Ajustes específicos para header em dispositivos móveis */
    .header {
        padding: 12px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    
    .logo img {
        max-height: 36px;
    }
    
    .btn-primary[style*="border-radius: 12px"] {
        border-radius: 8px !important;
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f5f5f5;
        border-radius: 50%;
        transition: background-color 0.3s;
    }
    
    .mobile-menu-toggle:hover {
        background-color: #e5e5e5;
    }
    
    /* Transiçao suave para menu mobile */
    .main-nav {
        transition: all 0.3s ease-in-out;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
}

/* Ajustes para tela de rotação do dispositivo */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 20px 0;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .hero-tagline {
        font-size: 1.2rem !important;
        margin-bottom: 10px !important;
    }
    
    .hero-content p {
        margin-bottom: 15px;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 10px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    section {
        padding: 25px 0;
    }
    
    .section-header {
        margin-bottom: 20px;
    }
    
    /* Ocultando temporariamente o popup em modo paisagem em telas pequenas */
    .visitors-popup {
        display: none !important;
    }
}

.testimonial-content {
    height: 100%;
    width: 100%;
    position: relative;
}

@media (max-width: 768px) {
    .testimonial-item {
        position: absolute;
        width: 100%;
        height: 100%;
    }
    
    .testimonial-quote {
        font-size: 1.2rem;
        max-height: none;
        overflow: visible;
    }
}

@media (max-width: 480px) {
    .testimonial-slider {
        min-height: 340px; /* Altura suficiente para o conteúdo em telas pequenas */
    }
    
    .testimonial-quote {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .testimonial-item {
        padding: 10px;
    }
    
    .testimonial-content {
        padding: 0 5px;
    }
    
    /* Melhorar controles para mobile */
    .prev-btn, .next-btn {
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    /* Adicionar separação clara entre os botões e o conteúdo */
    .testimonial-controls {
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
}

/* Garantir que os depoimentos não se sobreponham */
.testimonial-item.active {
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Estilos adicionados da página index.html */
.btn-secondary.btn-large {
    background-color: var(--green-color);
    color: white;
}

.btn-secondary.btn-large:hover {
    background-color: #00c048;
}

.hero-tagline {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    color: #0066ff;
    margin-bottom: 20px;
    display: block;
    line-height: 1.2;
}

.pricing-plan.custom-plan {
    border: 2px solid var(--green-color);
    position: relative;
}

.custom-tag {
    position: absolute;
    top: -12px;
    right: 15px;
    background-color: var(--green-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.custom-highlight {
    font-weight: 700;
    color: var(--primary-color);
}

.numbers img {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.price.monthly .from-text, 
.price.annual .from-text {
    font-size: 0.9rem;
    font-weight: normal;
    opacity: 0.7;
    display: block;
    margin-bottom: 5px;
}

.plan-features .highlight {
    font-weight: 600;
    color: var(--primary-color);
}

.gradient-text-blue {
    background: linear-gradient(135deg, #0066ff, #00a3ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.gradient-text-green {
    background: linear-gradient(135deg, #0066ff, #00dd52);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

/* Estilos para texto destacado em azul similar ao hero-tagline */
.feature-highlight {
    font-family: 'Caveat', cursive;
    font-size: 1.7rem;
    color: #0066ff;
    margin-bottom: 20px;
    display: block;
    line-height: 1.2;
}

/* Correção para os botões terem o mesmo estilo */
.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    border-radius: 12px;
    padding: 12px 25px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-buttons .btn-primary:hover,
.hero-buttons .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.btn-primary i, .btn-secondary i {
    font-size: 1.1rem;
}

/* Ajuste para títulos */
.section-header h2, section h2 {
    font-size: 2.2rem;
    line-height: 1.3;
}

/* Popup de visitantes */
.visitors-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 12px;
    z-index: 1000;
    display: flex;
    align-items: center;
    max-width: 200px;
    animation: fadeInUp 0.5s ease forwards;
    font-size: 0.85rem;
    backdrop-filter: blur(4px);
}

.visitors-popup .visitor-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
}

.visitors-popup .visitor-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.visitors-popup .visitor-info {
    flex-grow: 1;
}

.visitors-popup strong {
    color: #0066ff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

.visitors-popup.hide {
    animation: fadeOutDown 0.5s ease forwards;
}

/* Centralização de texto em mobile */
@media (max-width: 768px) {
    .hero-content, 
    .section-header, 
    .automation-content,
    .video-demo .container,
    .numbers .container,
    .feature-item,
    .ecosystem,
    .integration .container,
    .journey-header {
        text-align: center;
    }
    
    /* Exceções para não centralizar */
    .pricing-plans,
    .footer-top,
    .footer-bottom {
        text-align: left;
    }
    
    /* Ajustes para os botões no hero em mobile */
    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 90%;
        max-width: 280px;
    }
    
    .hero-buttons .btn-primary {
        margin-bottom: 15px;
    }
}

/* Alterar cor de fundo da hero section */
.hero {
    background-color: #e5edff;
}

/* Remover sombreamento da imagem na seção de automação */
.automation-image img {
    box-shadow: none;
}

/* Estilo para o texto anual */
.annual-note {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 5px;
    line-height: 1.2;
    opacity: 0.8;
} 