:root {
    --primary-color: #003399; /* Novo neutro / corporativo */
    --secondary-color: #002266;
    --background-dark: #000000;
    --background-card: #0a0a0a;
    --background-light: #E2DDD9; /* Fundo Areia/Neutro */
    --text-light: #ffffff;
    --text-dark: #000000;
    --text-muted: #999999;
    --accent: #003399;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--background-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography Utilities */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.w-100 { width: 100%; }

/* Glassmorphism utility */
.glassmorphism {
    background: rgba(30, 30, 30, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Header */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.85rem 1.8rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-main);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(226, 73, 138, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    margin-top: 2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    background: radial-gradient(circle at 80% 50%, rgba(86, 54, 209, 0.15) 0%, rgba(0,0,0,0) 50%);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.hero-kicker {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.highlight {
    color: var(--primary-color);
    transition: all 0.5s ease;
}

.hero p#hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(86, 54, 209, 0.2));
    animation: float 6s ease-in-out infinite;
}

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

/* Partners */
.partners {
    padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: #050505;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 1.5rem;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.partner-logos:hover {
    opacity: 1;
}

.partner-img {
    height: 40px;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.partner-img:hover {
    filter: grayscale(0%);
}

/* Services */
.services {
    padding: 6rem 0;
}

.services h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    font-weight: 800;
}

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

.card {
    background: var(--background-card);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s, border-color 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #050505;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-cities h3 {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.footer-cities ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-cities a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-cities a:hover, .footer-cities a.active {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    color: rgba(255,255,255,0.3);
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #111111;
    padding: 3rem;
    border-radius: 12px;
    width: 100%;
    max-width: 550px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s;
    line-height: 1;
}

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

.modal h2 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.modal p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ddd;
}

.form-group input[type="text"],
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    background: #000;
    color: white;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input[type="text"]:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.radio-group {
    display: flex;
    gap: 2rem;
}

.radio-group label {
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }
    .hero h1 {
        font-size: 3.5rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .nav {
        display: none;
    }
    .modal-content {
        padding: 2rem;
        margin: 1rem;
    }
}

/* Novas Seções */
.strategy-section {
    position: relative;
    background: var(--background-dark);
    padding: 100px 0 80px;
}
.shape-divider {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.shape-divider svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}
.shape-divider .elementor-shape-fill {
    fill: #050505; /* Matches the section above it, .partners background */
}
.strategy-container {
    padding-top: 40px;
}
.strategy-texts {
    text-align: center;
    margin-bottom: 60px;
}
.strategy-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 400;
}
.strategy-title strong {
    font-weight: 800;
}
.strategy-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
}
.strategy-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}
.feature-box {
    text-align: center;
    padding: 20px;
}
.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: transform 0.3s;
}
.feature-box:hover .feature-icon {
    transform: translateY(-10px);
}
.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}
.feature-content p {
    color: var(--text-muted);
    font-size: 1rem;
}
.strategy-btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
}

/* Numbers Section */
.numbers-section {
    background: var(--background-light);
    color: var(--text-dark);
    padding: 80px 0;
    border-top: 3px solid var(--primary-color);
}
.numbers-layout {
    display: flex;
    gap: 50px;
    align-items: center;
}
.numbers-logo {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
}
.big-oo {
    width: 250px;
    height: 300px;
    background: var(--primary-color);
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 51, 153, 0.2);
}
.big-oo::before {
    content: '';
    position: absolute;
    top: -20%; left: -20%;
    width: 140%; height: 60%;
    background: var(--background-dark);
    border-radius: 50%;
}
.big-oo::after {
    content: 'oo';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    font-weight: 900;
    color: var(--background-light);
    letter-spacing: -20px;
}
.numbers-content {
    flex: 1.5;
}
.numbers-title {
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.3;
}
.numbers-title strong {
    font-weight: 800;
}
.numbers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
    margin-bottom: 40px;
}
.number-box h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.number-box p {
    font-size: 0.95rem;
    color: #444;
}
.numbers-btn {
    background-color: var(--primary-color);
}

/* Bottom CTA Section */
.bottom-cta-section {
    background: var(--background-dark);
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.bottom-cta-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}
.bottom-cta-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .numbers-layout {
        flex-direction: column;
        text-align: center;
    }
    .big-oo {
        display: none;
    }
    .numbers-grid {
        text-align: center;
    }
}
@media (max-width: 768px) {
    .numbers-grid {
        grid-template-columns: 1fr;
    }
    .strategy-title, .numbers-title, .bottom-cta-title {
        font-size: 1.8rem;
    }
}
