/* =================================================================
   HEYLULI COMPLIANCE - SECTIONS.CSS
   Estilos Específicos para Seções Principais
   ================================================================= */

/* =================== HERO SECTION =================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, rgba(0, 85, 102, 0.9) 0%, rgba(0, 61, 74, 0.95) 100%);
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 85, 102, 0.85) 0%, rgba(0, 61, 74, 0.9) 100%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
}

.hero-title .highlight {
    color: var(--primary-color);
    display: block;
}

.hero-subtitle {
    font-size: var(--fs-xl);
    line-height: 1.5;
    margin-bottom: var(--spacing-2xl);
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-2xl);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: var(--fs-3xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.stat-label {
    font-size: var(--fs-small);
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-image {
    position: relative;
}

.hero-info-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

.info-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.info-header i {
    font-size: var(--fs-2xl);
    color: var(--accent-color);
}

.info-header h3 {
    color: var(--secondary-color);
    margin: 0;
}

.info-list {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.info-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-xs);
    color: var(--text-light);
}

.info-list i {
    color: var(--accent-color);
    font-size: var(--fs-small);
}

.info-footer {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
}

.badge {
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 4px 12px;
    border-radius: var(--radius-lg);
    font-size: var(--fs-small);
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-xs);
    font-size: var(--fs-lg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* =================== TRUST SECTION =================== */
.trust-section {
    padding: var(--spacing-2xl) 0;
    background: rgba(255, 204, 0, 0.05);
    border-top: 1px solid var(--border-color);
}

.trust-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--spacing-xl);
}

.trust-text h2 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    width: 100%;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: var(--transition-normal);
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.trust-badge i {
    font-size: var(--fs-2xl);
    color: var(--accent-color);
}

.trust-badge span {
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
}

/* =================== ABOUT SECTION =================== */
.about {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    margin-bottom: var(--spacing-3xl);
}

.story-text h3 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
}

.story-cta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.story-stats span {
    color: var(--text-light);
    font-size: var(--fs-small);
}

.story-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 85, 102, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.story-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: var(--fs-4xl);
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.overlay-content h4 {
    margin-bottom: var(--spacing-xs);
}

/* =================== TIMELINE =================== */
.timeline-section {
    margin-bottom: var(--spacing-3xl);
}

.timeline-section h3 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-2xl);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-2xl);
    padding-left: 60px;
}

.timeline-marker {
    position: absolute;
    left: 10px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 3px solid white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.2);
}

.timeline-marker i {
    font-size: 10px;
    color: var(--text-dark);
}

.timeline-content {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px var(--shadow-light);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid white;
}

.timeline-content h4 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
}

.timeline-item::before {
    content: attr(data-year);
    position: absolute;
    left: 40px;
    top: -5px;
    background: var(--accent-color);
    color: white;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    font-size: var(--fs-small);
    font-weight: 600;
}

/* =================== VALUES SECTION =================== */
.values-section {
    margin-bottom: var(--spacing-3xl);
}

.values-section h3 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-2xl);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.value-card {
    text-align: center;
    padding: var(--spacing-lg);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--shadow-medium);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.value-icon i {
    font-size: var(--fs-2xl);
    color: white;
}

.value-card h4 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

/* =================== MISSION/VISION =================== */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.mission-card,
.vision-card {
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    color: white;
}

.mission-card {
    background: var(--secondary-gradient);
}

.vision-card {
    background: var(--accent-gradient);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.card-icon i {
    font-size: var(--fs-xl);
    color: white;
}

.mission-card h4,
.vision-card h4 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

/* =================== RESPONSIVIDADE SEÇÕES =================== */
@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-actions {
        flex-direction: row;
    }
    
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .trust-badges {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .about-story {
        grid-template-columns: 1fr 1fr;
    }
    
    .story-cta {
        flex-direction: row;
        align-items: center;
    }
    
    .story-stats {
        flex-direction: row;
        gap: var(--spacing-md);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-vision {
        grid-template-columns: 1fr 1fr;
    }
    
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        padding-left: 0;
        width: 50%;
    }
    
    .timeline-item:nth-child(odd) {
        margin-left: 0;
        text-align: right;
        padding-right: 40px;
    }
    
    .timeline-item:nth-child(even) {
        margin-left: 50%;
        padding-left: 40px;
    }
    
    .timeline-marker {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item:nth-child(odd) .timeline-content::before {
        left: auto;
        right: -8px;
        border-right: none;
        border-left: 8px solid white;
    }
    
    .timeline-item:nth-child(odd)::before {
        left: auto;
        right: 40px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
} 