/* Variáveis Globais */
:root {
    --primary-color: #00B2FF;
    --secondary-color: #00E6FF;
    --accent-color: #0077B6;
    --text-color: #FFFFFF;
    --background-dark: #0A0A0A;
    --background-light: #101820;
    --gradient-primary: linear-gradient(135deg, #00E6FF 0%, #00B2FF 60%, #0077B6 100%);
}

/* Reset e Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0a0a0a;
    color: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Cursor Personalizado */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s ease;
}

/* Navegação */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.navbar-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    width: 100%;
}

.logo img {
    height: 40px;
    display: block;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Seção Hero */
.hero {
    width: 100vw;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}

.hero-content {
    width: 45vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-center h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    max-width: 100%;
    word-break: break-word;
}

.hero-sub {
    font-size: 1.25rem;
    color: #eaf6fb;
    margin-bottom: 2.2rem;
    font-weight: 400;
    max-width: 90%;
}

.hero-form-mini {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 2.5rem;
    width: 100%;
    max-width: 1100px;
}

.nome-group { flex: 0 0 20%; min-width: 120px; }
.telefone-group {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    position: relative;
    flex: 0 0 50%;
    min-width: 200px;
}
.cta-button-mini {
    flex: 0 0 20%;
    min-width: 160px;
    margin-top: 0;
    padding: 0.9rem 1.5rem;
    font-size: 1.1rem;
    white-space: nowrap;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 2px 12px 0 rgba(0,183,255,0.10);
    font-family: 'Poppins', sans-serif;
}
.cta-button-mini:hover {
    background: #00B2FF;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}
.input-prefixo {
    width: 56px;
    min-width: 48px;
    max-width: 64px;
    padding: 0.8rem 0.5rem;
    border: 1px solid #00B2FF;
    border-radius: 18px 0 0 18px;
    font-size: 1rem;
    background: rgba(0,183,255,0.08);
    color: #fff;
    outline: none;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}
.input-prefixo:focus {
    border: 1.5px solid #00E6FF;
    background: rgba(0,230,255,0.10);
}
.telefone-group input[type="tel"] {
    flex: 1 1 auto;
    padding: 0.8rem 1rem;
    border: 1px solid #00B2FF;
    border-radius: 0 30px 30px 0;
    font-size: 1rem;
    background: rgba(0,183,255,0.08);
    color: #fff;
    outline: none;
    font-family: 'Poppins', sans-serif;
}
.telefone-group input[type="tel"]:focus {
    border: 1.5px solid #00E6FF;
    background: rgba(0,230,255,0.10);
}
.hero-form-mini input[type="text"],
.hero-form-mini input[type="tel"] {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #00B2FF;
    border-radius: 24px;
    font-size: 1rem;
    outline: none;
    background: rgba(0,183,255,0.08);
    color: #fff;
    transition: border 0.2s, background 0.2s;
    font-family: 'Poppins', sans-serif;
}
.hero-form-mini input[type="text"]::placeholder,
.hero-form-mini input[type="tel"]::placeholder {
    color: #b6eaff;
    opacity: 1;
}
.hero-form-mini input[type="text"]:focus,
.hero-form-mini input[type="tel"]:focus {
    border: 1.5px solid #00E6FF;
    background: rgba(0,230,255,0.10);
}
.clientes-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 6rem;
}
.logo-cliente {
    opacity: 0.35;
    transition: opacity 0.2s;
    height: 48px;
    width: 120px;
    object-fit: contain;
}
.logo-cliente:hover { opacity: 0.6; }
@media (max-width: 900px) {
    .hero-form-mini { max-width: 98vw; gap: 0.7rem; }
    .nome-group, .telefone-group, .cta-button-mini { min-width: 0; }
    .clientes-logos { gap: 1rem; }
}
@media (max-width: 700px) {
    .hero-form-mini { flex-direction: column; gap: 0.7rem; max-width: 98vw; }
    .nome-group, .telefone-group, .cta-button-mini { width: 100%; flex: 1 1 100%; }
    .cta-button-mini { min-width: 0; }
    .clientes-logos { flex-wrap: wrap; gap: 0.7rem; }
    .logo-cliente { width: 90px; height: 36px; }
}

/* Seção Institucional */
.institucional {
    background: #fff;
    padding: 60px 0 40px 0;
}
.institucional-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.institucional h2 {
    color: #00B2FF;
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 10px;
}
.opa-highlight {
    color: #00E6FF;
}
.institucional-sub {
    color: #222;
    font-size: 1.1rem;
    margin-bottom: 40px;
}
.institucional-cards {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.institucional-card {
    background: #f7fbfd;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,183,255,0.08);
    padding: 32px 24px 24px 24px;
    flex: 1 1 260px;
    min-width: 240px;
    max-width: 340px;
    text-align: left;
    margin-bottom: 20px;
    transition: box-shadow 0.3s, transform 0.3s;
}
.institucional-card:hover {
    box-shadow: 0 8px 32px 0 rgba(0,183,255,0.16);
    transform: translateY(-6px) scale(1.03);
}
.icon-institucional {
    font-size: 2.1rem;
    color: #00B2FF;
    margin-bottom: 18px;
}
.institucional-card h3 {
    color: #222;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.institucional-card p {
    color: #444;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Seções de Serviços */
.servicos-ia, .servicos-marketing {
    background: #0a0a0a;
    padding: 48px 0 32px 0;
}
.servicos-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.servicos-ia h2, .servicos-marketing h2 {
    color: #00E6FF;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.servicos-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.servico-card {
    background: #181f2a;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,183,255,0.10);
    padding: 32px 24px 24px 24px;
    flex: 1 1 300px;
    min-width: 260px;
    max-width: 340px;
    text-align: left;
    margin-bottom: 20px;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
}
.servico-card:hover {
    box-shadow: 0 8px 32px 0 rgba(0,230,255,0.18);
    transform: translateY(-6px) scale(1.03);
}
.icon-servico {
    font-size: 2.2rem;
    margin-bottom: 18px;
    color: #00E6FF;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-servico.ia { color: #00E6FF; }
.icon-servico.mk { color: #00B2FF; }
.servico-card h3 {
    color: #00B2FF;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.servico-card p {
    color: #eaf6fb;
    font-size: 1rem;
    margin-bottom: 18px;
    min-height: 48px;
}
.servico-card ul {
    list-style: none;
    padding: 0 0 0 0;
    margin: 0 0 18px 0;
}
.servico-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #eaf6fb;
    font-size: 1.05rem;
    margin-bottom: 13px;
    position: relative;
    padding-left: 0;
    font-weight: 500;
}
.servico-card ul li:before {
    content: '\2714';
    color: #00E6FF;
    font-size: 1.15em;
    margin-top: 2px;
    flex-shrink: 0;
    font-weight: bold;
    position: relative;
    left: 0;
    top: 0;
}
.saiba-mais {
    color: #00E6FF;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.saiba-mais:hover {
    color: #00B2FF;
    text-decoration: underline;
}

/* Seção Serviços */
.servicos {
    padding: 5rem 2rem;
    background: var(--background-light);
}

.servicos h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Cards de Serviço Modernos */
.servico-card {
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(0,183,255,0.10);
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: visible;
    margin-bottom: 1.5rem;
    transition: box-shadow 0.3s, transform 0.3s;
    animation: fadeInUp 0.8s both;
}
.servico-card:hover {
    box-shadow: 0 12px 40px 0 rgba(0,183,255,0.18);
    transform: translateY(-6px) scale(1.03);
}
.icon-bg {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gradient-primary);
    box-shadow: 0 2px 12px 0 rgba(0,183,255,0.10);
}
.icon-bg i {
    font-size: 2.8rem;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 183, 255, 0.25), 0 1px 2px rgba(0,0,0,0.10);
}
.servico-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
}
.servico-card p {
    font-size: 1.05rem;
    color: #eaf6fb;
    margin-bottom: 1.2rem;
    min-height: 48px;
}
.details-btn {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px 0 rgba(0,183,255,0.10);
    transition: background 0.3s, transform 0.2s;
    position: relative;
    z-index: 2;
}
.details-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px) scale(1.05);
}
.servico-detalhes {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(.4,2,.6,1);
    background: rgba(0,183,255,0.08);
    border-radius: 0 0 18px 18px;
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px 0 rgba(0,183,255,0.06);
}
.servico-card.open .servico-detalhes {
    max-height: 300px;
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
}
.servico-detalhes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.servico-detalhes ul li {
    margin-bottom: 0.7rem;
    font-size: 1.08rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Card Premium SDR IA */
.servico-card.premium {
    background: rgba(0, 18, 36, 0.85);
    border-radius: 22px 22px 18px 32px;
    box-shadow: 0 8px 32px 0 rgba(0,183,255,0.18), 0 1.5px 8px 0 rgba(0,0,0,0.10);
    border: 1.5px solid rgba(0,230,255,0.10);
    position: relative;
    overflow: visible;
    padding-top: 2.5rem;
    margin-bottom: 2.5rem;
    transition: box-shadow 0.3s, transform 0.3s;
}
.servico-card.premium:hover {
    box-shadow: 0 16px 48px 0 rgba(0,230,255,0.22), 0 2px 12px 0 rgba(0,0,0,0.12);
    transform: translateY(-8px) scale(1.04);
}
.card-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 6px;
    width: 100%;
    background: linear-gradient(90deg, #00E6FF, #00B2FF, #0077B6, #00E6FF);
    background-size: 300% 100%;
    border-radius: 22px 22px 0 0;
    animation: barMove 3s linear infinite;
}
@keyframes barMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
.icon-modern {
    margin: 0 auto 1.2rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0,230,255,0.10);
    box-shadow: 0 2px 12px 0 rgba(0,183,255,0.10);
    position: relative;
}
.icon-modern svg {
    display: block;
    width: 48px;
    height: 48px;
}
.servico-card.premium h3 {
    font-size: 1.25rem;
    letter-spacing: 0.08em;
    color: #00E6FF;
    font-weight: 800;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
}
.servico-card.premium .descricao {
    font-size: 0.98rem;
    color: #b6eaff;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 1.2rem;
}
/* Modal de Detalhes Premium */
.modal-servico {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(10,20,30,0.85);
    align-items: center;
    justify-content: center;
    animation: fadeInModal 0.4s;
}
@keyframes fadeInModal {
    from { opacity: 0; } to { opacity: 1; }
}
.modal-servico.active {
    display: flex;
}
.modal-content {
    background: rgba(0, 18, 36, 0.98);
    border-radius: 18px;
    padding: 2.5rem 2rem 2rem 2rem;
    box-shadow: 0 8px 32px 0 rgba(0,230,255,0.18);
    min-width: 320px;
    max-width: 90vw;
    color: #fff;
    position: relative;
    animation: fadeInUp 0.5s;
}
.modal-content h3 {
    color: #00E6FF;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
}
.modal-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.modal-content ul li {
    margin-bottom: 0.8rem;
    font-size: 1.08rem;
    color: #b6eaff;
    font-weight: 500;
}
.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    background: none;
    border: none;
    color: #00E6FF;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 10;
}
.close-modal:hover {
    color: #fff;
}

/* Seção Contato */
.contato {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contato-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contato-header {
    text-align: center;
    margin-bottom: 50px;
}

.contato-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.contato-header p {
    font-size: 1.1rem;
    color: #666;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contato-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    background: #007bff;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.submit-button:hover {
    background: #0056b3;
}

.contato-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon {
    background: #007bff;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-content h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.info-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 5px 0;
}

@media (max-width: 768px) {
    .contato-content {
        grid-template-columns: 1fr;
    }
    
    .contato-info {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background: #0a0a0a;
    color: #fff;
    padding: 60px 0 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col h3 {
    color: #00E6FF;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
}

.footer-desc {
    color: #b6eaff;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: #fff;
    background: rgba(0, 230, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #00E6FF;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b6eaff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00E6FF;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: #b6eaff;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact i {
    color: #00E6FF;
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #b6eaff;
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #b6eaff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #00E6FF;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-center h1 {
        font-size: 1.5rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .hero-content {
        height: 70vh;
        min-height: 320px;
    }

    .contato-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 900px) {
    .institucional-cards, .servicos-grid {
        gap: 18px;
    }
}
@media (max-width: 700px) {
    .institucional-cards, .servicos-grid {
        flex-direction: column;
        align-items: center;
    }
    .institucional-card, .servico-card {
        max-width: 98vw;
        min-width: 0;
    }
    .institucional {
        padding: 40px 0 20px 0;
    }
    .servicos-ia, .servicos-marketing {
        padding: 32px 0 18px 0;
    }
    .navbar-container {
        padding: 0 12px;
    }
}

/* Animações */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Jornada do Cliente OPA */
.jornada-opa {
    background: #f7fbfd;
    padding: 80px 0 120px 0;
}
.jornada-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.jornada-opa h2 {
    color: #00B2FF;
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 38px;
}
.jornada-trilha {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    position: relative;
    margin: 0 auto;
    max-width: 950px;
}
.jornada-trilha:before {
    content: '';
    position: absolute;
    top: 48px;
    left: 7%;
    right: 7%;
    height: 4px;
    background: linear-gradient(90deg, #00E6FF, #00B2FF, #0077B6);
    border-radius: 2px;
    z-index: 0;
}
.jornada-passo {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px 0 rgba(0,183,255,0.08);
    padding: 32px 18px 22px 18px;
    min-width: 150px;
    max-width: 180px;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    transition: box-shadow 0.3s, transform 0.3s;
}
.jornada-passo:hover {
    box-shadow: 0 8px 32px 0 rgba(0,183,255,0.16);
    transform: translateY(-8px) scale(1.04);
}
.jornada-icone {
    font-size: 2.2rem;
    color: #00B2FF;
    background: #eafcff;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    box-shadow: 0 2px 8px 0 rgba(0,183,255,0.08);
}
.jornada-passo h3 {
    color: #00B2FF;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 0;
}
.jornada-passo p {
    color: #444;
    font-size: 0.98rem;
    margin-bottom: 0;
}
@media (max-width: 900px) {
    .jornada-trilha {
        gap: 12px;
    }
    .jornada-passo {
        min-width: 120px;
        max-width: 150px;
        padding: 24px 8px 16px 8px;
    }
}
@media (max-width: 700px) {
    .jornada-trilha {
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }
    .jornada-trilha:before {
        top: 0;
        left: 50%;
        right: auto;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #00E6FF, #00B2FF, #0077B6);
        border-radius: 2px;
        z-index: 0;
        margin-left: -2px;
    }
    .jornada-passo {
        min-width: 0;
        max-width: 98vw;
        padding: 24px 8px 16px 8px;
    }
    .jornada-opa {
        padding: 56px 0 48px 0;
    }
}

/* Seção de Vídeos OPA */
.videos-opa {
    background: #0a0a0a;
    padding: 64px 0 48px 0;
}
.videos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.videos-opa h2 {
    color: #00E6FF;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 38px;
}
.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.video-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 24px 0 rgba(0,183,255,0.10);
    background: #181f2a;
}
.video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 16px;
}
@media (max-width: 900px) {
    .videos-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
}
@media (max-width: 700px) {
    .videos-opa {
        padding: 36px 0 24px 0;
    }
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .video-wrapper {
        border-radius: 10px;
    }
}

/* Carrossel de Vídeos OPA - 3 por vez + animação slide */
.carousel-track {
    width: 100%;
    max-width: 1100px;
    min-height: 420px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel-slide {
    display: none;
    width: 100%;
    animation: slideInLeft 0.5s;
}
.carousel-slide.active {
    display: block;
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}
.video-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: flex-start;
}
.video-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (max-width: 900px) {
    .video-group {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
}
@media (max-width: 700px) {
    .video-group {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .video-item {
        display: none;
    }
    .carousel-slide.active .video-item:nth-child(1) {
        display: flex;
    }
    .carousel-slide.active .video-item.active {
        display: flex;
    }
}

.carousel-arrow {
    background: rgba(0,230,255,0.12);
    border: none;
    color: #00E6FF;
    font-size: 2.2rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 2px 8px 0 rgba(0,183,255,0.10);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    z-index: 2;
    user-select: none;
    outline: none;
}
.carousel-arrow.left {
    left: -32px;
}
.carousel-arrow.right {
    right: -32px;
}
.carousel-arrow:hover, .carousel-arrow:focus {
    background: #00E6FF;
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}
@media (max-width: 900px) {
    .carousel-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.6rem;
    }
    .carousel-arrow.left {
        left: -18px;
    }
    .carousel-arrow.right {
        right: -18px;
    }
}
@media (max-width: 700px) {
    .carousel-arrow {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
        left: 0;
        right: 0;
        top: 98%;
        transform: none;
        margin-top: 8px;
        position: static;
        display: inline-flex;
    }
    .videos-carousel {
        flex-direction: column;
        align-items: center;
    }
}

/* Seção Quem Somos / Heads OPA */
.quem-somos-opa {
    background: #fff;
    padding: 80px 0 80px 0;
}
.quem-somos-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.quem-somos-opa h2 {
    color: #00B2FF;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 38px;
}
.equipe-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.equipe-card {
    background: #f7fbfd;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,183,255,0.08);
    padding: 38px 28px 28px 28px;
    flex: 1 1 220px;
    min-width: 200px;
    max-width: 260px;
    text-align: center;
    margin-bottom: 20px;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.equipe-card:hover {
    box-shadow: 0 8px 32px 0 rgba(0,183,255,0.16);
    transform: translateY(-6px) scale(1.03);
}
.equipe-foto {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00E6FF 0%, #00B2FF 100%);
    color: #fff;
    font-size: 2.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px auto;
    box-shadow: 0 2px 8px 0 rgba(0,183,255,0.10);
    letter-spacing: 1px;
}
.equipe-card h3 {
    color: #00B2FF;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}
.equipe-card .cargo {
    color: #222;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
}
.equipe-card .frase {
    color: #00B2FF;
    font-size: 0.98rem;
    font-style: italic;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
    opacity: 0.85;
}
@media (max-width: 900px) {
    .equipe-grid {
        gap: 18px;
    }
}
@media (max-width: 700px) {
    .quem-somos-opa {
        padding: 40px 0 40px 0;
    }
    .equipe-grid {
        flex-direction: column;
        align-items: center;
    }
    .equipe-card {
        max-width: 98vw;
        min-width: 0;
    }
}

/* Diferenciais Competitivos OPA */
.diferenciais-opa {
    background: #f7fbfd;
    padding: 80px 0 80px 0;
}
.diferenciais-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.diferenciais-opa h2 {
    color: #00B2FF;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 38px;
}
.diferenciais-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.diferencial-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,183,255,0.08);
    padding: 38px 28px 28px 28px;
    flex: 1 1 260px;
    min-width: 220px;
    max-width: 320px;
    text-align: center;
    margin-bottom: 20px;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.diferencial-card:hover {
    box-shadow: 0 8px 32px 0 rgba(0,183,255,0.16);
    transform: translateY(-6px) scale(1.03);
}
.diferencial-icone {
    font-size: 2.2rem;
    color: #00B2FF;
    background: #eafcff;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    box-shadow: 0 2px 8px 0 rgba(0,183,255,0.08);
}
.diferencial-card h3 {
    color: #00B2FF;
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.diferencial-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.diferencial-card ul li {
    color: #444;
    font-size: 0.98rem;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}
.diferencial-card ul li:before {
    content: '\2714';
    color: #00E6FF;
    font-size: 1.1em;
    position: absolute;
    left: 0;
    top: 0;
}
@media (max-width: 900px) {
    .diferenciais-grid {
        gap: 18px;
    }
}
@media (max-width: 700px) {
    .diferenciais-opa {
        padding: 40px 0 40px 0;
    }
    .diferenciais-grid {
        flex-direction: column;
        align-items: center;
    }
    .diferencial-card {
        max-width: 98vw;
        min-width: 0;
    }
}

/* Missão OPA */
.missao-opa {
    background: #fff;
    padding: 80px 0 80px 0;
}
.missao-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.missao-opa h2 {
    color: #00B2FF;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 32px;
}
.missao-texto {
    color: #222;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 700px;
}
@media (max-width: 700px) {
    .missao-opa {
        padding: 40px 0 40px 0;
    }
    .missao-texto {
        font-size: 1rem;
    }
}

/* Cases de Sucesso OPA */
.cases-opa {
    background: #f7fbfd;
    padding: 80px 0 80px 0;
}
.cases-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.cases-opa h2 {
    color: #00B2FF;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 38px;
}
.cases-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.case-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,183,255,0.08);
    padding: 38px 28px 28px 28px;
    flex: 1 1 260px;
    min-width: 220px;
    max-width: 320px;
    text-align: left;
    margin-bottom: 20px;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}
.case-card:hover {
    box-shadow: 0 8px 32px 0 rgba(0,183,255,0.16);
    transform: translateY(-6px) scale(1.03);
}
.case-icone {
    font-size: 2.2rem;
    color: #00B2FF;
    background: #eafcff;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px 0 rgba(0,183,255,0.08);
}
.case-card h3 {
    color: #00B2FF;
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: left;
}
.case-desafio, .case-solucao {
    color: #444;
    font-size: 0.98rem;
    margin-bottom: 10px;
    text-align: left;
}
.case-resultado {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.case-numero {
    color: #00E6FF;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2px;
}
.case-label {
    color: #00B2FF;
    font-size: 1rem;
    font-weight: 600;
}
@media (max-width: 900px) {
    .cases-grid {
        gap: 18px;
    }
}
@media (max-width: 700px) {
    .cases-opa {
        padding: 40px 0 40px 0;
    }
    .cases-grid {
        flex-direction: column;
        align-items: center;
    }
    .case-card {
        max-width: 98vw;
        min-width: 0;
    }
}

/* Missão OPA - Duas Colunas com Benefícios */
.missao-flex {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}
.missao-text-col {
    flex: 1 1 380px;
    min-width: 260px;
    max-width: 480px;
    text-align: left;
}
.missao-beneficios {
    flex: 1 1 320px;
    min-width: 220px;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    justify-content: center;
}
.beneficio-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #f7fbfd;
    border-radius: 14px;
    box-shadow: 0 2px 12px 0 rgba(0,183,255,0.06);
    padding: 18px 18px 18px 18px;
    transition: box-shadow 0.3s, transform 0.3s;
}
.beneficio-item:hover {
    box-shadow: 0 8px 32px 0 rgba(0,183,255,0.12);
    transform: translateY(-3px) scale(1.02);
}
.beneficio-icone {
    font-size: 2rem;
    color: #00B2FF;
    background: #eafcff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px 0 rgba(0,183,255,0.08);
    flex-shrink: 0;
}
.beneficio-item h4 {
    color: #00B2FF;
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 4px 0;
}
.beneficio-item p {
    color: #444;
    font-size: 0.98rem;
    margin: 0;
}
@media (max-width: 900px) {
    .missao-flex {
        flex-direction: column;
        gap: 32px;
        align-items: stretch;
    }
    .missao-text-col, .missao-beneficios {
        max-width: 100vw;
    }
}

.cta-missao {
    display: inline-block;
    margin-top: 28px;
    padding: 1rem 2.2rem;
    background: linear-gradient(135deg, #00E6FF 0%, #00B2FF 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.08rem;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 2px 12px 0 rgba(0,183,255,0.10);
    transition: background 0.3s, transform 0.2s;
}
.cta-missao:hover {
    background: #00B2FF;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    text-decoration: none;
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar.active .menu-toggle span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.navbar.active .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.navbar.active .menu-toggle span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00E6FF;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #0a0a0a;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .navbar.active .nav-links {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        margin: 1rem 0;
    }

    .nav-links a::after {
        bottom: -8px;
    }
}

/* Página de Case */
.case-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #181f2a 100%);
    padding: 100px 0;
    color: #fff;
}

.case-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.case-hero-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.case-category {
    background: rgba(0, 230, 255, 0.1);
    color: #00E6FF;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    width: fit-content;
}

.case-hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 0;
}

.case-subtitle {
    font-size: 1.1rem;
    color: #b6eaff;
    margin: 0;
}

.case-hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.case-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.case-details {
    padding: 80px 0;
    background: #f8f9fa;
}

.case-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.case-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.case-info-card, .case-results-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.case-info-card h3, .case-results-card h3 {
    color: #00B2FF;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.case-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-info-card li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.case-info-card li:last-child {
    border-bottom: none;
}

.case-info-card strong {
    color: #333;
}

.case-info-card span {
    color: #666;
}

.result-item {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 230, 255, 0.05);
    margin-bottom: 15px;
}

.result-item:last-child {
    margin-bottom: 0;
}

.result-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #00E6FF;
    margin-bottom: 5px;
}

.result-label {
    color: #666;
    font-size: 0.9rem;
}

.case-content {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.case-section {
    margin-bottom: 60px;
}

.case-section:last-child {
    margin-bottom: 0;
}

.case-section h2 {
    color: #00B2FF;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.case-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.challenge-image {
    margin: 30px 0;
    border-radius: 10px;
    overflow: hidden;
}

.challenge-image img {
    width: 100%;
    height: auto;
    display: block;
}

.solution-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(0, 230, 255, 0.05);
    border-radius: 10px;
    margin-bottom: 15px;
}

.solution-list li:last-child {
    margin-bottom: 0;
}

.solution-list i {
    font-size: 1.5rem;
    color: #00E6FF;
    margin-top: 5px;
}

.solution-list h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.solution-list p {
    color: #666;
    margin: 0;
}

.implementation-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.step {
    background: rgba(0, 230, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 40px;
    height: 40px;
    background: #00E6FF;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-content h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    margin: 0;
}

.results-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.result-card {
    background: rgba(0, 230, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.result-card i {
    font-size: 2rem;
    color: #00E6FF;
    margin-bottom: 15px;
}

.result-card h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.result-card p {
    color: #666;
    margin: 0;
}

.case-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #00E6FF 0%, #00B2FF 100%);
    border-radius: 10px;
    color: #fff;
}

.case-cta h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.case-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.case-cta .cta-button {
    background: #fff;
    color: #00B2FF;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.case-cta .cta-button:hover {
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .case-hero-content {
        grid-template-columns: 1fr;
    }

    .case-overview {
        grid-template-columns: 1fr;
    }

    .implementation-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .results-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .case-hero {
        padding: 60px 0;
    }

    .case-hero-text h1 {
        font-size: 2rem;
    }

    .implementation-steps {
        grid-template-columns: 1fr;
    }

    .results-gallery {
        grid-template-columns: 1fr;
    }

    .case-content {
        padding: 20px;
    }
}

/* Hero Marketing Section */
.hero-marketing {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 135px 0 80px 0;
    color: #fff;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
}

.hero-benefits i {
    color: #4285f4;
    margin-right: 10px;
    font-size: 1.2rem;
}

.hero-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.hero-form h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.hero-form-mini {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 2.5rem;
    width: 100%;
    max-width: 1100px;
}

.nome-group {
    flex: 0 0 30%;
    min-width: 120px;
}
.telefone-group {
    flex: 0 0 50%;
    min-width: 200px;
    position: relative;
}
.cta-button-mini {
    flex: 0 0 30%;
    min-width: 230px;
    margin-top: 0;
    padding: 0.9rem 1.5rem;
    font-size: 1.1rem;
    white-space: nowrap;
}

.prefixo-telefone {
    position: absolute;
    left: 48px;
    top: 50%;
    transform: translateY(-50%);
    color: #00B2FF;
    font-weight: 600;
    font-size: 1.05rem;
    pointer-events: none;
    z-index: 2;
    letter-spacing: 1px;
    opacity: 0.85;
}

.telefone-group input[type="tel"] {
    padding-left: 110px;
}

.hero-form-mini input[type="text"],
.hero-form-mini input[type="tel"] {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #00B2FF;
    border-radius: 24px;
    font-size: 1rem;
    outline: none;
    background: rgba(0,183,255,0.08);
    color: #fff;
    transition: border 0.2s, background 0.2s;
    font-family: 'Poppins', sans-serif;
}

.hero-form-mini input[type="text"]::placeholder,
.hero-form-mini input[type="tel"]::placeholder {
    color: #b6eaff;
    opacity: 1;
}

.hero-form-mini input[type="text"]:focus,
.hero-form-mini input[type="tel"]:focus {
    border: 1.5px solid #00E6FF;
    background: rgba(0,230,255,0.10);
}

.cta-button-mini {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 24px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.9rem 2rem;
    margin-top: 0;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 2px 12px 0 rgba(0,183,255,0.10);
    font-family: 'Poppins', sans-serif;
}

.cta-button-mini:hover {
    background: #00B2FF;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}

.clientes-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 6rem;
}

.logo-cliente {
    opacity: 0.35;
    transition: opacity 0.2s;
    height: 48px;
    width: 120px;
    object-fit: contain;
}

.logo-cliente:hover {
    opacity: 0.6;
}

@media (max-width: 900px) {
    .hero-form-mini {
        max-width: 98vw;
        gap: 0.7rem;
    }
    .nome-group, .telefone-group, .cta-button-mini {
        min-width: 0;
    }
    .clientes-logos {
        gap: 1rem;
    }
}
@media (max-width: 700px) {
    .hero-form-mini {
        flex-direction: column;
        gap: 0.7rem;
        max-width: 98vw;
    }
    .nome-group, .telefone-group, .cta-button-mini {
        width: 100%;
        flex: 1 1 100%;
    }
    .cta-button-mini {
        min-width: 0;
    }
    .clientes-logos {
        flex-wrap: wrap;
        gap: 0.7rem;
    }
    .logo-cliente {
        width: 90px;
        height: 36px;
    }
}

/* Article Section */
.article-section {
    padding: 80px 0;
    background: #fff;
}

.article-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 0 20px;
}

.main-article {
    color: #333;
}

.main-article h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.main-article h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: #1a1a1a;
}

.main-article p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #444;
}

.main-article ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.main-article ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.main-article ul li:before {
    content: "•";
    color: #4285f4;
    position: absolute;
    left: 0;
    top: 0;
}

.sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.sidebar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.service-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-list i {
    color: #4285f4;
    font-size: 1.5rem;
    margin-right: 15px;
    margin-top: 5px;
}

.service-list h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.service-list p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Responsividade */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .article-container {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .main-article h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .hero-marketing {
        padding: 95px 0 40px 0;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-form {
        padding: 20px;
    }

    .main-article h2 {
        font-size: 1.5rem;
    }

    .main-article h3 {
        font-size: 1.3rem;
    }

    .sidebar-card {
        padding: 20px;
    }
} 

.iti {
    width: 100%;
}
.iti--allow-dropdown input,
.iti--allow-dropdown input[type=tel],
.iti--allow-dropdown input[type=text],
.iti__country-list {
    background: #101820 !important;
    color: #fff !important;
    border: 1px solid #00B2FF !important;
    font-family: 'Poppins', sans-serif;
}
.iti__country-list {
    box-shadow: 0 8px 32px 0 rgba(0,183,255,0.18);
    border-radius: 12px;
    background: #101820 !important;
    color: #fff !important;
}
.iti__country-list .iti__country {
    color: #fff !important;
    background: transparent !important;
}
.iti__country-list .iti__country.iti__highlight {
    background: #00B2FF !important;
    color: #fff !important;
}
.iti__selected-flag {
    background: transparent !important;
    border-radius: 12px 0 0 12px;
}
.iti__flag-container {
    background: transparent !important;
}
.iti input[type=tel] {
    background: #101820 !important;
    color: #fff !important;
    border: 1px solid #00B2FF !important;
    border-radius: 18px !important;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}
.iti input[type=tel]::placeholder {
    color: #b6eaff !important;
    opacity: 1;
}

/* HERO HOME RESPONSIVO */
.hero-home-flex {
    width: 100vw;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}
.hero-home-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}
.hero-home-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    max-width: 100%;
    word-break: break-word;
}
.hero-home-sub {
    font-size: 1.25rem;
    color: #eaf6fb;
    margin-bottom: 2.2rem;
    font-weight: 400;
    max-width: 90%;
}
.hero-home-form {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 2.5rem;
    width: 100%;
    max-width: 1200px; /* Limite confortável para desktop */
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.hero-home-form .nome-group,
.hero-home-form .telefone-group {
    flex: 1 1 0;
    min-width: 140px;
    max-width: 300px;
}

.hero-home-form .nome-group input,
.hero-home-form .telefone-group input[type='tel'] {
    width: 100%;
    box-sizing: border-box;
}

.hero-home-form .cta-button-mini {
    flex: 0 0 170px;
    max-width: 180px;
    min-width: 120px;
    width: 100%;
    white-space: nowrap;
    font-size: 1.1rem;
    padding: 0.9rem 1.5rem;
    box-sizing: border-box;
}

.hero-home-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
@media (max-width: 900px) {
    .hero-home-form { max-width: 98vw; gap: 0.7rem; }
    .hero-home-logos { gap: 1rem; }
}
@media (max-width: 700px) {
    .hero-home-flex {
        min-height: unset;
        padding: 0 0 32px 0;
    }
    .hero-home-center {
        max-width: 100vw;
        width: 100vw;
        padding: 0 24px;
    }
    .hero-home-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    .hero-home-sub {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    .hero-home-form {
        flex-direction: column !important;
        gap: 0.9rem;
        max-width: 420px;
        width: 100%;
        align-items: stretch;
        margin: 0 auto 1.5rem auto;
        padding: 0 8px;
    }
    .nome-group, .telefone-group, .cta-button-mini {
        width: 100% !important;
        min-width: 0 !important;
        flex: 1 1 100% !important;
    }
    .cta-button-mini {
        min-width: 0 !important;
        width: 100% !important;
        font-size: 1.1rem;
    }
    .hero-home-logos {
        flex-wrap: wrap;
        gap: 0.7rem;
        margin-top: 2rem;
        justify-content: center;
    }
    .logo-cliente {
        width: 90px;
        height: 36px;
    }
}

/* Padronização do border-radius do formulário do hero da home */
.hero-form-mini .nome-group input,
.hero-form-mini .telefone-group input[type='tel'],
.hero-form-mini .cta-button-mini {
    border-radius: 10px 10px 10px 10px !important;
}

/* Para garantir que o input de telefone com plugin mantenha o raio arredondado */
.hero-form-mini .telefone-group input[type='tel'] {
    border-radius: 10px 10px 10px 10px !important;
}
.hero-form-mini .nome-group input {
    border-radius: 10px 10px 10px 10px !important;
}

/* HERO HOME FORM DESKTOP AJUSTADO - PROPORÇÃO CORRETA */
.hero-home-form .nome-group {
    flex: 0 0 20%;
    min-width: 120px;
    max-width: 220px;
}
.hero-home-form .telefone-group {
    flex: 0 0 50%;
    min-width: 200px;
    max-width: 350px;
}
.hero-home-form .cta-button-mini {
    flex: 0 0 30%;
    min-width: 160px;
    max-width: 220px;
    width: 100%;
    white-space: nowrap;
    font-size: 1.1rem;
    padding: 0.9rem 1.5rem;
    box-sizing: border-box;
}

@media (max-width: 700px) {
    .hero-home-form {
        flex-direction: column !important;
        gap: 0.9rem;
        max-width: 420px;
        width: 100%;
        align-items: stretch;
        margin: 0 auto 1.5rem auto;
        padding: 0 8px;
    }
    .hero-home-form .nome-group,
    .hero-home-form .telefone-group,
    .hero-home-form .cta-button-mini {
        width: 100% !important;
        min-width: 0 !important;
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 700px) {
    .hero-home-center {
        padding: 0 24px;
    }
}

.hero-logos-footer {
    width: 100%;
    margin-top: 1.2rem;
    margin-bottom: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background: transparent;
    padding-bottom: 0;
    height: auto !important;
    min-height: unset !important;
}
.hero-logos-title {
    font-size: 1.08rem;
    color: #eaf6fb85;
    font-weight: 600;
    margin-bottom: 0.3rem;
    text-align: center;
    letter-spacing: 0.01em;
}
.hero-logos-carousel {
    display: flex;
    gap: 2rem;
    align-items: center;
    width: auto;
    will-change: transform;
    transition: none;
    margin-bottom: 0;
}
@media (max-width: 700px) {
    .hero-logos-footer {
        margin-top: 1.2rem;
        padding-bottom: 0.2rem;
        height: auto !important;
        min-height: unset !important;
    }
    .hero-logos-title {
        font-size: 0.98rem;
        margin-bottom: 0.5rem;
    }
    .hero-logos-carousel {
        gap: 1.2rem;
        width: auto;
    }
}


.hero-home-center {
    position: relative;
    height: 100vh; /* ou altura desejada */
}
.hero-logos-footer {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding-bottom: 4.2rem; /* ajuste o espaçamento */
}

@media (max-width: 700px) {
  .hero-logos-footer {
    position: static !important;
    width: 100vw !important;
    left: 0 !important;
    transform: none !important;
    padding-bottom: 2.2rem;
    box-sizing: border-box;
    overflow-x: hidden;
    background: transparent;
  }
  .hero-logos-carousel {
    min-width: 100vw;
    width: max-content;
    overflow-x: visible;
    display: flex;
    gap: 1.2rem;
    justify-content: flex-start;
    align-items: center;
    scrollbar-width: none; /* Firefox */
  }
  .hero-logos-footer::-webkit-scrollbar,
  .hero-logos-carousel::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 700px) {
    .cursor, .cursor-follower {
        display: none !important;
    }
    
    .navbar {
        position: relative;
        background: #0a0a0a;
    }
    
    .hero-home-flex {
        min-height: unset;
        padding: 0;
        margin-top: 0;
    }
    
    .hero-home-center {
        max-width: 100vw;
        width: 100vw;
        padding: 0 24px;
        margin-top: 0;
    }
    
    .hero-home-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1rem;
        padding-top: 1rem;
    }
    
    .hero-home-sub {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-home-form {
        flex-direction: column !important;
        gap: 0.9rem;
        max-width: 420px;
        width: 100%;
        align-items: stretch;
        margin: 0 auto 1.5rem auto;
        padding: 0 8px;
    }
    
    .nome-group, .telefone-group, .cta-button-mini {
        width: 100% !important;
        min-width: 0 !important;
        flex: 1 1 100% !important;
    }
    
    .cta-button-mini {
        min-width: 0 !important;
        width: 100% !important;
        font-size: 1.1rem;
    }
    
    .hero-home-logos {
        flex-wrap: wrap;
        gap: 0.7rem;
        margin-top: 2rem;
        justify-content: center;
    }
    
    .logo-cliente {
        width: 90px;
        height: 36px;
    }
}

@media (max-width: 700px) {
  .hero-home-center {
    padding-top: 60px;
  }
}

