/* ==========================================
   NOVOS ESTILOS - HERO + SOLUÇÕES + DORES
   ========================================== */

/* Hero Novo com Foto da Equipe */
.hero-novo {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f6f3 0%, #ffffff 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-foto {
    width: 100%;
    height: auto;
}

.hero-foto img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(58, 10, 17, 0.15);
}

/* Soluções Estilo Ingrácio */
.solucoes-ingracio {
    padding: 80px 0;
    background: var(--color-white);
}

.solucoes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solucao-card {
    padding: 40px 35px;
    border-radius: 15px;
    color: var(--color-white);
    transition: var(--transition);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.solucao-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.card-vermelho {
    background: linear-gradient(135deg, #c9464a 0%, #a73337 100%);
}

.card-azul {
    background: linear-gradient(135deg, #3a7ca5 0%, #2d6082 100%);
}

.card-verde {
    background: linear-gradient(135deg, #5a9f7e 0%, #458667 100%);
}

.solucao-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-white);
}

.solucao-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.95);
}

.solucao-link {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.solucao-link:hover {
    gap: 12px;
}

.solucao-link i {
    transition: var(--transition);
}

/* Dores e Soluções - 5 Cards */
.dores-solucoes {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, #4a1a21 100%);
}

.dores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dores-grid .dor-card:nth-child(4),
.dores-grid .dor-card:nth-child(5) {
    grid-column: span 1;
}

/* Centralizar os 2 últimos cards */
.dores-grid .dor-card:nth-child(4) {
    margin-left: auto;
    margin-right: 15px;
}

.dores-grid .dor-card:nth-child(5) {
    margin-left: 15px;
    margin-right: auto;
}

.dor-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    color: var(--color-white);
}

.dor-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dor-icon {
    width: 60px;
    height: 60px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.dor-icon i {
    font-size: 1.8rem;
    color: var(--color-white);
}

.dor-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-white);
}

.dor-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.dor-destaque {
    background: rgba(201, 162, 107, 0.2);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--color-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-foto {
        order: -1;
    }
    
    .solucoes-grid {
        grid-template-columns: 1fr;
    }
    
    .dores-grid {
        grid-template-columns: 1fr;
    }
    
    .dores-grid .dor-card:nth-child(4),
    .dores-grid .dor-card:nth-child(5) {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .solucao-card {
        min-height: auto;
    }
}
