/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0f57fb;
    --primary-dark: #21252f;
    --secondary: #313c4d;
    --text: #484c50;
    --light-bg: #f3f7ff;
    --white: #ffffff;
    --dark-blue: #243673;
    --header-blue: #0f57fb;
    --gradient: linear-gradient(135deg, #0f57fb 0%, #243673 100%);
    --success: #25D366;
    --danger: #ff6b6b;
}

body {
    font-family: 'Work Sans', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header com fundo azul */
.header {
    background: var(--header-blue);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    /* padding: 15px 0; */
    margin-bottom: -100%;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    padding: 10px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo img {
    max-width: 180px;
    height: auto;
    transition: all 0.3s ease;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
    padding: 8px 0;
    position: relative;
    font-size: 16px;
}

.nav a:hover,
.nav a.active {
    color: var(--white);
}

.nav a.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
}

.btn-whatsapp {
    background: var(--white);
    color: var(--primary);
    padding: 9px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: 2px solid transparent;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-whatsapp:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    padding: 5px;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    transition: background 0.3s;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: var(--dark-blue);
    color: var(--white);
    margin-top: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero h1 {
    font-size: 42px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-image {
    border-radius: 20px;
    overflow: visible;
    perspective: 1500px;
    position: relative;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    transform-style: preserve-3d;
    backface-visibility: visible;
}

/* BOTÕES - CORREÇÃO IMPORTANTE */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--primary);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
    font-family: 'Poppins', sans-serif;
}

/* Botão na seção Hero (fundo azul) */
.hero .btn {
    background: var(--white);
    color: var(--primary);
}

.hero .btn:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Botão na seção Sobre (fundo branco) */
.sobre .btn {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.sobre .btn:hover {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(15, 87, 251, 0.1);
}

/* Botão na seção Serviços (fundo claro) */
.servicos .btn {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
}

.servicos .btn:hover {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(15, 87, 251, 0.1);
}

/* Botão WhatsApp flutuante sempre azul */
.btn-whatsapp:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* Seções */
section {
    padding: 100px 0;
}

h2 {
    font-size: 35px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}

/* Seção Sobre */
.sobre .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-image {
    border-radius: 15px;
    overflow: visible;
    perspective: 1500px;
    position: relative;
    z-index: 1;
}

.sobre-img {
    width: 100%;
    height: auto;
    display: block;
    transform-style: preserve-3d;
    backface-visibility: visible;
}

.sobre-content h2 {
    text-align: left;
    margin-bottom: 25px;
}

.sobre-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text);
}

/* ============================================
   ANIMAÇÕES SUAVES E BONITAS PARA AS DUAS PRIMEIRAS IMAGENS
   SEM GIRO COMPLETO
   ============================================ */

/* Classe para animar imagens - animação contínua suave */
.imagem-animada {
    animation: flutuarSuave 6s ease-in-out infinite;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    transform-style: preserve-3d;
    backface-visibility: visible;
}

/* Keyframes da animação contínua de flutuação suave */
@keyframes flutuarSuave {
    0%, 100% {
        transform: translateY(0) rotate(0) scale(1) translateZ(0);
    }
    25% {
        transform: translateY(-15px) rotate(0.5deg) scale(1.01) translateZ(5px);
    }
    50% {
        transform: translateY(8px) rotate(-0.5deg) scale(0.99) translateZ(-3px);
    }
    75% {
        transform: translateY(-10px) rotate(0.3deg) scale(1.005) translateZ(3px);
    }
}

/* EFEITOS HOVER SUAVES E ELEGANTES */
.hero-img.imagem-animada,
.sobre-img.imagem-animada {
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}



/* Animação específica para cada imagem */
.hero-img.imagem-animada {
    animation: flutuarSuave 5s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sobre-img.imagem-animada {
    animation: flutuarSuave 6s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Seção Serviços */
.servicos {
    background: var(--light-bg);
}

.servicos h2 {
    color: var(--primary);
    margin-bottom: 50px;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 320px;
}

.servico-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 87, 251, 0.15);
}

.servico-icon-container {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 87, 251, 0.1) 0%, rgba(15, 87, 251, 0.05) 100%);
    border-radius: 10px 10px 0 0;
    margin-bottom: 20px;
}

.servico-icon-main {
    font-size: 80px;
    color: var(--primary);
    transition: all 0.5s ease;
}

.servico-card:hover .servico-icon-main {
    transform: scale(1.2) rotate(10deg);
    color: var(--danger);
}

.servico-desc {
    padding: 0 25px 15px;
    text-align: center;
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
    border-bottom: 1px solid rgba(15, 87, 251, 0.1);
    margin-bottom: 15px;
}

.servico-card > h3 {
    color: var(--primary);
    margin: 25px 25px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
}

.servico-card > h4 {
    color: var(--primary);
    margin: 25px 25px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 19px;
}

.servico-card ul {
    list-style: none;
    padding: 0 25px 25px;
    margin-top: auto;
}

.servico-card li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.servico-card li i {
    color: var(--primary);
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.servico-card:hover li i {
    transform: scale(1.2);
    color: var(--success);
}

.text-center {
    text-align: center;
    margin-top: 50px;
}

/* Seção Tecnologias */
.tecnologias {
    background: var(--primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.tecnologias h2 {
    color: var(--white);
    margin-bottom: 40px;
}

.tecnologias-container {
     width: 100%; 
    margin: 0 auto; 
     padding: 0 20px;
     margin-bottom: -5rem;
}
.tecnologia-img {
    margin-bottom: 5rem !important;
    margin-top: 5rem !important;
    display: block;
    width: 150%;
    max-width: 1600px;
    height: auto;
/* margin-bottom: -5%; */
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.tecnologias-desc {
    text-align: center;
    max-width: 1000%;
    /* margin: 30px auto 0; */
    font-size: 17px;
    line-height: 1.7;
    color: var(--white);
    padding: 0 20px;
    opacity: 0.9;
}

.tecnologias::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
    z-index: 0;
}

.tecnologias .container {
    position: relative;
    z-index: 1;
}


@media (max-width: 768px) {

    .tecnologias-container {
        margin-bottom: 0;
    }

    .tecnologia-img {
        margin-top: 0;
        margin-bottom: 0;
        width: 450%;
        max-width: 450%;
        left: 0;
        transform: none;
    }

    .tecnologias h2 {
        margin-bottom: 20px;
        position: relative;
        z-index: 2;
    }
}





/* Seção Parceiros */
.parceiros {
    background: var(--white);
    padding: 100px 0;
    position: relative;
}

.parceiros h2 {
    color: var(--primary);
    margin-bottom: 50px;
}

.parceiros-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.parceiro-card {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 87, 251, 0.1);
}

.parceiro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(15, 87, 251, 0.1);
    border-color: rgba(15, 87, 251, 0.2);
}

.parceiro-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.parceiro-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(0);
    transition: transform 0.5s ease;
}

.parceiro-img1 {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: invert(1) brightness(1.2) contrast(1.4);
    transition: transform 0.5s ease;
}
.parceiro-card:hover .parceiro-img {
    transform: scale(1.05);
}

.parceiro-info h3 {
    color: var(--secondary);
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.parceiro-info p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.parceiros-desc {
    text-align: center;
    max-width: 800px;
    margin: 50px auto 0;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text);
    padding: 0 20px;
}

.parceiros::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(15, 87, 251, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(15, 87, 251, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.parceiros .container {
    position: relative;
    z-index: 1;
}

/* Efeito de borda gradiente para parceiros */
.parceiro-card {
    position: relative;
}

.parceiro-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 16px;
    background: linear-gradient(45deg, var(--primary), transparent, var(--primary));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.parceiro-card:hover::before {
    opacity: 0.3;
}
/* Seção CTA */
.cta {
    background: var(--gradient);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255,255,255,0.1) 0%, transparent 50%);
    z-index: 0;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 36px;
}

.cta > p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contatos CTA */
.cta-contatos {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.contato-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contato-item i:first-child {
    font-size: 40px;
    color: var(--white);
    opacity: 0.9;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: 2px solid transparent;
    font-family: 'Poppins', sans-serif;
    min-width: 200px;
    justify-content: center;
}

/* Botão WhatsApp */
.cta .btn-large {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
}

.cta .btn-large:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

/* Botão Email */
.btn-email {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-email:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.contato-info {
    color: var(--white);
    font-size: 16px;
    opacity: 0.9;
    margin-top: 5px;
}

.cta-observacao {
    font-size: 16px;
    color: var(--white);
    opacity: 0.8;
    font-style: italic;
    margin-top: 20px;
}

/* Responsivo CTA */
@media (max-width: 768px) {
    .cta {
        padding: 80px 0;
    }
    
    .cta h2 {
        font-size: 28px;
    }
    
    .cta-contatos {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .btn-large {
        min-width: 250px;
        padding: 16px 30px;
    }
}

@media (max-width: 480px) {
    .cta h2 {
        font-size: 24px;
    }
    
    .btn-large {
        min-width: 100%;
        max-width: 300px;
    }
    
    .contato-info {
        font-size: 14px;
    }
    
    .cta-observacao {
        font-size: 14px;
    }
}
/* Footer */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height : 3px;
    background: var(--primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-col a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-col .logo img {
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-col p i {
    margin-right: 10px;
    color: var(--primary);
    width: 20px;
}

.social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s;
}

.social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(15, 87, 251, 0.3);
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--success);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Efeito de onda do WhatsApp */
@keyframes wave {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: wave 2s infinite;
}

/* Compensação para o header fixo */
section[id] {
    scroll-margin-top: 100px;
}

/* Responsivo para ícones */
@media (max-width: 768px) {
    .servico-icon-container {
        height: 150px;
    }
    
    .servico-icon-main {
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    .servico-icon-container {
        height: 120px;
    }
    
    .servico-icon-main {
        font-size: 50px;
    }
}

/* Responsivo para animações APENAS NAS DUAS PRIMEIRAS IMAGENS */
@media (max-width: 768px) {
    .hero-img.imagem-animada,
    .sobre-img.imagem-animada {
        animation-duration: 8s !important;
    }
    
    .hero-img.imagem-animada:hover,
    .sobre-img.imagem-animada:hover {
        transform: translateY(-5px) scale(1.02) translateZ(10px);
        box-shadow: 0 20px 40px rgba(15, 87, 251, 0.2);
    }
}

/* Responsivo */
@media (max-width: 1200px) {
    .tecnologias-imagem-dupla {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero .container,
    .sobre .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .sobre-content h2 {
        text-align: center;
    }
    
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        background: var(--header-blue);
        width: 100%;
        padding: 30px 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        transition: left 0.3s;
        height: calc(100vh - 80px);
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .nav a {
        font-size: 18px;
        padding: 12px;
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav a:last-child {
        border-bottom: none;
    }
    
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
        /* max-width: 500px; */
        margin-left: auto;
        margin-right: auto;
    }
    
    .tecnologias-imagem-dupla {
        flex-direction: column;
    }
    
    .tecnologia-img {
        width: 100%;
    }
    
    .parceiros-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-col h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        height: 50px;
        font-size: 20px;
    }
    
    .logo img {
        max-width: 150px;
    }
    
    .btn-ctc{
          padding: 12px;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;
    }



    .btn-whatsapp span {
        display: none;
    }
    






    .btn-whatsapp {
        padding: 12px;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        justify-content: center;
    }
}



.ctc1 {
    display: none;
}


@media (max-width: 1024px) {
    .btn-whatsapp {
        display: none !important;
    }
}


@media (max-width: 1024px) {
    .btn-ctc {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .btn-ctc1 {
        display: none !important;
    }
}



@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .cta {
        padding: 60px 0;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        border-radius: 50%;

    }
}








/* ============================================
   SEÇÃO AUTOMAÇÃO
   ============================================ */

.automacao {
    background: linear-gradient(135deg, #f8faff 0%, #f0f5ff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.automacao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(15, 87, 251, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(15, 87, 251, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.automacao .container {
    position: relative;
    z-index: 1;
}

.automacao-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.automacao-header h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 38px;
}

.automacao-subtitle {
    font-size: 18px;
    color: var(--text);
    line-height: 1.8;
    opacity: 0.9;
}

/* Grid de Cards de Automação */
.automacao-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.automacao-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(15, 87, 251, 0.08);
    border: 1px solid rgba(15, 87, 251, 0.1);
    position: relative;
    overflow: hidden;
}

.automacao-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #4dabf7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.automacao-card:hover::before {
    opacity: 1;
}

.automacao-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(15, 87, 251, 0.15);
    border-color: rgba(15, 87, 251, 0.2);
}

.automacao-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(15, 87, 251, 0.1) 0%, rgba(15, 87, 251, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.automacao-card:hover .automacao-icon {
    background: linear-gradient(135deg, var(--primary), #4dabf7);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.automacao-card h3 {
    color: var(--primary-dark);
    font-size: 22px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.automacao-card p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.9;
}

.automacao-features {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0;
}

.automacao-features li {
    margin-bottom: 12px;
    padding-left: 5px;
    font-size: 14px;
    color: var(--text);
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.automacao-features li i {
    color: var(--success);
    margin-right: 10px;
    margin-top: 3px;
    font-size: 14px;
    flex-shrink: 0;
}

/* Seção Benefícios */
.automacao-beneficios {
    background: var(--white);
    border-radius: 20px;
    padding: 60px;
    margin-bottom: 60px;
    box-shadow: 0 20px 40px rgba(15, 87, 251, 0.08);
    border: 1px solid rgba(15, 87, 251, 0.1);
}

.beneficios-header {
    text-align: center;
    margin-bottom: 50px;
}

.beneficios-header h3 {
    color: var(--primary);
    font-size: 32px;
    margin-bottom: 15px;
}

.beneficios-header p {
    color: var(--text);
    font-size: 18px;
    opacity: 0.8;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.beneficio-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(15, 87, 251, 0.03) 0%, rgba(15, 87, 251, 0.01) 100%);
    transition: all 0.3s ease;
    border: 1px solid rgba(15, 87, 251, 0.05);
}

.beneficio-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(15, 87, 251, 0.08) 0%, rgba(15, 87, 251, 0.04) 100%);
    border-color: rgba(15, 87, 251, 0.1);
    box-shadow: 0 10px 25px rgba(15, 87, 251, 0.1);
}

.beneficio-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), #4dabf7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.beneficio-item h4 {
    color: var(--primary-dark);
    font-size: 18px;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.beneficio-item p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* CTA Automação */
.automacao-cta {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, rgba(15, 87, 251, 0.05) 0%, rgba(15, 87, 251, 0.02) 100%);
    border-radius: 20px;
    border: 2px dashed rgba(15, 87, 251, 0.2);
}

.automacao-cta h3 {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 15px;
}

.automacao-cta p {
    color: var(--text);
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-automacao {
    background: linear-gradient(135deg, var(--primary), #4dabf7);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(15, 87, 251, 0.3);
}

.btn-automacao:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(15, 87, 251, 0.4);
    background: linear-gradient(135deg, #0e4fd8, #3a9ef8);
    color: white;
}

/* Responsivo para Automação */
@media (max-width: 1200px) {
    .automacao-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .automacao-header h2 {
        font-size: 32px;
    }
    
    .automacao-beneficios {
        padding: 40px;
    }
    
    .automacao-cta {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .automacao {
        padding: 80px 0;
    }
    
    .automacao-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .automacao-beneficios {
        padding: 30px;
    }
    
    .automacao-cta {
        padding: 30px;
    }
    
    .automacao-cta h3 {
        font-size: 24px;
    }
    
    .automacao-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .automacao-header h2 {
        font-size: 28px;
    }
    
    .automacao-subtitle {
        font-size: 16px;
    }
    
    .automacao-card {
        padding: 25px 20px;
    }
    
    .beneficios-header h3 {
        font-size: 26px;
    }
    
    .btn-automacao {
        padding: 15px 25px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}


.modal-contato {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-box {
  background: var(--dark-blue);
  width: 100%;
  max-width: 420px;
  padding: 30px 25px 25px;
  border-radius: 12px;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
  animation: modalFade .25s ease;
}

.modal-box h3 {
  margin-bottom: 20px;
}

.modal-box .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 10px 0;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--danger);
  line-height: 1;
}

.modal-close:hover {
  opacity: .6;
}

@keyframes modalFade {
  from {
    opacity: 0;
    transform: scale(.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}



.modal-contato1 {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-box1 {
  background: var(--dark-blue);
  width: 100%;
  max-width: 420px;
  padding: 30px 25px 25px;
  color: var(--light-bg);
  border-radius: 12px;
  position: relative;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,.25);
  animation: modalFade .25s ease;
}

.modal-box1 h3 {
  margin-bottom: 20px;
}

/* Botões do modal */
.modal-box1 .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 10px 0;
}

/* WhatsApp */
/* .btn-whatsapp1 {
  background: #25d366;
  color: #fff;
}

/* Email */
/* .btn-email1 {
  background: #3b82f6;
  color: #fff;
} */ */

.modal-close1 {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--danger);
}

.modal-close1:hover {
  opacity: .6;
}

.btn-whatsapp1 {
    background: var(--white);
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: 2px solid transparent;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-whatsapp1:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}



.btn-ctc {
    background: var(--white);
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: 2px solid transparent;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-ctc:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}