/* styles/representacao.css */

:root {
    --rep-bg-dark: #1a1a1a;
    --rep-bg-light: #f4f4f4;
    --rep-text-light: #e0e0e0;
    --rep-text-dark: #333;
    --rep-accent: var(--accent-cyan);
}

.representation-page {
    background-color: var(--rep-bg-light);
    color: var(--rep-text-dark);
}

/* Hero Section */
.rep-hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
    color: var(--text-primary);
    text-align: center;
    padding: 180px 24px 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    position: relative;
    overflow: hidden;
}

.rep-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background-image: url('../images/logos/logo_JC.jpeg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    opacity: 0.035;
    z-index: 1;
}

.rep-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInDown 1s ease-out;
}

.rep-hero-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: none;
}

.rep-hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-weight: 400;
    color: var(--text-secondary);
}

/* Main Content */
.rep-content {
    padding: 100px 0;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 60px;
    position: relative;
}

.section-title.center {
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--rep-accent);
    border-radius: 2px;
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Intro Section */
.intro-section {
    margin-bottom: 100px;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-secondary);
}

.intro-text p:last-of-type {
    font-weight: 500;
    color: var(--text-primary);
}

/* Services Section */
.services-section {
    background: var(--white);
    padding: 100px 0;
}

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

.service-card {
    background: var(--rep-bg-light);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

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

.service-icon {
    font-size: 2.5rem;
    color: var(--rep-accent);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Process Section */
.process-section {
    padding: 100px 0;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 4px;
    background: var(--rep-accent);
    opacity: 0.2;
}

.timeline-item {
    position: relative;
    padding-left: 70px;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-step {
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--rep-accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    border: 4px solid var(--rep-bg-light);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    background: var(--primary-navy);
    color: var(--white);
    padding: 80px 24px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: var(--rep-accent);
    color: var(--white);
    padding: 16px 40px;
    font-size: 1.1rem;
}

.cta-section .btn-primary:hover {
    background: var(--accent-red);
}

/* Responsive */
@media (max-width: 768px) {
    .process-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .timeline-item {
        padding-left: 0;
        text-align: center;
    }
    .timeline-step {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 20px;
    }
}
