@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;512;700&display=swap');

:root {
    --primary: #0A0D14; /* Ultra Dark Slate */
    --primary-alt: #05070A; /* Absolute Rich Black - Print 1 */
    --secondary: #4CAF50; /* Verde Original Logo */
    --secondary-hover: #45a049;
    --secondary-light: rgba(76, 175, 80, 0.1);
    --accent: #00D1FF; /* Azul Tech para detalhes */
    --bg-light: #FFFFFF;
    --bg-alt: #F8FAFC;
    --bg-dark: #05070A; /* Profundidade máxima Print 1 */
    --text-main: #1E293B;
    --text-secondary: #475569;
    --text-light: #64748B;
    --text-white: #FFFFFF;
    --transition: all 0.3s ease;
    --card-shadow: 0 15px 45px rgba(0, 0, 0, 0.08); /* Sombra mais profunda e premium */
    --card-shadow-hover: 0 30px 70px rgba(0, 0, 0, 0.12);
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light); /* Volta ao Branco para preservar as ondas */
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .brand-font {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- HEADER FIXO --- */
header {
    background: transparent; /* Invisível no topo para a Home */
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled, header.header-solid {
    padding: 12px 0;
    background: rgba(5, 7, 10, 0.95) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px; /* Tamanho proporcional Print 1 */
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 2.8rem; /* Espaçamento Premium */
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.nav-links li a:hover {
    color: var(--secondary);
}

.btn-cta, .contact-form .btn-cta, .thanks-page .btn-cta {
    background: linear-gradient(135deg, #00FF88 0%, #00D1FF 100%); /* Verde Neon para Ciano Tech */
    color: #05070A !important;
    padding: 14px 36px;
    border-radius: 50px; /* Arredondamento total (Pill) */
    font-weight: 700;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.btn-cta:hover, .contact-form .btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 209, 255, 0.4);
    filter: brightness(1.1);
}

.btn-header {
    background: linear-gradient(135deg, #00FF88 0%, #00D1FF 100%);
    color: #05070A !important;
    padding: 10px 28px;
    border-radius: 50px; /* Arredondamento total */
    font-weight: 700;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.2);
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 209, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 14px 36px;
    border-radius: 50px; /* Arredondamento total */
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #00FF88;
    color: #00FF88;
    transform: translateY(-2px);
}

/* --- HERO SECTION --- */
.hero {
    padding: 180px 0 150px;
    background: #05070A; /* Deep Dark Print 1 Style */
    background-image: 
        radial-gradient(circle at 10% 90%, rgba(76, 175, 80, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 90% 10%, rgba(0, 209, 255, 0.03) 0%, transparent 40%);
    position: relative;
    overflow: hidden;
    color: var(--text-white);
}

.hero .container {
    position: relative;
    z-index: 5;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero .highlight {
    color: var(--secondary);
}

.hero-visual {
    flex: 1;
    position: relative;
    min-height: 550px; 
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.slide.active {
    opacity: 1;
    z-index: 6;
}

.slide img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    filter: drop-shadow(0 0 30px rgba(76, 175, 80, 0.1));
}

.carousel-dots {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 10px;
     height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

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

@keyframes floatDashboard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(1deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* --- WAVE WRAPPER --- */
.hero-waves {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1; /* Atrás do conteúdo */
}

.hero-waves svg {
    position: relative;
    display: block;
    width: 100%;
    height: 100px;
    min-height: 100px;
    max-height: 150px;
}

/* Animations */
.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}
.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}
.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}
.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}
.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    flex: 1;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero .highlight {
    color: var(--secondary);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.btn-secondary {
    background: white;
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

/* Legacy hero-visual container replaced by more specific styles above */

/* Legacy hero image - replaced by Spline */

/* --- WHY US SECTION - UNIQUE ASYMMETRIC --- */
.why-us-section {
    background: var(--bg-light); /* Absoluto Branco */
    position: relative;
    border-top: none; /* Removida a linha que estava aparecendo */
}

.why-us-wrap {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 8rem;
    align-items: center;
}

.why-us-intro .section-head {
    text-align: left;
    margin-bottom: 0;
}

.short-title {
    display: block;
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.experience-stats {
    display: flex;
    gap: 4rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    display: inline-block;
    font-size: 3.2rem; /* Números imponentes */
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #00FF88 0%, #00D1FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 10px rgba(0, 255, 136, 0.1));
}

.stat-suffix {
    font-size: 2rem;
    background: linear-gradient(135deg, #00FF88 0%, #00D1FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.stat span:not(.stat-number):not(.stat-suffix) {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-us-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0,0,0,0.03);
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--secondary-light);
}

.why-num {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(76, 175, 80, 0.05);
    line-height: 1;
    pointer-events: none;
}

.why-icon {
    width: 64px;
    height: 64px;
    background: #F0FFF4;
    color: var(--secondary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.why-text h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.why-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- SOLUÇÕES CARDS --- */
.section {
    padding: 100px 0;
}

.section-head {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-head h2 {
    font-size: 2.3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-head p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.sol-card {
    background: #05070A; /* Deep Dark Lux */
    padding: 3.5rem 2.5rem;
    border-radius: 32px;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.sol-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sol-card:hover {
    transform: translateY(-15px);
    border-color: rgba(0, 255, 136, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 255, 136, 0.15);
}

.sol-card:hover::after {
    opacity: 1;
}

.sol-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.sol-icon i {
    background: linear-gradient(135deg, #00FF88 0%, #00D1FF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
    filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.4));
}

.sol-card h3 {
    color: #FFFFFF;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.sol-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.learn-more {
    margin-top: auto;
    font-size: 0.85rem;
    font-weight: 700;
    color: #00FF88;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.sol-card:hover .learn-more {
    gap: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    transform: translateX(5px);
    opacity: 1;
}

/* --- SECTION FINTECH --- */
.fintech-special {
    background: var(--bg-dark);
    color: white;
    padding: 120px 0;
}

.fintech-special h2 {
    color: white;
}

.fintech-special .highlight {
    color: var(--secondary);
}

.fintech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.fintech-text {
    padding-right: 1rem;
}

.fintech-visual {
    flex: 1;
}

.fintech-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* --- CONTACT SECTION - ULTRA PREMIUM REDESIGN --- */
.contact-section {
    background: var(--bg-dark);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Bolhas de luz no background */
.contact-section::before, 
.contact-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    opacity: 0.15;
}

.contact-section::before {
    background: var(--secondary);
    top: -200px;
    right: -200px;
}

.contact-section::after {
    background: var(--accent);
    bottom: -200px;
    left: -200px;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-section h2, 
.contact-section .section-head p {
    color: white;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
    align-items: center;
}

.contact-info .section-head {
    text-align: left;
}

.contact-cards {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateX(12px);
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--secondary);
}

.contact-card .icon {
    width: 56px;
    height: 56px;
    background: rgba(76, 175, 80, 0.15);
    color: var(--secondary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.contact-card h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-card p {
    color: #A0AEC0;
}

/* Glass Form Card */
.contact-form {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 2.5rem;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
    position: relative;
}

.form-group label {
    display: block;
    color: #A0AEC0;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #4A5568;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05); /* Um pouco mais visível no preto total */
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 16px 20px 16px 50px;
    border-radius: 14px;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form select {
    appearance: none;
    cursor: pointer;
}

/* Custom Arrow for select */
.input-with-icon .fa-chevron-down {
    left: auto;
    right: 20px;
}

.contact-form textarea {
    padding-left: 20px; /* Textarea doesn't use internal icon focus style here */
}

.contact-form input::placeholder, 
.contact-form textarea::placeholder {
    color: #4A5568;
}

.contact-form input:focus, 
.contact-form select:focus, 
.contact-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--secondary);
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.15);
}

.contact-form input:focus + i, 
.contact-form select:focus + i {
    color: var(--secondary);
}

.contact-form .btn-cta {
    width: 100%;
    margin-top: 1rem;
}

/* --- FOOTER - REDESIGNED --- */
footer {
    background: var(--bg-dark);
    padding: 100px 0 40px;
    color: #A0AEC0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 80px;
}

.footer-brand p {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col h4 {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: #A0AEC0;
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--secondary);
    padding-left: 8px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-5px);
}

.footer-copy {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: #718096;
}

/* --- SERVICE SUBPAGES --- */
.service-hero {
    background: #05070A;
    padding: 160px 0 100px; /* Mais espaço no topo para o menu flutuar */
    text-align: center;
    color: white;
}

.icon-badge {
    width: 80px;
    height: 80px;
    background: rgba(76, 175, 80, 0.1);
    color: var(--secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.service-hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.25rem;
    color: #A0AEC0;
    max-width: 700px;
    margin: 0 auto;
}

.details-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.details-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.details-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
}

.feature-item .dot {
    width: 12px;
    height: 12px;
    background: var(--secondary);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
    box-shadow: 0 0 10px var(--secondary);
}

.feat-content strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.feat-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

.service-cta {
    padding: 100px 0;
    background: var(--bg-alt);
}

.cta-box {
    padding: 5rem;
    text-align: center;
    border-radius: 40px;
    background: white;
    box-shadow: var(--card-shadow);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

/* --- RESPONSIVIDADE COMPLETA --- */

html, body {
    overflow-x: hidden; /* Elimina scroll horizontal "teimoso" */
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 968px) {
    .container { 
        padding: 0 1.5rem; 
        max-width: 100%;
    }
    
    .mobile-menu-btn { display: block; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%; /* Levemente maior para conforto */
        height: 100vh;
        background: #05070A;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.8);
        z-index: 1000;
    }

    .nav-links.active { right: 0; }

    .nav-links li { margin-bottom: 2rem; }
    .nav-links li a { font-size: 1.3rem; }

    .btn-header { display: none; }

    /* HERO */
    .hero { padding: 100px 0 60px; overflow: hidden; }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }

    .hero h1 { font-size: 2.2rem; line-height: 1.2; }
    
    .hero-text p { 
        margin-right: auto; 
        margin-left: auto; 
        font-size: 1rem;
    }

    .hero-btns { 
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%; 
    }
    
    .hero-btns .btn-cta, .hero-btns .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-visual { min-height: auto; order: 2; width: 100%; margin-top: 2rem; } 
    .hero-carousel { min-height: 400px; }
    .carousel-dots { bottom: -20px; }

    /* WHY US - CORRIGIDO NOMES */
    .why-us-wrap { 
        grid-template-columns: 1fr; 
        gap: 3rem; 
        text-align: center;
    }
    
    .why-us-intro .section-head { text-align: center; }
    
    .why-us-intro .stats-mini { justify-content: center; margin-top: 2rem; }

    /* SOLUÇÕES - CORRIGIDO NOMES */
    .solutions-grid { 
        grid-template-columns: 1fr; 
        gap: 1.5rem;
    }
    
    .section-head h2 { font-size: 2rem; }
    
    /* FINTECH SPECIAL - NOVO AJUSTE */
    .fintech-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .fintech-features {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        text-align: left; /* Mantém checkmarks alinhados */
    }

    .fintech-visual {
        order: 2; /* Imagem abaixo do texto */
        width: 100%;
    }

    .fintech-special { padding: 80px 0; }
    
    /* GERAL */
    .contact-wrap { 
        grid-template-columns: 1fr; 
        gap: 3rem; 
    }
    
    .contact-info { text-align: center; }
    .contact-info .section-head { text-align: center; }
    .contact-cards { margin-top: 2.5rem; }

    .section { padding: 50px 0; }
}

@media (max-width: 576px) {
    .hero h1 { font-size: 1.8rem; }
    .container { padding: 0 1.2rem; }
    .sol-card { padding: 2rem 1.2rem; }
    .contact-form { padding: 2rem 1rem; }
}

/* --- FEEDBACK DO FORMULÁRIO --- */
.form-success-alert {
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid var(--secondary);
    color: var(--secondary);
    padding: 1.2rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    animation: fadeInUp 0.5s ease-out;
}

.form-success-alert i {
    font-size: 1.3rem;
}

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