:root {
    /* Cores Premium - Paleta Refinada */
    --primary: #0047BA; /* Azul Royal Profundo - Confiança */
    --primary-light: #3D7BF5; /* Azul Brilhante - Ação */
    --primary-dark: #002A70; /* Azul Navy - Estabilidade */
    --secondary: #FFB800; /* Dourado - Valor/Premium */
    --accent: #FF3366; /* Vermelho Moderno - Atenção */
    --success: #00C851;
    
    --text-main: #002A70; /* Azul Navy Profundo - Substituindo preto */
    --text-light: #4A6FA5; /* Azul acinzentado */
    --text-lighter: #8792A2;
    --white: #fff;
    
    --bg-body: #F7F9FC;
    --bg-white: #FFFFFF;
    --bg-light: #F0F4F8;
    
    /* Sombras Suaves (Elevation System) - Tinted Blue */
    --shadow-xs: 0 1px 2px rgba(0, 71, 186, 0.05);
    --shadow-sm: 0 4px 6px rgba(0, 71, 186, 0.06), 0 1px 3px rgba(0, 71, 186, 0.04);
    --shadow-md: 0 7px 14px rgba(0, 71, 186, 0.08), 0 3px 6px rgba(0, 71, 186, 0.06);
    --shadow-lg: 0 15px 35px rgba(0, 71, 186, 0.1), 0 5px 15px rgba(0, 71, 186, 0.05);
    --shadow-hover: 0 18px 40px rgba(0, 71, 186, 0.12), 0 8px 20px rgba(0, 71, 186, 0.08);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 50px;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* --- Tipografia Utilitária --- */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.font-bold { font-weight: 700; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* --- Header Moderno --- */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

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

.logo h1 {
    font-size: 24px;
    letter-spacing: -0.5px;
    margin-bottom: 0;
    color: var(--text-main);
}

.logo span {
    color: var(--primary);
}

.nav-list {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-list a {
    color: var(--text-main);
    font-weight: 500;
    font-size: 15px;
    position: relative;
}

.nav-list a:not(.nav-cta):hover {
    color: var(--primary);
}

.nav-cta {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-pill);
    font-weight: 600 !important;
    box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--text-main);
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F4F7FB 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero-content .badge-top {
    display: inline-block;
    background: rgba(0, 71, 186, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-content h2 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-main);
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    border: 1px solid #DCE3E8;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

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

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: block;
}

.hero-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--bg-white);
    padding: 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float 6s ease-in-out infinite;
    max-width: 240px;
}

.hero-badge i {
    font-size: 24px;
    color: var(--primary);
    background: rgba(0, 71, 186, 0.1);
    padding: 12px;
    border-radius: 50%;
}

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

/* --- Services / Cards --- */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid #E6EBF1;
    border-radius: var(--radius-md);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.card-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(0, 71, 186, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
    font-size: 28px;
    transition: var(--transition);
}

.service-card:hover .card-icon-wrapper {
    background: var(--primary);
    color: var(--white);
    transform: rotate(-5deg);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.card-link:hover {
    gap: 10px;
}

/* --- Steps Section --- */
.steps-section {
    padding: 100px 0;
    background-color: var(--bg-body);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.step-item {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    text-align: left;
}

.step-number {
    font-size: 40px;
    font-weight: 800;
    color: rgba(0, 71, 186, 0.15);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.step-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* --- Simulator --- */
.simulator-section {
    padding: 100px 0;
    background: var(--primary); /* Azul Royal - Brighter than Navy */
    color: var(--white);
}

.simulator-section h2 { color: var(--white); }
.simulator-section p { color: rgba(255,255,255,0.7); }

.simulator-box {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.simulator-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    color: var(--text-main);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #DCE3E8;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background-color: #F7F9FC;
}

.form-input:focus {
    background-color: #fff;
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 71, 186, 0.1);
}

.simulator-footer {
    grid-column: 1 / -1;
    margin-top: 10px;
}

.result-display {
    grid-column: 1 / -1;
    background: #F0F4F8;
    border-radius: var(--radius-md);
    padding: 24px;
    margin-top: 24px;
    border: 1px dashed #DCE3E8;
    text-align: center;
    display: none;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--primary);
    color: rgba(255, 255, 255, 0.9);
    padding: 80px 0 24px;
    font-size: 14px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 24px;
}

.footer-links h3 {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    display: block;
    margin-bottom: 12px;
}

footer p{
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Mobile --- */
@media (max-width: 992px) {
    .hero { padding: 60px 0; }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content p { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-badge { display: none; }
    
    .nav-list { display: none; } /* JS Toggle */
    .mobile-toggle { display: block; }
    
    .simulator-form { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 10px; }
}