/* ==========================================================================
   SEÇÕES ESPECÍFICAS - CONSULTORIA EMPRESARIAL
   ========================================================================== */

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cor-secundaria) 0%, #1e4a6b 100%);
    overflow: hidden;
    padding-top: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 89, 132, 0.9) 0%, rgba(30, 74, 107, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.hero-text {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.2);
    color: var(--cor-primaria);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
}

.hero-title .highlight {
    color: var(--cor-primaria);
    position: relative;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-feature i {
    color: var(--cor-primaria);
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    min-width: 280px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 2rem;
    color: var(--cor-primaria);
    margin-bottom: 12px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    animation: bounce 2s infinite;
}

.scroll-down span {
    width: 3px;
    height: 15px;
    background: var(--cor-primaria);
    border-radius: 2px;
    animation: scrollAnimation 1.5s infinite;
}

.scroll-down span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-down span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes scrollAnimation {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* Banner Promocional */
.promo-banner {
    background: linear-gradient(135deg, var(--cor-destaque) 0%, #FF4500 100%);
    padding: 20px 0;
    color: white;
}

.promo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.promo-text h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: white;
}

.promo-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Seção de Credibilidade */
.credibility {
    background: white;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.credibility-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.credibility-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.credibility-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cor-primaria) 0%, #FFA000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
    flex-shrink: 0;
}

.credibility-text h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--cor-secundaria);
}

.credibility-text p {
    font-size: 0.9rem;
    margin: 0;
    color: #666;
}

/* Seção Sobre */
.sobre {
    background: white;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.sobre-intro {
    margin-bottom: 40px;
}

.sobre-intro h3 {
    color: var(--cor-secundaria);
    margin-bottom: 20px;
}

.missao-visao {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.missao-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.missao-icon {
    width: 50px;
    height: 50px;
    background: var(--cor-primaria);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
    flex-shrink: 0;
}

.missao-content h4 {
    color: var(--cor-secundaria);
    margin-bottom: 8px;
}

.missao-content p {
    margin: 0;
    font-size: 0.9rem;
}

.diferenciais h4 {
    color: var(--cor-secundaria);
    margin-bottom: 20px;
}

.diferenciais-list {
    list-style: none;
    padding: 0;
}

.diferenciais-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #666;
}

.diferenciais-list i {
    color: #27ae60;
    font-size: 16px;
}

.sobre-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.sobre-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover .sobre-img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 30px;
    color: white;
}

.overlay-content h4 {
    color: white;
    margin-bottom: 8px;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.sobre-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Timeline */
.timeline-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--cor-primaria) 0%, var(--cor-destaque) 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 50%;
}

.timeline-item.left {
    left: 0;
    padding-right: 60px;
}

.timeline-item.right {
    left: 50%;
    padding-left: 60px;
}

.timeline-content {
    position: relative;
}

.timeline-date {
    position: absolute;
    top: 20px;
    width: 80px;
    height: 80px;
    background: var(--cor-primaria);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #000;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.timeline-item.left .timeline-date {
    right: -100px;
}

.timeline-item.right .timeline-date {
    left: -100px;
}

.timeline-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.timeline-header h3 {
    color: var(--cor-secundaria);
    margin-bottom: 12px;
}

.timeline-body p {
    margin: 0;
    color: #666;
}

.timeline-dot {
    position: absolute;
    top: 50px;
    width: 20px;
    height: 20px;
    background: white;
    border: 4px solid var(--cor-destaque);
    border-radius: 50%;
    z-index: 2;
}

.timeline-item.left .timeline-dot {
    right: -50px;
}

.timeline-item.right .timeline-dot {
    left: -50px;
}

.dot-inner {
    width: 8px;
    height: 8px;
    background: var(--cor-destaque);
    border-radius: 50%;
    margin: 2px;
}

/* Credenciais */
.credenciais {
    background: white;
    padding: 60px 0;
}

.credenciais-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.credencial-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(46, 89, 132, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(46, 89, 132, 0.1);
    transition: all 0.3s ease;
}

.credencial-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 89, 132, 0.1);
}

.credencial-icon {
    width: 60px;
    height: 60px;
    background: var(--cor-secundaria);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.credencial-info h4 {
    color: var(--cor-secundaria);
    margin-bottom: 8px;
}

.credencial-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* CTA Intermediário */
.cta-intermediario {
    background: linear-gradient(135deg, var(--cor-secundaria) 0%, #1e4a6b 100%);
    color: white;
    padding: 60px 0;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-text h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: white;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* Media Queries para Seções */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-stats {
        justify-self: center;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .timeline:before {
        left: 30px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 80px !important;
        padding-right: 0 !important;
    }
    
    .timeline-date {
        left: -40px !important;
        right: auto !important;
        width: 60px !important;
        height: 60px !important;
        font-size: 0.9rem;
    }
    
    .timeline-dot {
        left: 20px !important;
        right: auto !important;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 300px;
        justify-self: center;
    }
    
    .promo-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .credibility-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .credibility-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .credenciais-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .credencial-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .sobre-stats {
        grid-template-columns: 1fr;
    }
    
    .missao-visao {
        gap: 16px;
    }
    
    .missao-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-item {
        padding-left: 60px !important;
    }
    
    .timeline-date {
        width: 50px !important;
        height: 50px !important;
        font-size: 0.8rem;
        left: -25px !important;
    }
    
    .stat-item {
        padding: 16px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .cta-text h3 {
        font-size: 1.6rem;
    }
} 