/* ============================================
   STYLE.CSS - ALPHA CONSIG
   Estilos principais para o site Alpha Consig
   Versão: 3.0 | Organizada e Otimizada
   ============================================ */

/* ============================================
   SEÇÃO 1: VARIÁVEIS GLOBAIS
   ============================================ */
:root {
    /* Cores da marca Alpha Consig */
    --color-primary: #0A1A3D;       /* Azul escuro profundo */
    --color-secondary: #D4AF37;     /* Dourado */
    --color-accent: #1E3A8A;        /* Azul médio */
    --color-light: #F8FAFC;         /* Cinza claro */
    --color-white: #FFFFFF;
    --color-gray: #64748B;
    --color-gray-dark: #334155;
    --color-success: #10B981;
    
    /* Tipografia */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Bordas */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* ============================================
   SEÇÃO 2: RESET E ESTILOS BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-dark);
    background-color: var(--color-white);
    padding-top: 80px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* ============================================
   SEÇÃO 3: TIPOGRAFIA
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

.highlight {
    color: var(--color-secondary);
}

.lead {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--color-gray);
}

.section-title {
    color: var(--color-primary);
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-subtitle {
    color: var(--color-gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* ============================================
   SEÇÃO 4: LINKS E BOTÕES
   ============================================ */
a {
    color: var(--color-accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-secondary);
}

/* Estilos de botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    border-color: var(--color-secondary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    color: var(--color-secondary);
    border-color: var(--color-secondary);
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

.btn-outline-light {
    color: var(--color-white);
    border-color: var(--color-white);
    background-color: transparent;
}

.btn-outline-light:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--color-white);
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ============================================
   SEÇÃO 5: COMPONENTES GLOBAIS
   ============================================ */

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: var(--color-white);
}

/* Logo Alpha Consig */
.alpha-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.shield-logo {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.shield-logo::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border: 2px solid var(--color-secondary);
    border-radius: 8px;
}

.alpha-symbol {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-secondary);
    z-index: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-secondary);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-white);
    letter-spacing: 1px;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--color-secondary);
    letter-spacing: 0.5px;
}

/* Badges */
.badge {
    padding: 6px 12px;
    font-weight: 500;
    border-radius: 20px;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.bg-blue {
    background-color: var(--color-primary);
    color: white;
}

.bg-alpha {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    font-weight: 600;
}

/* ============================================
   SEÇÃO 6: NAVEGAÇÃO
   ============================================ */
.navbar {
    background: linear-gradient(135deg, var(--color-primary) 0%, #1a144f 100%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    padding: 12px 0;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    backdrop-filter: blur(8px);
    border-bottom: 2px solid var(--color-secondary);
}

.navbar.scrolled {
    padding: 8px 0;
    background: rgba(10, 26, 61, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* Links de navegação */
.nav-link {
    position: relative;
    font-weight: 500;
    padding: 10px 18px !important;
    color: var(--color-white) !important;
    transition: all 0.3s ease;
    margin: 0 4px;
    border-radius: 6px;
}

.nav-link-content {
    position: relative;
    z-index: 2;
}

.nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: all 0.3s ease;
}

.nav-link:hover:before,
.nav-link.active:before {
    width: calc(100% - 36px);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-white) !important;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link:hover .nav-link-content,
.nav-link.active .nav-link-content {
    color: var(--color-secondary);
}

/* Dropdown Menu */
.dropdown-menu {
    background: rgba(10, 26, 61, 0.95);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0;
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    color: var(--color-white);
    transition: all 0.2s ease;
    position: relative;
}

.dropdown-item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--color-secondary);
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1);
    padding-left: 25px;
}

.dropdown-item:hover:before {
    transform: scaleY(1);
}

/* Botão de Contato na Navbar */
.btn-contact {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #c9a42e 100%);
    border-radius: 6px;
    margin-left: 10px !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-contact .nav-link-content {
    color: var(--color-primary) !important;
    font-weight: 600;
}

/* ============================================
   SEÇÃO 7: HERO SECTIONS
   ============================================ */

/* Hero Section Geral para páginas internas */
.page-hero-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: var(--color-white);
    padding: 120px 0 60px;
    margin-top: -80px;
    position: relative;
    overflow: hidden;
}

.page-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" opacity="0.05"><path fill="white" d="M0,50 C150,150 350,0 500,50 C650,100 850,0 1000,50 L1000,100 L0,100 Z"/></svg>');
    background-size: cover;
    background-position: bottom;
}

.page-hero-section .hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--color-white);
}

.page-hero-section .lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Breadcrumb */
.page-hero-section .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0;
}

.page-hero-section .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.page-hero-section .breadcrumb-item a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-hero-section .breadcrumb-item a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.page-hero-section .breadcrumb-item.active {
    color: var(--color-white);
}

/* Hero Carousel (Página Inicial) */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-bottom: 60px;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    transform: scale(1.02);
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

.hero-carousel .hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-carousel .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: white;
    font-size: 1.1rem;
}

.feature-item i {
    margin-right: 10px;
    color: var(--color-secondary);
    font-size: 1.3rem;
}

/* Controles do Carousel */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control:hover {
    background: var(--color-secondary);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: 30px;
}

.carousel-control.next {
    right: 30px;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: scale(1.2);
}

/* ============================================
   SEÇÃO 8: SEÇÕES ESPECÍFICAS DA HOME
   ============================================ */

/* Seção de Confiança */
.trust-section {
    background-color: var(--color-light);
    position: relative;
}

.trust-card {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.trust-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.trust-icon i {
    font-size: 1.5rem;
    color: var(--color-white);
}

/* Seção de Produtos */
.products-section {
    background-color: var(--color-white);
}

.product-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 25px;
    position: relative;
    z-index: 1;
    background: var(--color-white);
}

.product-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.product-card:hover h3 {
    color: var(--color-secondary);
}

.product-card p {
    color: var(--color-gray);
    margin-bottom: 20px;
}

.badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

/* Seção Bancos Parceiros */
.partners-section {
    background-color: var(--color-light);
}

.partner-logo {
    background-color: var(--color-white);
    padding: 25px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.partner-logo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary);
}

.partner-logo img {
    max-height: 70px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Seção Sobre */
.about-section {
    background-color: var(--color-white);
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.trust-features {
    margin-top: 30px;
}

.trust-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.trust-feature i {
    color: var(--color-secondary);
    font-size: 1.25rem;
    margin-top: 3px;
}

/* Seção CTA Geral */
.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-title {
    color: var(--color-white);
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.cta-actions {
    position: relative;
    z-index: 1;
}

/* Seção Notícias */
.ultimas-noticias {
    background-color: var(--color-light);
}

.noticia-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.noticia-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.noticia-img-container {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.noticia-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.noticia-card:hover .noticia-img {
    transform: scale(1.05);
}

.noticia-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.noticia-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-primary);
}

/* ============================================
   SEÇÃO 9: PÁGINA DE CONTATO
   ============================================ */

/* Quick Contact Section */
.quick-contact {
    background: var(--color-light);
}

.quick-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.quick-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary);
}

.quick-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.quick-card:hover .quick-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--color-secondary), #c9a42e);
}

.quick-card h4 {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-form-container {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header {
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.form-header h3 {
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.form-header i {
    color: var(--color-secondary);
}

/* Formulários */
.form-floating {
    position: relative;
}

/* CORREÇÃO PARA O SELECT DO ASSUNTO */
.form-floating > .form-control,
.form-floating > .form-select {
    height: calc(3.5rem + 2px);
    line-height: 1.25;
    padding: 1rem 0.75rem;
}

/* Correção específica para o placeholder do select */
.form-floating > .form-select:not([size]):not([multiple]) {
    height: calc(3.5rem + 2px);
}

.form-floating > label {
    color: var(--color-gray);
    padding: 1rem 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: calc(100% - 1.5rem);
}

/* Estilo para quando o select tem um valor selecionado */
.form-floating > .form-select:not(:focus):not(:placeholder-shown) ~ label,
.form-floating > .form-select:focus ~ label,
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--color-secondary);
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
    opacity: 1;
}

/* Garante que o select com placeholder fique visível */
.form-floating > .form-select:not([value=""]):not(:focus):not(:placeholder-shown) ~ label {
    color: var(--color-gray);
    transform: none;
    opacity: 0.65;
}

.form-control,
.form-select {
    border: 1px solid var(--color-light);
    padding: 12px 15px;
    font-size: 1rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    width: 100%;
    background-color: var(--color-white);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    outline: none;
}

/* Estilo para o select quando não tem valor selecionado */
.form-select:invalid,
.form-select option[value=""][disabled] {
    color: var(--color-gray);
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
}

.form-control.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

.is-invalid ~ .invalid-feedback {
    display: block;
}

/* Alertas */
.alert {
    border-radius: var(--border-radius);
    border: none;
    padding: 15px 20px;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert i {
    font-size: 1.1rem;
}

/* Checkbox personalizado */
.form-check-input {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.2em;
    border: 2px solid var(--color-light);
}

.form-check-input:checked {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.form-check-input:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.form-check-label a {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 600;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* Contact Info Section */
.contact-info-section {
    background: var(--color-white);
}

.contact-info-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--color-secondary), #c9a42e);
}

.contact-info-card h4 {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

/* ============================================
   SEÇÃO 10: PÁGINA DE EMPRÉSTIMO
   ============================================ */

/* Trust Badges */
.trust-badges {
    background: var(--color-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.trust-badge i {
    color: var(--color-secondary);
    font-size: 1.2rem;
}

.trust-badge span {
    font-weight: 600;
    color: var(--color-primary);
}

/* Loan Section */
.loan-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.loan-form-container,
.loan-results-container {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.form-header,
.results-header {
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 15px;
}

.form-label {
    color: var(--color-primary);
    font-size: 0.95rem;
}

.input-group-text {
    background: var(--color-primary);
    color: var(--color-white);
    border: 1px solid var(--color-primary);
    font-weight: 600;
}

.form-range {
    height: 6px;
}

.form-range::-webkit-slider-thumb {
    background: var(--color-secondary);
    border: 2px solid var(--color-white);
    box-shadow: var(--shadow-sm);
}

.form-range::-moz-range-thumb {
    background: var(--color-secondary);
    border: 2px solid var(--color-white);
    box-shadow: var(--shadow-sm);
}

/* Results Card */
.results-card {
    background: var(--color-light);
    border-radius: var(--border-radius);
    padding: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.result-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    color: var(--color-gray);
    font-weight: 500;
}

.result-value {
    color: var(--color-primary);
    font-size: 1.1rem;
}

.results-placeholder {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

/* Alert */
.alert-info-light {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--color-primary);
    border-radius: var(--border-radius);
    padding: 15px;
}

.alert-info-light i {
    color: var(--color-secondary);
}

/* Modal */
.modal-content {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.modal-header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: var(--color-white);
    border-bottom: 2px solid var(--color-secondary);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.modal-title i {
    color: var(--color-secondary);
}

.btn-close {
    filter: invert(1);
}

/* Benefits Section */
.benefits-section {
    background: var(--color-white);
}

.benefit-card {
    background: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--color-secondary), #c9a42e);
}

.benefit-card h4 {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

/* FAQ Section */
.faq-section {
    background: var(--color-light);
}

.accordion-button {
    background: var(--color-white);
    color: var(--color-primary);
    font-weight: 600;
    border: 1px solid var(--color-light);
    padding: 20px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: var(--color-white);
    border-color: var(--color-secondary);
}

.accordion-button:not(.collapsed) i {
    color: var(--color-secondary);
}

.accordion-button:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.accordion-button i {
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.accordion-body {
    background: var(--color-white);
    border: 1px solid var(--color-light);
    border-top: none;
    padding: 25px;
}

.accordion-body ul {
    padding-left: 20px;
}

.accordion-body li {
    margin-bottom: 8px;
    color: var(--color-gray-dark);
}

.accordion-body strong {
    color: var(--color-primary);
}

/* ============================================
   SEÇÃO 11: RODAPÉ
   ============================================ */
.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    position: relative;
}

.footer h5 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-secondary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding-left: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-top: 3px;
    color: var(--color-secondary);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--color-secondary);
    transform: translateY(-3px);
}

/* ============================================
   SEÇÃO 12: COMPONENTES EXTRAS
   ============================================ */

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 15px 0;
    z-index: 999;
    transform: translateY(100%);
    transition: all 0.3s ease;
    border-top: 2px solid var(--color-secondary);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent a {
    color: var(--color-secondary);
    text-decoration: underline;
}

/* ============================================
   SEÇÃO 13: ANIMAÇÕES
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.pulse-animation:hover {
    animation: pulse 1.5s infinite;
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.quick-card,
.contact-info-card {
    opacity: 0;
}

.quick-card.animate-in,
.contact-info-card.animate-in {
    animation-delay: calc(var(--animation-order) * 0.1s);
}

/* ============================================
   SEÇÃO 14: RESPONSIVIDADE
   ============================================ */

/* Desktop Large */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Tablet (992px - 1199px) */
@media (max-width: 1199.98px) {
    .hero-carousel {
        height: 550px;
    }
    
    .hero-carousel .hero-title {
        font-size: 2.5rem;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991.98px) {
    body {
        padding-top: 70px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-carousel {
        height: 500px;
    }
    
    .hero-carousel .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-carousel .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-hero-section .hero-title {
        font-size: 2.2rem;
    }
    
    .navbar-collapse {
        background: rgba(10, 26, 61, 0.98);
        padding: 20px;
        border-radius: 0 0 12px 12px;
        margin-top: 10px;
        backdrop-filter: blur(10px);
    }
    
    .nav-link {
        margin: 4px 0;
        padding: 12px 16px !important;
    }
    
    .nav-link:before {
        display: none;
    }
    
    .btn-contact {
        margin-left: 0 !important;
        margin-top: 10px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .trust-badges .row {
        gap: 15px;
        justify-content: center;
    }
    
    .trust-badge {
        padding: 12px 20px;
    }
    
    .quick-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .contact-form-container {
        padding: 30px !important;
    }
}

/* Mobile (576px - 767px) */
@media (max-width: 767.98px) {
    .page-hero-section {
        padding: 100px 0 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-carousel {
        height: 450px;
    }
    
    .hero-carousel .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .page-hero-section .hero-title {
        font-size: 1.8rem;
    }
    
    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .product-card {
        margin-bottom: 20px;
    }
    
    .quick-card,
    .contact-info-card,
    .benefit-card {
        margin-bottom: 20px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-actions .btn {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Mobile Small (≤ 575px) */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-carousel {
        height: 400px;
    }
    
    .hero-carousel .hero-title {
        font-size: 1.6rem;
    }
    
    .page-hero-section .hero-title {
        font-size: 1.6rem;
    }
    
    .trust-badge {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .trust-badge i {
        font-size: 1rem;
    }
    
    .quick-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-icon,
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-form-container {
        padding: 20px !important;
    }
    
    .form-control,
    .form-select {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .accordion-button {
        padding: 15px;
        font-size: 0.95rem;
    }
}

/* ============================================
   SEÇÃO 15: UTILITÁRIOS
   ============================================ */
.text-center {
    text-align: center;
}

.text-white {
    color: var(--color-white) !important;
}

.bg-light {
    background-color: var(--color-light) !important;
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

.bg-secondary {
    background-color: var(--color-secondary) !important;
}

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 0.25rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pt-5 { padding-top: 3rem !important; }

.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 0.25rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pb-5 { padding-bottom: 3rem !important; }