* {
    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 {
    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);
}

.header {
    background: white;
    color: black;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    width: auto;
    height: 60px;
    object-fit: contain;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: black;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #838895;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.menu-toggle.active {
    transform: rotate(180deg);
}

@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: 0.3s;
        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;
    }

    .hero {
        padding: 60px 20px;
        min-height: 500px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Ajustar imagens de fundo no mobile */
    .hero-bg-img {
        height: 70%;
        opacity: 0.4;
    }

    .hero-bg-1 {
        left: -10%;
    }

    .hero-bg-2 {
        right: -10%;
    }

    .hero-bg-3 {
        opacity: 0.3;
        height: 60%;
        max-width: 300px;
    }

    /* Estilos antigos mobile */
    .header .container {
        justify-content: center;
        position: relative;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
    }

    .nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 200px;
        height: calc(40vh - 70px);
        background: #13aacb;
        flex-direction: column;
        gap: 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;
    }
}

.wave-decoration-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
    overflow: hidden;
    line-height: 0;
}

.wave-decoration-bottom svg {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    bottom: -1px;
}

.wave-decoration-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
    overflow: hidden;
    line-height: 0;
}

.wave-decoration-top svg {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: -1px;
}

/* ==================== HERO SECTION ==================== */

.hero {
    margin-top: 90px;
    padding: 80px 20px;
    background: #0c1838;
    color: white;
    min-height: 650px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Camada de imagens de fundo */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-img {
    position: absolute;
    height: 90%;
    width: auto;
    object-fit: contain;
    opacity: 0.6;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.hero-bg-1 {
    left: 5%;
    bottom: 0;
    animation: floatSlow 8s ease-in-out infinite;
}

.hero-bg-2 {
    right: 8%;
    bottom: 0;
    animation: floatSlow 7s ease-in-out infinite 1s;
}

.hero-bg-3 {
    right: 0;
    bottom: 0;
    transform: none;
    animation: none;
    opacity: 0.5;
    max-width: 500px;
}

/* Overlay gradiente azul por cima das imagens */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 24, 56, 0.85) 0%, rgba(19, 170, 203, 0.75) 100%);
    z-index: 2;
}

/* Wrapper para conteúdo acima de tudo */
.hero-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.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.25rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: white;
    color: #0c1838;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #0c1838;
}

@keyframes floatSlow {
    0%, 100% { 
        transform: translateY(0) translateX(0);
    }
    50% { 
        transform: translateY(-30px) translateX(10px);
    }
}

.highlight {
    color: #13aacb;
    text-shadow: 0 0 20px rgba(19, 170, 203, 0.5);
}

.cta-button {
    display: inline-block;
    background: #13aacb;
    color: white;
    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);
}

.why-us {
    padding: 20px 0 120px 0; 
    background: #dcdcdc;
    position: relative;
}

.why-us-content {
    position: relative;
    z-index: 2;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-content {
    z-index: 3;
    position: relative;
    width: 100%;
}

.text-content h2 {
    font-size: 3.2rem;
    color: #0c1838;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
}

.main-description {
    font-size: 1.3rem;
    color: #6c6c6c;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: left;
}

.problems-list {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #6c6c6c;
    width: 100%;
    justify-content: flex-start;
}

.problem-item i {
    color: #FF4444;
    font-size: 1.2rem;
}

.cta-plans-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    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);
}

.cta-plans-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(19, 170, 203, 0.4);
}

.cta-plans-btn i {
    transition: transform 0.3s ease;
}

.cta-plans-btn:hover i {
    transform: translateX(5px);
}

.text-content > a {
    display: inline-flex;
    margin-top: 20px;
}

.image-content {
    position: relative;
    width: 100%;
    max-width: 400px;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    height: auto;
    max-width: 400px;
    opacity: 0.9;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.solution-section {
    padding: 120px 0 80px 0; 
    background: linear-gradient(135deg, #13aacb 0%, #0c1838 100%);
    position: relative;
}

.solution-section .container {
    position: relative;
    z-index: 2;
}

.solution-section .solution {
    background: transparent;
    padding: 45px;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    border: none;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.solution-section .solution h3 {
    font-size: 2.2rem;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.solution-section .solution > p {
    font-size: 1.2rem;
    color: #FFFFFF;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.models-section {
    margin: 30px 0;
}

.see-models-btn {
    background: white;
    color: #0c1838;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(19, 170, 203, 0.3);
}

.see-models-btn:hover {
    background: #dcdcdc;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(19, 170, 203, 0.4);
}

.see-models-btn i {
    transition: transform 0.3s ease;
}

.see-models-btn.active i {
    transform: rotate(180deg);
}

.models-tabs {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s ease;
}

.models-tabs.show {
    display: grid;
    opacity: 1;
    transform: translateY(0);
}

.model-tab {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.basic-tab {
    border-color: #13aacb;
}

.premium-tab {
    border-color: #0c1838;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.model-tab:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.model-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #13aacb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.5rem;
}

.model-icon.premium {
    background: #0c1838;
}

.model-preview h4 {
    font-size: 1.3rem;
    color: #0c1838;
    margin-bottom: 10px;
}

.model-preview p {
    color: #6c6c6c;
    margin-bottom: 15px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #13aacb;
    display: block;
    margin-bottom: 15px;
}

.premium-tab .price {
    color: #0c1838;
}

.model-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.model-btn.basic {
    background: #13aacb;
    color: white;
}

.model-btn.premium {
    background: #0c1838;
    color: white;
}

.model-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.models-footer {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(13, 156, 62, 0.2);
}

.models-disclaimer {
    font-size: 0.9rem;
    color: #FFFFFF;
    font-style: italic;
    margin-top: 10px;
}

.how-it-works-btn {
    background: white;
    border: none;
    color: #0c1838;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(19, 170, 203, 0.3);
}

.how-it-works-btn:hover {
    background: #dcdcdc;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(19, 170, 203, 0.4);
}

.how-it-works {
    padding: 80px 0;
    background: #dcdcdc;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0c1838;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #838895;
    margin-bottom: 50px;
}

.steps-container {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.step-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 5px solid #13aacb;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.step-header {
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    background: linear-gradient(135deg, #13aacb 0%, #0c1838 100%);
    color: white;
}

.step-number {
    background: white;
    color: #0c1838;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    flex: 1;
}

.expand-icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.step-card.expanded .expand-icon {
    transform: rotate(180deg);
}

.step-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.step-card.expanded .step-content {
    padding: 25px;
    max-height: 300px;
}

.step-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #6c6c6c;
}

.step-content strong {
    color: #13aacb;
    font-weight: 600;
}

.step-content em {
    color: #0c1838;
    font-style: italic;
}

.step-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-content li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #838895;
    font-size: 0.95rem;
}

.step-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #13aacb;
    font-weight: bold;
    font-size: 1.1rem;
}

.plans {
    padding: 80px 0;
    background: linear-gradient(135deg, #13aacb 0%, #0c1838 100%);
}

.plans h2 {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 50px;
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-card.premium {
    border: 3px solid #13aacb;
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #13aacb;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.plan-header h3 {
    font-size: 1.8rem;
    color: #0c1838;
    margin-bottom: 20px;
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 1.2rem;
    color: #838895;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #13aacb;
}

.period {
    display: block;
    color: #838895;
    font-size: 1rem;
    margin-top: 5px;
}

.plan-features ul {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    padding: 8px 0;
    text-align: left;
}

.plan-features i {
    color: #13aacb;
    margin-right: 10px;
}

.plan-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
}

.plan-button {
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
}

.plan-button:not(.secondary) {
    background: #13aacb;
    color: white;
}

.plan-button.secondary {
    background: transparent;
    color: #13aacb;
    border: 2px solid #13aacb;
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.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);
}

.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;
}

.custom-site-trigger {
    text-align: center;
    margin-top: 3rem;
}

.custom-site-btn {
    background: linear-gradient(135deg, #0D9C3E, #0B7D32);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(13, 156, 62, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 auto;
}

.custom-site-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(13, 156, 62, 0.4);
    background: linear-gradient(135deg, #0B7D32, #0D9C3E);
}

.custom-site-btn .toggle-icon {
    transition: transform 0.3s ease;
}

.custom-site-btn.active .toggle-icon {
    transform: rotate(180deg);
}

.custom-site {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 0;
    overflow: hidden;
    max-height: 0;
    transition: all 0.5s ease;
    opacity: 0;
    position: relative;
    z-index: 5;
}

.custom-site.active {
    padding: 80px 0;
    max-height: none;
    opacity: 1;
    z-index: 5;
}

.custom-site-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.custom-site-header h2 {
    font-size: 2.5rem;
    color: #0c1838;
    margin-bottom: 1rem;
    font-weight: 700;
}

.custom-site-subtitle {
    font-size: 1.2rem;
    color: #6c6c6c;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.custom-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    
}

.custom-feature {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;

}

.custom-feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0D9C3E, #0B7D32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.custom-feature h3 {
    font-size: 1.4rem;
    color: #0c1838;
    margin-bottom: 1rem;
    font-weight: 600;
}

.custom-feature p {
    color: #6c6c6c;
    line-height: 1.6;
}

.custom-site-cta {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.custom-site-cta h3 {
    font-size: 1.8rem;
    color: #0D9C3E;
    margin-bottom: 1rem;
    font-weight: 600;
}

.custom-site-cta p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.custom-contact-btn {
    background: linear-gradient(135deg, #0D9C3E, #0B7D32);
    color: white;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(13, 156, 62, 0.3);
}

.custom-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(13, 156, 62, 0.4);
    background: linear-gradient(135deg, #0B7D32, #0D9C3E);
}

@media (max-width: 768px) {
    .custom-site-btn {
        padding: 16px 30px;
        font-size: 1.1rem;
    }
    
    .custom-site-header h2 {
        font-size: 2rem;
    }
    
    .custom-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .custom-feature {
        padding: 1.5rem;
    }
    
    .custom-site-cta {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .custom-site.active {
        position: relative;
        z-index: 1;
    }
    
    .contact {
        margin-top: 0;
        position: static;
        display: block;
        width: 100%;
        transform: none !important;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .whatsapp-button,
    .email-button {
        width: 80%;
        max-width: 300px;
        justify-content: center;
    }
}

.contact {
    padding: 80px 0;
    background: #dcdcdc;
    text-align: center;
    position: static;
    z-index: auto;
    clear: both;
    display: block;
    width: 100%;
}

.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 {
    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: 1px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav a {
        font-size: 0.9rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero {
        margin-top: 100px;
        padding: 160px 0 80px;
    }

    /* Mobile: volta para layout vertical */
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .text-content h2 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .main-description {
        font-size: 1.1rem;
        text-align: center;
    }

    .problems-list {
        align-items: center;
    }

    .problem-item {
        justify-content: center;
    }

    .text-content > a {
        display: flex;
        justify-content: center;
    }
    
    .hero-image {
        max-width: 300px;
    }

    .image-content {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .solution-section .container {
        padding-top: 90px;
    }
    
    .stat-container {
        gap: 20px;
    }
    
    .stat-item p {
        font-size: 1.1rem;
    }
    
    .models-tabs {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .solution {
        padding: 25px;
    }
    
    .solution h3 {
        font-size: 1.5rem;
    }
    
    .plans-container {
        grid-template-columns: 1fr;
    }
    
    .plan-card.premium {
        transform: none;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .whatsapp-button,
    .email-button {
        width: 70%;
        max-width: 280px;
        justify-content: center;
    }
    
    .contact {
        padding: 70px 0;
    }
    
    .step-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .automation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .automation-text {
        text-align: center;
    }
    
    .slider-controls {
        flex-direction: column;
        gap: 20px;
    }
    
    .slide-titles {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .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;
    }
    
    .automation-content {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .why-us-card {
        padding: 25px 15px;
        margin: 0 10px;
        border-radius: 15px;
    }
    
    /* Responsividade para telas pequenas - novo design */
    .text-content h2 {
        font-size: 1.8rem;
    }
    
    .main-description {
        font-size: 1rem;
    }
    
    .problem-item {
        font-size: 0.95rem;
    }
    
    .cta-plans-btn {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .hero-image {
        max-width: 280px;
    }

    .image-content {
        max-width: 280px;
    }

    
    .solution-section .container {
        padding-top: 70px;
    }
    
    .stat-arrow {
        margin-left: 0;
        margin-right: 10px;
    }
    
    .stat-icon {
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
    
    .stat-item p {
        font-size: 1rem;
    }
    
    .solution {
        padding: 20px;
    }
    
    .see-models-btn {
        font-size: 1rem;
        padding: 12px 25px;
    }
    
    .model-tab {
        padding: 20px;
    }
    
    .plans-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .plan-card {
        padding: 30px 20px;
    }

    .automation-slider::after {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    
    .automation-content {
        padding: 20px 15px;
    }
    
    .cta-automation {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
    }
    
    .slide-titles {
        display: none; 
    }
    
    .custom-site-btn {
        padding: 14px 25px;
        font-size: 1rem;
        gap: 10px;
    }
    
    .custom-site-header h2 {
        font-size: 1.8rem;
    }
    
    .custom-site-cta {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .custom-site.active {
        position: static;
        z-index: auto;
    }
    
    .contact {
        padding: 60px 0;
        margin-top: 0;
        position: static;
        z-index: auto;
        transform: none !important;
        display: block;
        width: 100%;
    }
    
    .contact h2 {
        font-size: 2rem;
    }
    
    .whatsapp-button,
    .email-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    animation: modalFadeIn 0.3s ease-out;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 10;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from { 
        transform: translateY(-50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #13aacb 0%, #0c1838 100%);
    color: white;
    border-radius: 20px 20px 0 0;
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-body {
    padding: 40px 30px;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.example-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.example-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.example-card.premium {
    border-color: #0c1838;
    position: relative;
}

.example-preview {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.example-card.premium .example-preview {
    background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 100%);
}

.example-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #13aacb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.example-icon.premium {
    background: #0c1838;
    color: white;
}

.example-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.example-badge.basic {
    background: #13aacb;
    color: white;
}

.example-badge.premium {
    background: #0c1838;
    color: white;
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF4444;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.3);
}

.example-info {
    padding: 30px;
}

.example-info h3 {
    font-size: 1.5rem;
    color: #0c1838;
    margin-bottom: 10px;
    font-weight: 700;
}

.example-info p {
    color: #6c6c6c;
    margin-bottom: 20px;
    line-height: 1.6;
}

.example-info ul {
    list-style: none;
    margin-bottom: 25px;
    padding: 0;
}

.example-info li {
    padding: 8px 0;
    color: #838895;
    display: flex;
    align-items: center;
    gap: 10px;
}

.example-info li i {
    color: #13aacb;
    font-size: 0.9rem;
}

.example-actions {
    display: flex;
    gap: 15px;
}

.example-btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
}

.example-btn.preview {
    background: #13aacb;
    color: white;
}

.example-btn.contact {
    background: transparent;
    color: #13aacb;
    border: 2px solid #13aacb;
}

.example-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.example-btn.preview:hover {
    background: #0c1838;
}

.example-btn.contact:hover {
    background: #13aacb;
    color: white;
}

.modal-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.modal-disclaimer {
    color: #6c6c6c;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-style: italic;
}

.modal-disclaimer i {
    color: #13aacb;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 20px 20px 15px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 30px 20px;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .example-actions {
        flex-direction: column;
    }
    
    .example-preview {
        padding: 20px;
    }
    
    .example-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .example-info {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .wave-decoration-bottom,
    .wave-decoration-top {
        height: 80px;
    }
    
    
    .hero {
        padding: 100px 0 100px 0;
    }
    
    .why-us {
        padding: 20px 0 100px 0;
    }
    
    .solution-section {
        padding: 100px 0 80px 0;
    }
}

@media (max-width: 480px) {
    .wave-decoration-bottom,
    .wave-decoration-top {
        height: 60px;
    }
    
    .hero {
        padding: 80px 0 80px 0;
    }
    
    .why-us {
        padding: 20px 0 80px 0;
    }
    
    .solution-section {
        padding: 80px 0 60px 0;
    }
}

.pages-carousel {
    padding: 80px 0;
    background: white;
    overflow: hidden;
}

.carousel-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 20px;
}

.carousel-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0c1838;
}

.carousel-header p {
    font-size: 1.2rem;
    color: #838895;
}

.carousel-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-card {
    min-width: 100%;
    display: flex;
    align-items: stretch;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-image {
    flex: 1;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Imagem de fundo do card */
.card-bg-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

/* Overlay colorido por cima da imagem */
.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Cores específicas de cada card */
.card-automation .card-overlay {
    background: linear-gradient(135deg, rgba(19, 170, 203, 0.85) 0%, rgba(12, 24, 56, 0.85) 100%);
}

.card-edicao .card-overlay {
    background: linear-gradient(135deg, rgba(12, 24, 56, 0.85) 0%, rgba(19, 170, 203, 0.85) 100%);
}

.card-sites .card-overlay {
    background: linear-gradient(135deg, rgba(19, 170, 203, 0.85) 0%, rgba(108, 108, 108, 0.85) 100%);
}

.card-icon {
    opacity: 0.9;
    position: relative;
    z-index: 3;
}

.card-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    position: relative;
    z-index: 3;
}

.card-content h3 {
    font-size: 2.5rem;
    color: #0c1838;
    margin-bottom: 1.5rem;
}

.card-content p {
    font-size: 1.1rem;
    color: #838895;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.card-features {
    list-style: none;
    margin-bottom: 2rem;
}

.card-features li {
    padding: 0.5rem 0;
    color: #0c1838;
    font-size: 1rem;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #13aacb;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}

.card-btn:hover {
    background: #0c1838;
    transform: translateX(5px);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    z-index: 10;
    color: #0c1838;
}

.carousel-btn:hover {
    background: #13aacb;
    color: white;
    box-shadow: 0 6px 20px rgba(19, 170, 203, 0.4);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dcdcdc;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #13aacb;
    width: 32px;
    border-radius: 6px;
}

.services-section {
    padding: 80px 20px;
    background: #f5f5f5;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0c1838;
}

.section-header p {
    font-size: 1.2rem;
    color: #838895;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 24px rgba(19, 170, 203, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #0c1838;
    margin-bottom: 1rem;
}

.service-card p {
    color: #838895;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0c1838 0%, #13aacb 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #0c1838;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

footer {
    background: #0c1838;
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #838895;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    color: #13aacb;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #838895;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #13aacb;
}

.footer-contact p {
    color: #838895;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #838895;
}

@media (max-width: 768px) {
    .carousel-card {
        flex-direction: column;
    }

    .card-image {
        min-height: 300px;
    }

    /* Ajustar imagem de fundo no mobile */
    .card-bg-image {
        object-fit: contain;
        object-position: bottom center;
    }

    .card-content {
        padding: 30px;
    }

    .card-content h3 {
        font-size: 2rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 450px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    /* Imagens ainda menores em telas pequenas */
    .hero-bg-img {
        height: 55%;
        opacity: 0.3;
    }

    .hero-bg-1 {
        left: -20%;
    }

    .hero-bg-2 {
        right: -20%;
    }

    .card-content {
        padding: 20px;
    }

    .card-content h3 {
        font-size: 1.5rem;
    }

    .carousel-header h2 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}
