/* ===============================
   PÁGINA SERVIÇOS – ELEVA
================================ */

/* CONTAINER PRINCIPAL */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 20px 80px;
}

/* ===============================
   INTRO
================================ */
.servicos-intro {
    text-align: center;
    margin-bottom: 80px;
}

.servicos-intro h1 {
    font-size: 2.6rem;
    margin-bottom: 16px;
    color: var(--text);
}

.servicos-intro p {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 760px;
    margin: 0 auto;
}

/* ===============================
   SERVIÇOS PRINCIPAIS
================================ */
.servicos-lista {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 100px;
}

.servico-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 22px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.04);
}

.servico-item:hover {
    transform: translateY(-6px);
}

.icon-box {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.servico-item h3 {
    margin-bottom: 12px;
}

.servico-item p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* ===============================
   MODELOS DE ATUAÇÃO (NOVO DESIGN)
================================ */
.modelos-atuacao {
    text-align: center;
    margin-bottom: 140px;
    background: linear-gradient(to bottom, #f8fafc, #edf2f7);
    padding: 60px 40px;
    border-radius: 40px;
    border: 1px solid rgba(0,0,0,0.03);
}

.modelos-atuacao h2 {
    font-size: 2.3rem;
    margin-bottom: 50px;
    color: var(--text);
}

.modelos-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.modelo-card {
    background: #fff;
    padding: 50px 40px;
    width: 45%;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
    cursor: default;
}

/* Animação de Foco */
.modelos-wrapper:hover .modelo-card {
    opacity: 0.7;
    transform: scale(0.95);
}

.modelos-wrapper .modelo-card:hover {
    opacity: 1;
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 25px 50px rgba(30, 144, 255, 0.15);
    border-color: var(--accent);
}

/* Estilos Individuais */
.modelo-icon {
    width: 80px;
    height: 80px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--accent);
    transition: transform 0.4s ease;
}

.modelo-card:hover .modelo-icon {
    transform: rotateY(180deg);
    background: var(--accent);
    color: #fff;
}

.modelo-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text);
}

.modelo-card p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.modelo-tag {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exclusivo .modelo-tag {
    background: #e0f2fe;
    color: #0284c7;
}

.compartilhado .modelo-tag {
    background: #f0fdf4;
    color: #16a34a;
}

/* VS Badge (O "OU" no meio) */
.modelo-vs {
    width: 60px;
    height: 60px;
    background: var(--text);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    z-index: 20; 
    margin: 0 -30px; 
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    pointer-events: none; 
}

/* ===============================
   TRADE MARKETING (UNIQUE DARK DESIGN)
================================ */
.trade-unique {
    background: #0f2a5e; /* Azul Eleva Escuro */
    border-radius: 40px;
    padding: 80px 60px;
    margin-bottom: 140px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 42, 94, 0.3);
}

/* Decorative Background Element */
.trade-unique::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.15) 0%, transparent 70%);
    z-index: 0;
}

.trade-content {
    position: relative;
    z-index: 1;
}

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

.trade-header h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.trade-header h2 span {
    color: var(--accent); /* Azul Claro */
}

.trade-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.trade-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.trade-card {
    background: rgba(255, 255, 255, 0.05); /* Glassmorphism */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.trade-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.card-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 0;
    right: 10px;
    line-height: 1;
    pointer-events: none;
}

.card-icon {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: inline-block;
}

.trade-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #fff;
}

.trade-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}


/* ===============================
   LIDERANÇA E GESTÃO
================================ */
.lideranca-section {
    background: #f4f6f9;
    padding: 90px 50px;
    border-radius: 40px;
    margin-bottom: 140px;
    text-align: center;
}

.lideranca-section h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
}

.lideranca-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    color: var(--muted);
}

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

.lideranca-item {
    padding: 20px;
}

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

.lideranca-item h4 {
    margin-bottom: 8px;
}

.lideranca-item p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* ===============================
   FROTA
================================ */
.frota-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 140px;
}

.frota-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.frota-section p {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.frota-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: var(--shadow);
}

/* ===============================
   CTA SECTION
================================ */
.cta-section {
    text-align: center;
    background: #0f2a5e;
    padding: 80px 20px;
    border-radius: 30px;
    color: #fff;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(15, 42, 94, 0.2);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #fff; /* White text on dark background */
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-btn {
    display: inline-block;
    background: #fff;
    color: #0f2a5e; /* Navy blue text on white button */
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    background: #f8fafc;
}

/* ===============================
   RESPONSIVO
================================ */
@media (max-width: 1100px) {
    .servicos-lista {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trade-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .frota-section {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lideranca-section {
        padding: 70px 30px;
    }
    
    .modelos-wrapper {
        flex-direction: column;
        gap: 0; /* Removendo gap para controlar via margem no OU */
    }
    
    .modelo-card {
        width: 100%;
        padding: 35px 25px; /* Reduzindo padding no mobile */
    }
    
    .modelo-vs {
        margin: -20px auto; /* Sobrepondo levemente os cards para um visual melhor */
        transform: none;
        position: relative;
        z-index: 25;
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .modelo-card h3 { font-size: 1.4rem; }
    .modelo-icon { width: 60px; height: 60px; font-size: 1.5rem; }
    
    /* Remove hover complexo no mobile para evitar bugs de layout */
    .modelos-wrapper:hover .modelo-card {
        opacity: 1;
        transform: scale(1);
    }
    
    .modelos-wrapper .modelo-card:hover {
        transform: none;
    }
}

@media (max-width: 600px) {
    .servicos-lista {
        grid-template-columns: 1fr;
    }
    
    .trade-grid {
        grid-template-columns: 1fr;
    }

    .servicos-intro h1 {
        font-size: 2.1rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .modelos-atuacao, .trade-unique {
        padding: 40px 20px;
    }
}

.frota-section-new {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    padding: 60px 5%;
    border-radius: 8px;
    margin-top: 40px;
    gap: 40px;
}

@media (max-width: 900px) {
    .frota-section-new {
        flex-direction: column;
        padding: 40px 20px;
    }
}

.frota-content-new {
    flex: 1;
    max-width: 500px;
}

.frota-content-new h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.frota-content-new p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.frota-slider {
    width: 100%;
    max-width: 500px; /* Restrict max width */
    height: 350px; /* Fixed height for consistency */
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.frota-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
