/* ==========================================================================
   TEMA CLARO - ALTO CONTRASTE E PROFISSIONALISMO
   CORES BASE: Branco, Azul Ciano (#03a3e1) e Amarelo (#ffcc00)
   ========================================================================== */

:root {
    --bg-page: #f8fafc;       /* Cinza quase branco, muito clean */
    --bg-white: #ffffff;      /* Branco puro para cartões */
    --blue-main: #03a3e1;     /* Azul da marca */
    --blue-dark: #0175a2;
    --blue-navy: #0f172a;     /* Azul muito escuro para textos principais */
    --yellow-main: #ffcc00;   /* Amarelo da marca */
    --yellow-hover: #e6b800;
    --text-main: #334155;     /* Cinza escuro para leitura confortável */
    --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(3, 163, 225, 0.1);
}

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

body.light-theme {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.text-blue {
    color: var(--blue-main);
}

/* ================= CABEÇALHO CLARO ================= */
.header-light {
    background-color: var(--bg-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--blue-navy);
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-weight: 600;
    color: var(--text-main);
    font-size: 1rem;
}

.nav-menu a:hover {
    color: var(--blue-main);
}

.btn-header-contact {
    background-color: var(--yellow-main);
    color: var(--blue-navy) !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700 !important;
}

.btn-header-contact:hover {
    background-color: var(--yellow-hover);
    transform: translateY(-2px);
}

/* ================= HERO SECTION CLARA ================= */
.hero-light {
    padding: 180px 20px 100px;
    background: radial-gradient(circle at top right, rgba(3, 163, 225, 0.05) 0%, transparent 60%), 
                var(--bg-white);
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.badge-blue {
    display: inline-block;
    background: rgba(3, 163, 225, 0.1);
    color: var(--blue-main);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.hero-light h1 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--blue-navy);
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.hero-light p {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-yellow {
    background: var(--yellow-main);
    color: var(--blue-navy);
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.2);
}

.btn-yellow:hover {
    background: var(--yellow-hover);
    transform: translateY(-3px);
}

.btn-blue-outline {
    background: transparent;
    color: var(--blue-main);
    border: 2px solid var(--blue-main);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-blue-outline:hover {
    background: var(--blue-main);
    color: var(--bg-white);
}

/* ================= SECÇÃO DE SERVIÇOS (DUAL-PATH) ================= */
.services-split {
    padding: 80px 0;
    background: var(--bg-page);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(3, 163, 225, 0.1);
    color: var(--blue-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 16px;
    margin-bottom: 25px;
}

.service-icon.icon-yellow {
    background: rgba(255, 204, 0, 0.15);
    color: var(--yellow-hover);
}

.service-card h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue-navy);
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    margin-bottom: 30px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--blue-navy);
}

.service-list li i {
    color: var(--blue-main);
}

.service-link {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--blue-main);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: var(--blue-dark);
    gap: 12px;
}

/* ================= FAIXA DE CONFIANÇA ================= */
.trust-banner {
    background: var(--blue-main);
    color: var(--bg-white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.trust-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--bg-white);
}

.trust-text p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.trust-stats {
    flex: 1;
    display: flex;
    gap: 30px;
    justify-content: flex-end;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    min-width: 160px;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--yellow-main);
    margin-bottom: 15px;
}

.stat-item strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
}

/* ================= INTERIORES (EXPLORAÇÃO/ALUGUER) ================= */
.main-wrapper {
    max-width: 1200px;
    margin: 120px auto 60px;
    padding: 0 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--blue-navy);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-main);
}

.grid-machines {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.card-machine {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.card-machine:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.card-img-wrapper {
    height: 220px;
    overflow: hidden;
    background: #e2e8f0;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-body {
    padding: 25px;
    flex-grow: 1;
}

.card-body h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--blue-navy);
    margin-bottom: 10px;
}

.card-footer {
    padding: 0 25px 25px;
}

.btn-details {
    display: block;
    text-align: center;
    background: rgba(3, 163, 225, 0.1);
    color: var(--blue-main);
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
}

.btn-details:hover {
    background: var(--blue-main);
    color: var(--bg-white);
}

/* ================= RODAPÉ CLARO ================= */
.footer-light {
    background: var(--bg-white);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: 60px;
}

.footer-light p {
    color: var(--blue-navy);
    font-weight: 600;
}

.footer-sub {
    color: var(--text-main) !important;
    font-size: 0.9rem;
    font-weight: 400 !important;
    margin-top: 5px;
}

/* ================= RESPONSIVO ================= */
@media(max-width: 900px) {
    .hero-light h1 { font-size: 2.8rem; }
    .services-grid { grid-template-columns: 1fr; }
    .trust-flex { flex-direction: column; text-align: center; }
    .trust-stats { justify-content: center; flex-wrap: wrap; }
}

@media(max-width: 768px) {
    .nav-menu { display: none; }
}

/* ================= ESTADOS VAZIOS E PLACEHOLDERS ================= */
.empty-state-light {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-white);
    border-radius: 16px;
    border: 2px dashed rgba(0,0,0,0.08);
}

.empty-state-light i {
    font-size: 3rem;
    color: var(--blue-main);
    margin-bottom: 20px;
}

.card-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(0,0,0,0.15);
    background: #e2e8f0;
    border-radius: 16px;
}

/* ================= DETALHES DA MÁQUINA (CLARO) ================= */
.btn-back-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    margin-bottom: 30px;
    font-weight: 600;
}

.btn-back-light:hover {
    color: var(--blue-main);
}

.details-container-light {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.details-image-box img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.details-content-box h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--blue-navy);
    margin-bottom: 10px;
    line-height: 1.2;
}

.short-desc-blue {
    font-size: 1.2rem;
    color: var(--blue-main);
    font-weight: 600;
    margin-bottom: 25px;
}

.divider-light {
    height: 1px;
    background: rgba(0,0,0,0.06);
    margin: 30px 0;
}

.long-desc {
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.action-box-light {
    background: var(--bg-page);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.04);
    text-align: center;
}

.action-box-light p {
    color: var(--blue-navy);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.btn-yellow-solid {
    display: inline-block;
    background: var(--yellow-main);
    color: var(--blue-navy);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 8px 15px rgba(255, 204, 0, 0.25);
}

.btn-yellow-solid:hover {
    background: var(--yellow-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(255, 204, 0, 0.4);
}

/* RESPONSIVO DOS DETALHES */
@media(max-width: 900px) {
    .details-container-light { 
        grid-template-columns: 1fr; 
        gap: 30px; 
        padding: 30px; 
    }
}