/* =====================================================
   FLEXCREDI - INTERNAL PAGES OPTIMIZATION
   Estilos consistentes para páginas internas
   Mesmas cores e fontes da página principal
   ===================================================== */

/* =====================================================
   1. TIPOGRAFIA GLOBAL - FONTE INTER
   ===================================================== */

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

*:not(i):not([class*="fa-"]):not(.fas):not(.far):not(.fab):not(.fal):not(.fad) {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #fff;
    color: #333;
}

/* =====================================================
   2. CORREÇÃO FONTAWESOME
   ===================================================== */

i.fas, i.far, i.fab, i.fal, i.fad,
.fas, .far, .fab, .fal, .fad,
[class*="fa-"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", FontAwesome !important;
    font-style: normal !important;
    font-weight: 900 !important;
    display: inline-block;
    line-height: 1;
}

i.far, .far { font-weight: 400 !important; }
i.fab, .fab { 
    font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands", FontAwesome !important;
    font-weight: 400 !important; 
}

/* =====================================================
   3. HEADER - IGUAL À HOMEPAGE
   ===================================================== */

.top-bar {
    display: none !important;
}

.header,
header {
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
    padding: 10px 0 !important;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 45px !important;
    max-height: 45px !important;
}

/* Menu */
.nav-menu,
.navbar-nav {
    display: flex;
    gap: 5px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #333 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    padding: 8px 14px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.nav-link:hover,
.nav-link.active {
    background: #f0f0f0 !important;
    color: #28a745 !important;
}

.nav-link i {
    display: none !important;
}

/* Botões do Header */
.navbar-buttons,
.header-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-secondary,
.btn-login {
    background: #28a745 !important;
    color: #fff !important;
    padding: 8px 16px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    border: none !important;
    text-decoration: none !important;
}

.btn-primary,
.btn-apply {
    background: #fff !important;
    color: #28a745 !important;
    border: 2px solid #28a745 !important;
    padding: 8px 16px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    text-decoration: none !important;
}

.btn-primary:hover,
.btn-apply:hover {
    background: #28a745 !important;
    color: #fff !important;
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 4px;
}

.language-btn {
    padding: 4px 8px !important;
    font-size: 16px !important;
    background: transparent !important;
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    cursor: pointer;
}

.language-btn.active {
    border-color: #28a745 !important;
    background: #f0fff4 !important;
}

/* =====================================================
   4. HERO BANNER - VERDE COM IMAGEM
   ===================================================== */

.hero,
.page-hero,
.hero-section {
    background: linear-gradient(135deg, #28a745 0%, #20c997 50%, #28a745 100%) !important;
    padding: 50px 0 !important;
    min-height: auto !important;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern-bg.png') repeat;
    opacity: 0.1;
}

.hero .container,
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero h1,
.hero-content h1 {
    color: #fff !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero p,
.hero-content p {
    color: rgba(255,255,255,0.95) !important;
    font-size: 16px !important;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =====================================================
   5. SEÇÕES DE CONTEÚDO
   ===================================================== */

section,
.section {
    padding: 50px 0 !important;
    background: #fff;
}

section:nth-child(even),
.section:nth-child(even) {
    background: #f9fafb;
}

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

.section-title,
.section h2,
section h2 {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #333 !important;
    text-align: center;
    margin-bottom: 10px !important;
}

.section-subtitle,
.section > p:first-of-type {
    font-size: 15px !important;
    color: #666 !important;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* =====================================================
   6. CARDS - ESTILO CONSISTENTE
   ===================================================== */

.card,
.feature-card,
.value-card,
.service-card {
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 25px !important;
    text-align: center;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
}

.card:hover,
.feature-card:hover,
.value-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
    border-color: #28a745 !important;
}

.card-icon,
.card-icon i,
.text-verde {
    color: #28a745 !important;
}

.card-icon {
    font-size: 48px !important;
    margin-bottom: 15px !important;
}

.card h3,
.feature-card h3,
.value-card h3 {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #28a745 !important;
    margin-bottom: 10px !important;
}

.card p,
.feature-card p,
.value-card p {
    font-size: 14px !important;
    color: #666 !important;
    line-height: 1.6 !important;
    margin: 0;
}

/* Grid de Cards */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.col-4,
.col-md-4 {
    flex: 0 0 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
}

.col-3,
.col-md-3 {
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
}

/* =====================================================
   7. VALORES (Our Values) - GRID CORRIGIDO
   ===================================================== */

.valores-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
}

/* Override default row behavior inside valores-grid */
.valores-grid .row {
    display: contents !important;
}

.valores-grid .col-6 {
    flex: none !important;
    max-width: none !important;
    width: 100% !important;
}

.valor-card {
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 28px !important;
    height: 100% !important;
    min-height: 220px !important;
    display: flex !important;
    flex-direction: column !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
}

.valor-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
    border-color: #28a745 !important;
}

.valor-header {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    margin-bottom: 16px !important;
}

.valor-icon {
    width: 48px !important;
    height: 48px !important;
    background: #e8f5e9 !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.valor-icon i {
    font-size: 22px !important;
    color: #28a745 !important;
}

.valor-card h4 {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin: 0 !important;
}

.valor-card p {
    font-size: 14px !important;
    color: #666 !important;
    line-height: 1.7 !important;
    margin: 0 !important;
    flex-grow: 1 !important;
}

/* 3 colunas para desktop grande */
@media (min-width: 1200px) {
    .valores-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .valor-card {
        min-height: 250px !important;
    }
}

/* 2 colunas para tablet e desktop médio */
@media (min-width: 768px) and (max-width: 1199px) {
    .valores-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* 1 coluna para mobile */
@media (max-width: 767px) {
    .valores-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    
    .valor-card {
        min-height: auto !important;
        padding: 20px !important;
    }
    
    .valor-header {
        gap: 12px !important;
        margin-bottom: 12px !important;
    }
    
    .valor-icon {
        width: 44px !important;
        height: 44px !important;
    }
    
    .valor-card h4 {
        font-size: 16px !important;
    }
    
    .valor-card p {
        font-size: 13px !important;
    }
}

/* =====================================================
   8. PROFESSIONAL TRUST SECTION
   ===================================================== */

.professional-trust-section {
    padding: 60px 0 !important;
    background: #f9fafb !important;
}

.professional-trust-section .row {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 40px !important;
}

.professional-trust-section .col-6 {
    flex: 1 !important;
    min-width: 300px !important;
    max-width: none !important;
}

.professional-content h2 {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #333 !important;
    margin-bottom: 16px !important;
    line-height: 1.3 !important;
}

.professional-content .text-large {
    font-size: 16px !important;
    color: #666 !important;
    line-height: 1.7 !important;
    margin-bottom: 24px !important;
}

.trust-benefits {
    margin-bottom: 24px !important;
}

.benefit-item {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid #eee !important;
}

.benefit-item:last-child {
    border-bottom: none !important;
}

.benefit-item i {
    width: 36px !important;
    height: 36px !important;
    background: #e8f5e9 !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    color: #28a745 !important;
    flex-shrink: 0 !important;
}

.benefit-item span {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #333 !important;
}

.professional-image {
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1) !important;
}

.professional-image img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: cover !important;
}

/* Mobile */
@media (max-width: 768px) {
    .professional-trust-section .row {
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .professional-trust-section .col-6 {
        width: 100% !important;
        min-width: auto !important;
    }
    
    .professional-content h2 {
        font-size: 24px !important;
        text-align: center !important;
    }
    
    .professional-content .text-large {
        text-align: center !important;
    }
    
    .professional-image {
        max-width: 400px !important;
        margin: 0 auto !important;
    }
}

/* =====================================================
   9. NOSSA HISTÓRIA SECTION - COMPACTA
   ===================================================== */

section[aria-labelledby="historia-titulo"] {
    padding: 50px 0 !important;
    background: #f9fafb !important;
}

section[aria-labelledby="historia-titulo"] .row {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
}

section[aria-labelledby="historia-titulo"] .col-6 {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
}

section[aria-labelledby="historia-titulo"] h2 {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #333 !important;
    text-align: center !important;
    margin-bottom: 20px !important;
}

.historia-content {
    max-width: 900px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.historia-content p {
    font-size: 14px !important;
    color: #666 !important;
    line-height: 1.7 !important;
    margin-bottom: 12px !important;
}

.historia-content .text-large {
    font-size: 16px !important;
    color: #333 !important;
    font-weight: 500 !important;
}

.historia-cta {
    text-align: center !important;
    margin-top: 20px !important;
}

/* TIMELINE HORIZONTAL */
.timeline {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 15px !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative !important;
}

.timeline::before {
    display: none !important;
}

.timeline-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 0 !important;
    margin: 0 !important;
    border-left: none !important;
    position: relative !important;
}

.timeline-item::before,
.timeline-item::after {
    display: none !important;
}

.timeline-marker {
    width: 50px !important;
    height: 50px !important;
    background: #28a745 !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 12px !important;
    position: relative !important;
    left: auto !important;
    transform: none !important;
}

.timeline-marker i {
    font-size: 20px !important;
    color: #fff !important;
}

.timeline-content {
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 10px !important;
    padding: 15px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
    width: 100% !important;
    margin: 0 !important;
}

.timeline-content h4 {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #28a745 !important;
    margin-bottom: 6px !important;
}

.timeline-content p {
    font-size: 12px !important;
    color: #666 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}

/* Timeline Responsivo - Tablet */
@media (max-width: 1200px) {
    .timeline {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

/* Timeline Responsivo - Mobile */
@media (max-width: 768px) {
    .timeline {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    .timeline-marker {
        width: 40px !important;
        height: 40px !important;
    }
    
    .timeline-marker i {
        font-size: 16px !important;
    }
    
    .timeline-content {
        padding: 12px !important;
    }
    
    .timeline-content h4 {
        font-size: 13px !important;
    }
    
    .timeline-content p {
        font-size: 11px !important;
    }
    
    .historia-content p {
        font-size: 13px !important;
        text-align: left !important;
    }
}

.faq-category {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.faq-category button,
.category-btn {
    padding: 8px 16px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    background: #f5f5f5 !important;
    border: 1px solid #ddd !important;
    border-radius: 20px !important;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-category button.active,
.category-btn.active {
    background: #28a745 !important;
    color: #fff !important;
    border-color: #28a745 !important;
}

.faq-item,
.accordion-item {
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    margin-bottom: 10px !important;
    overflow: hidden;
}

.faq-question,
.accordion-header {
    padding: 15px 20px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #333 !important;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer,
.accordion-body {
    padding: 0 20px 15px !important;
    font-size: 14px !important;
    color: #666 !important;
    line-height: 1.6;
}

/* =====================================================
   9. COMO FUNCIONA (Steps)
   ===================================================== */

.process-step,
.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.step-number {
    width: 40px !important;
    height: 40px !important;
    background: #e8f5e9 !important;
    color: #28a745 !important;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px !important;
    font-weight: 700 !important;
    flex-shrink: 0;
}

.step-content h3,
.step-title {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin-bottom: 8px !important;
}

.step-content p,
.step-description {
    font-size: 14px !important;
    color: #666 !important;
    margin-bottom: 10px;
}

.step-content ul,
.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-content li {
    font-size: 13px !important;
    color: #666 !important;
    padding: 3px 0;
}

.step-content li::before {
    content: '✓';
    color: #28a745;
    margin-right: 8px;
    font-weight: bold;
}

/* =====================================================
   10. CONTATO
   ===================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.contact-card {
    background: #fff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 30px 20px !important;
    text-align: center;
}

.contact-icon {
    font-size: 36px !important;
    color: #28a745 !important;
    margin-bottom: 15px !important;
}

.contact-title {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin-bottom: 8px !important;
}

.contact-info {
    font-size: 14px !important;
    color: #666 !important;
    line-height: 1.6;
}

.contact-info a {
    color: #28a745 !important;
    text-decoration: none;
}

/* Formulário de Contato */
.contact-form {
    background: #f9fafb;
    border-radius: 12px;
    padding: 30px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #333 !important;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}

.form-control,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 12px 15px !important;
    font-size: 14px !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    background: #fff !important;
    transition: border-color 0.2s ease;
}

.form-control:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #28a745 !important;
}

/* =====================================================
   11. SERVIÇOS (Credit Products)
   ===================================================== */

.service-card {
    border-radius: 12px !important;
    overflow: hidden;
}

.service-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    padding: 25px !important;
    color: #fff !important;
}

.service-header h3 {
    color: #fff !important;
    font-size: 20px !important;
    margin-bottom: 5px !important;
}

.service-header p {
    color: rgba(255,255,255,0.9) !important;
    font-size: 13px !important;
}

.service-body {
    padding: 25px !important;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.service-features li {
    font-size: 13px !important;
    padding: 6px 0;
    color: #666;
}

.service-features li::before {
    content: '✓';
    color: #28a745;
    margin-right: 10px;
    font-weight: bold;
}

/* =====================================================
   12. FOOTER - LAYOUT COMPLETO
   ===================================================== */

footer,
.footer {
    background: #1a1a1a !important;
    color: #fff !important;
    padding: 50px 0 0 !important;
    overflow-x: hidden !important;
}

.footer .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.footer-content {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr !important;
    gap: 50px !important;
    padding-bottom: 40px !important;
    border-bottom: 1px solid #333 !important;
}

.footer-section {
    min-width: 0 !important;
}

.footer-section h4 {
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.footer-section > p {
    color: #999 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 10px !important;
}

.footer-section p strong {
    color: #28a745 !important;
}

/* Social Links */
.social-links {
    display: flex !important;
    gap: 10px !important;
    margin-top: 15px !important;
}

.social-links a {
    width: 40px !important;
    height: 40px !important;
    background: #333 !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #28a745 !important;
    font-size: 18px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.social-links a:hover {
    background: #28a745 !important;
    color: #fff !important;
}

/* Footer Links - VERTICAL LIST */
.footer-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.footer-links li {
    margin: 0 !important;
    padding: 0 !important;
}

.footer-links a {
    color: #999 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
    display: inline-block !important;
}

.footer-links a:hover {
    color: #28a745 !important;
}

/* Contact Info in Footer */
.footer-section p i {
    color: #28a745 !important;
    margin-right: 10px !important;
    width: 16px !important;
    display: inline-block !important;
}

.footer-section p a {
    color: #999 !important;
    text-decoration: none !important;
}

.footer-section p a:hover {
    color: #28a745 !important;
}

/* Footer Bottom */
.footer-bottom {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    padding: 20px 0 !important;
}

.footer-bottom p {
    color: #666 !important;
    font-size: 13px !important;
    margin: 0 !important;
}

.footer-bottom a {
    color: #666 !important;
    text-decoration: none !important;
}

.footer-bottom a:hover {
    color: #28a745 !important;
}

/* Footer Responsivo - Tablet */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 40px !important;
    }
}

/* Footer Responsivo - Mobile */
@media (max-width: 768px) {
    footer, .footer {
        padding: 40px 0 0 !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
    }
    
    .footer-section h4 {
        font-size: 14px !important;
        margin-bottom: 15px !important;
    }
    
    .social-links {
        justify-content: center !important;
    }
    
    .footer-links {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 8px 16px !important;
    }
    
    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        gap: 10px !important;
    }
}

/* =====================================================
   13. RESPONSIVO MOBILE
   ===================================================== */

@media (max-width: 992px) {
    .col-4, .col-md-4 {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
    
    .col-3, .col-md-3 {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 24px !important;
    }
    
    .hero p {
        font-size: 14px !important;
    }
    
    section {
        padding: 35px 15px !important;
    }
    
    .section-title,
    section h2 {
        font-size: 22px !important;
    }
    
    .col-4, .col-md-4,
    .col-3, .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card {
        padding: 20px !important;
    }
    
    .nav-menu {
        display: none;
    }
}

