* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #0c1838;
    background-color: #dcdcdc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== HEADER & NAVIGATION ==================== */

header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 60px;
    width: auto;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #0c1838;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #0c1838;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: #13aacb;
}

.btn-contato {
    background: #13aacb;
    color: white !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-contato:hover {
    background: #0c1838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(19, 170, 203, 0.3);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease-in-out;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        width: 100%;
    }

    .logo {
        margin: 0;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
    }

    .nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background: #13aacb;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        border-radius: 10px;
        margin-top: 35px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .nav a {
        padding: 15px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        display: block;
    }

    .nav a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .logo-img {
        height: 50px;
    }
}

.hero {
    background: linear-gradient(135deg, #13aacb 0%, #0c1838 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #0c1838;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(19, 170, 203, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(19, 170, 203, 0.4);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #838895;
    margin-bottom: 50px;
}

/* Automations Section */
.automations {
    padding: 80px 0;
    background: #dcdcdc;
}

.automations h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0c1838;
    margin-bottom: 10px;
}

.automation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.automation-text h3 {
    font-size: 1.8rem;
    color: #0c1838;
    margin-bottom: 20px;
}

.automation-text p {
    font-size: 1.1rem;
    color: #6c6c6c;
    margin-bottom: 30px;
    line-height: 1.8;
}

.automation-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

.feature-item i {
    color: #13aacb;
    font-size: 1.2rem;
    width: 25px;
}

.feature-item span {
    font-weight: 500;
    color: #0c1838;
}

.automation-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.automation-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.automation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-icon i {
    font-size: 3rem;
    color: #13aacb;
}

.automation-card h4 {
    font-size: 1.3rem;
    color: #0c1838;
    margin-bottom: 10px;
    font-weight: 600;
}

.automation-card p {
    color: #6c6c6c;
    font-size: 1rem;
}

.google-card {
    border-left: 5px solid #4285F4;
}

.ai-card {
    border-left: 5px solid #13aacb;
    cursor: pointer;
}

.ai-card:hover {
    border-left-color: #0c1838;
}

.ai-details {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-top: 0;
}

.ai-card.expanded .ai-details {
    max-height: 300px;
    margin-top: 20px;
}

.ai-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.ai-feature:last-child {
    border-bottom: none;
}

.ai-feature i {
    color: #13aacb;
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

.ai-feature span {
    font-size: 0.95rem;
    color: #6c6c6c;
    font-weight: 500;
}

.ai-card .card-icon i {
    transition: all 0.3s ease;
}

.ai-card.expanded .card-icon i {
    transform: scale(1.1);
    color: #0c1838;
}

.automation-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-top: 50px;
    touch-action: pan-y; 
    user-select: none; 
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform; 
}

.automation-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.automation-slide.active {
    opacity: 1;
}

.automation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.chatbot-card {
    border-left: 5px solid #25D366;
}

.chatbot-card .card-icon i {
    color: #25D366;
}

.agent-card {
    border-left: 5px solid #9C27B0;
}

.agent-card .card-icon i {
    color: #9C27B0;
}

.cta-automation {
    background: linear-gradient(135deg, #13aacb 0%, #0c1838 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    margin-top: 10px;
}

.cta-automation:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(19, 170, 203, 0.3);
}

.cta-automation i {
    font-size: 1rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    padding: 20px;
}

.slider-indicators {
    display: flex;
    gap: 15px;
}

.indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(19, 170, 203, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #13aacb;
    transform: scale(1.3);
}

.slider-prev,
.slider-next {
    background: #13aacb;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 20px;
}

.slider-prev:hover,
.slider-next:hover {
    background: #0c1838;
    transform: scale(1.1);
}

.slide-titles {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.slide-title {
    font-weight: 600;
    color: #838895;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 10px 20px;
    border-radius: 20px;
}

.slide-title.active {
    color: #13aacb;
    background: rgba(19, 170, 203, 0.1);
}

.slide-titles button {
    border: none;
    padding: 20px;
    background-color: #dcdcdc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-titles button:hover {
    background-color: rgba(19, 170, 203, 0.1);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0c1838;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #13aacb;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #13aacb 0%, #0c1838 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: #0c1838;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
    color: #6c6c6c;
    line-height: 1.6;
}

.benefits-cta {
    text-align: center;
    margin-top: 40px;
}

.benefits-button {
    display: inline-block;
    background: linear-gradient(135deg, #13aacb 0%, #0c1838 100%);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(19, 170, 203, 0.3);
}

.benefits-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(19, 170, 203, 0.4);
}

.support-section {
    background: linear-gradient(135deg, #13aacb 0%, #0c1838 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.support-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.support-section h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.support-section p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.support-cta {
    margin-top: 30px;
}

.support-button {
    display: inline-block;
    background: white;
    color: #0c1838;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid transparent;
}

.support-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: white;
    background: rgba(255, 255, 255, 0.95);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #dcdcdc;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    color: #0c1838;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #6c6c6c;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.whatsapp-button,
.email-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.whatsapp-button {
    background: #25D366;
    color: white;
}

.email-button {
    background: #13aacb;
    color: white;
}

.whatsapp-button:hover,
.email-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #0c1838;
    color: white;
    padding: 30px 0;
    text-align: center;
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 15px;
        padding: 10px 20px;
    }
    
    .nav {
        display: flex;
        flex-direction: row;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav a {
        font-size: 0.9rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 160px 0 80px;
    }
    
    .automation-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px 20px;
    }
    
    .automation-text {
        text-align: center;
    }
    
    .slider-controls {
        flex-direction: row;
        gap: 20px;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin: 0 10px;
        
    }
    
    .slide-titles {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Indicador de swipe para mobile */
    .automation-slider::after {
        /* content: '← Deslize para navegar →'; */
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.8rem;
        z-index: 10;
        animation: slideHint 2s ease-in-out infinite;
    }
    
    @keyframes slideHint {
        0%, 100% { opacity: 0.7; }
        50% { opacity: 1; }
    }
    
    .indicator {
        width: 20px;
        height: 20px;
        margin: 0 5px;
    }
    
    .support-section {
        padding: 60px 0;
    }
    
    .support-section h2 {
        font-size: 2rem;
        line-height: 1.4;
    }
    
    .support-section p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .support-button {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .benefits h2 {
        font-size: 2rem;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cta-automation {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
    }
    
    .slide-titles {
        display: none;
    }
    
    .support-section {
        padding: 50px 0;
    }
    
    .support-section h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .support-section p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .support-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
}
