/* Terráneo Urban SRL - Estilos Específicos */

/* Hero Terráneo */
.terraneo-hero .terraneo-title {
    font-size: 4.5rem;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 1.5rem;
    color: var(--color-white);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6), 0 0 25px rgba(255, 255, 255, 0.4), 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* About Terráneo Section */
.about-terraneo {
    padding: 120px 20px;
    background: linear-gradient(135deg, var(--color-background) 0%, var(--color-gray-light) 100%);
}

.about-terraneo h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-primary);
    letter-spacing: 3px;
    font-weight: 700;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.4rem;
    line-height: 1.9;
    color: var(--color-primary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

/* Expertise Section */
.expertise {
    padding: 120px 20px;
    background: var(--color-white);
}

.expertise h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-primary);
    letter-spacing: 3px;
    font-weight: 700;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-card {
    background: var(--color-background);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--color-accent);
}

.expertise-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: grayscale(30%);
}

.expertise-card h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.expertise-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* Process Section */
.process {
    padding: 120px 20px;
    background: linear-gradient(135deg, var(--color-gray-light) 0%, var(--color-background) 100%);
}

.process h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 5rem;
    color: var(--color-primary);
    letter-spacing: 3px;
    font-weight: 700;
}

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

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-accent);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 4px solid var(--color-white);
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: var(--color-white);
    padding: 2rem 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.timeline-content h3 {
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.timeline-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* Stats Section */
.stats {
    padding: 120px 20px;
    background: var(--color-primary);
    color: var(--color-white);
}

.stats h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-white);
    letter-spacing: 3px;
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.stat-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Locations Section */
.locations {
    padding: 120px 20px;
    background: var(--color-white);
}

.locations h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-primary);
    letter-spacing: 3px;
    font-weight: 700;
}

.locations-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.location-card {
    background: var(--color-background);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--color-gray-light);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.location-card h3 {
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.location-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.location-card-featured {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.location-card-featured h3 {
    color: var(--color-white);
}

.location-card-featured p {
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.cta-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, var(--color-gray-light) 0%, var(--color-background) 100%);
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-section .cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terraneo-title {
        font-size: 2.5rem !important;
        letter-spacing: 4px !important;
    }

    .about-terraneo h2,
    .expertise h2,
    .process h2,
    .stats h2,
    .locations h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .lead-text {
        font-size: 1.2rem;
    }

    .expertise-grid,
    .stats-grid,
    .locations-content {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }

    .process-timeline::before {
        left: 15px;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-section .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}
