/* FORÇA MODO CLARO - IMPEDE QUALQUER ESCURECIMENTO */
html {
    color-scheme: only light !important;
    background-color: #ffffff !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a2a3e;
    background-color: #ffffff !important;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER COM LOGO ===== */
header {
    background-color: #0a1c2f;
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-img {
    height: 85px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: transform 0.2s;
}

.logo-img:hover {
    transform: scale(1.02);
}

.logo h1 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
}

.logo h1 span {
    color: #ff8c00;
}

.logo p {
    color: #8aa3bb;
    font-size: 11px;
    letter-spacing: 1.5px;
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-menu a {
    color: #e0e8f0;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ff8c00;
}

.mobile-menu-icon {
    display: none;
    font-size: 28px;
    color: #ff8c00;
    cursor: pointer;
}

/* ===== BOTÕES ===== */
.btn-primary {
    background-color: #ff8c00;
    color: #0a1c2f;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: #ff8c00;
}

.btn-outline {
    background: transparent;
    border: 2px solid #ff8c00;
    color: #ff8c00;
    padding: 10px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.2s;
}

.btn-outline:hover {
    background-color: #ff8c00;
    color: #0a1c2f;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, #0a1c2f 0%, #0f2a3f 100%);
    color: white;
    padding: 80px 0;
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
}

.hero-content h2 {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.destaque {
    color: #ff8c00;
}

.hero-content p {
    font-size: 18px;
    color: #ccdde8;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== SEÇÕES GERAIS ===== */
.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #0a1c2f;
    margin-bottom: 16px;
}

.section-title:after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: #ff8c00;
    margin-top: 12px;
    border-radius: 4px;
}

.section-sub {
    color: #5a6e85;
    font-size: 18px;
    margin-bottom: 48px;
}

/* ===== DIFERENCIAIS ===== */
.differentials {
    padding: 80px 0;
    background-color: #f8fafd;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 20px;
}

.diff-item {
    text-align: center;
    padding: 28px 20px;
    background: white;
    border-radius: 20px;
    transition: transform 0.2s;
}

.diff-item:hover {
    transform: translateY(-5px);
}

.diff-item i {
    font-size: 48px;
    color: #ff8c00;
    margin-bottom: 20px;
}

.diff-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.diff-item p {
    color: #5a6e85;
}

/* ===== SHOWCASE ===== */
.showcase {
    padding: 60px 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.showcase-item {
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
    background: #f8fafd;
    transition: transform 0.2s;
}

.showcase-item:hover {
    transform: translateY(-5px);
}

.showcase-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.showcase-item h4 {
    font-size: 20px;
    margin: 20px 20px 10px;
}

.showcase-item p {
    color: #5a6e85;
    margin: 0 20px 20px;
}

/* ===== SEGMENTOS ===== */
.segmentos-home {
    padding: 80px 0;
}

.segmentos-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.segmentos-list span {
    background: #e8edf3;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 500;
    color: #1a2a3e;
}

/* ===== CTA ===== */
.cta {
    background-color: #ff8c00;
    padding: 60px 0;
    text-align: center;
    color: #0a1c2f;
}

.cta h3 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta .btn-primary {
    background-color: #0a1c2f;
    color: white;
}

.cta .btn-primary:hover {
    background-color: #0a1c2f;
    transform: translateY(-2px);
}

/* ===== PÁGINAS INTERNAS ===== */
.page-header {
    background: linear-gradient(135deg, #0a1c2f 0%, #0f2a3f 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: #ccdde8;
}

/* ===== SOBRE / EMPRESA ===== */
.about-section {
    padding: 80px 0;
}

.about-flex {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #0a1c2f;
}

.about-content p {
    margin-bottom: 20px;
    color: #4a5e75;
    line-height: 1.6;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.about-features div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features i {
    color: #ff8c00;
}

.about-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
}

/* ===== VALORES ===== */
.values {
    padding: 80px 0;
    background: #f8fafd;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.value-card {
    text-align: center;
    padding: 32px 20px;
    background: white;
    border-radius: 20px;
}

.value-card i {
    font-size: 48px;
    color: #ff8c00;
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.value-card p {
    color: #5a6e85;
}

/* ===== SOLUÇÕES ===== */
.solutions-section {
    padding: 80px 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 32px;
}

.solution-card {
    background: #f8fafd;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.2s;
    position: relative;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.solution-card i {
    font-size: 44px;
    color: #ff8c00;
    margin: 20px 24px 0 24px;
    display: inline-block;
}

.solution-card h3 {
    font-size: 22px;
    margin: 12px 24px;
}

.solution-card p {
    color: #5a6e85;
    margin: 0 24px 24px 24px;
}

/* ===== CONTATO ===== */
.contact-section {
    padding: 80px 0;
}

.contact-flex {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    background: #f8fafd;
    border-radius: 32px;
    padding: 48px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #0a1c2f;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-detail i {
    font-size: 28px;
    color: #ff8c00;
    width: 40px;
}

.contact-detail strong {
    display: block;
    font-size: 14px;
    color: #7a8ea3;
}

.contact-detail p {
    font-size: 18px;
    font-weight: 500;
}

.social-links {
    margin-top: 32px;
}

.social-links h4 {
    margin-bottom: 16px;
}

.social-links a {
    color: #0a1c2f;
    font-size: 28px;
    margin-right: 20px;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #ff8c00;
}

.contact-form {
    flex: 1;
    background: white;
    padding: 32px;
    border-radius: 24px;
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #dce3ec;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff8c00;
}

/* ===== FOOTER ===== */
footer {
    background-color: #0a1c2f;
    color: #8aa3bb;
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p {
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-col i {
    margin-right: 10px;
    color: #ff8c00;
}

.footer-col .social-links a {
    color: #8aa3bb;
    font-size: 22px;
    margin-right: 16px;
}

.footer-col .social-links a:hover {
    color: #ff8c00;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #1a3448;
    font-size: 13px;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .mobile-menu-icon {
        display: block;
    }
    
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        background: #0a1c2f;
        padding: 20px;
        border-radius: 16px;
        margin-top: 16px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-content h2 {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .contact-flex {
        padding: 24px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .logo-img {
        height: 55px;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .logo p {
        font-size: 9px;
    }
    
    .logo {
        gap: 10px;
    }
    
    .cta h3 {
        font-size: 24px;
    }
    
    .cta p {
        font-size: 16px;
    }
}