@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Apple Colors */
    --bg-color: #ffffff;
    --bg-secondary: #f5f5f7;
    --text-main: #1d1d1f;
    --text-muted: #86868b;
    --accent-blue: #0066cc;
    --white: #ffffff;
    --border-color: rgba(0, 0, 0, 0.1);

    /* Project Colors (kept for cards) */
    --blue-50: #EFF6FF;
    --blue-100: #DBEAFE;
    --blue-600: #2563EB;
    /* ... keeping others as they are used in projects section ... */
    --purple-50: #FAF5FF;
    --purple-100: #F3E8FF;
    --purple-600: #9333EA;
    --orange-50: #FFF7ED;
    --orange-100: #FFEDD5;
    --orange-600: #EA580C;
    --green-50: #F0FDF4;
    --green-100: #DCFCE7;
    --green-600: #16A34A;
    --pink-50: #FDF2F8;
    --pink-100: #FCE7F3;
    --pink-600: #DB2777;

    /* Spacing & Radii */
    --container-width: 1100px;
    --header-height: 52px;
    --section-spacing: 160px;
    --radius-lg: 20px;
    --radius-xl: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -0.022em;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-main);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.serif {
    font-family: 'Lora', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(253, 251, 248, 0.9);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

.logo img {
    height: 60px;
    /* Adjust based on logo needs */
    width: auto;
}

.nav-links {
    display: flex;
    gap: 32px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover {
    color: var(--blue-600);
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--text-main);
    color: white;
}

.btn-primary:hover {
    background-color: var(--blue-600);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.3);
}

.btn-outline {
    border: 2px solid var(--border-color);
    background: white;
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--text-main);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--blue-50);
    color: var(--blue-600);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 24px;
    color: var(--text-main);
}

.hero p {
    font-size: 1.35rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Generic Section */
section {
    padding: var(--section-spacing) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.text-blue-600 {
    color: var(--blue-600);
}

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Services Grid (Colorinchis!) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card {
    background: white;
    padding: 48px;
    border-radius: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
}

/* Service Colors variants */
.service-card.blue .icon-box {
    background: var(--blue-100);
    color: var(--blue-600);
}

.service-card.blue:hover {
    border-color: var(--blue-100);
}

.service-card.purple .icon-box {
    background: var(--purple-100);
    color: var(--purple-600);
}

.service-card.purple:hover {
    border-color: var(--purple-100);
}

.service-card.orange .icon-box {
    background: var(--orange-100);
    color: var(--orange-600);
}

.service-card.orange:hover {
    border-color: var(--orange-100);
}

.service-card.green .icon-box {
    background: var(--green-100);
    color: var(--green-600);
}

.service-card.green:hover {
    border-color: var(--green-100);
}

.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 32px;
    transition: transform 0.3s;
}

.service-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

/* Process Section */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 24px;
    border-radius: 24px;
    transition: background 0.3s;
}

.step:hover {
    background: white;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
    font-size: 1.25rem;
    position: relative;
    z-index: 2;
}

/* Step Colors */
.step:nth-child(1) .step-number {
    background: var(--blue-100);
    color: var(--blue-600);
}

.step:nth-child(2) .step-number {
    background: var(--purple-100);
    color: var(--purple-600);
}

.step:nth-child(3) .step-number {
    background: var(--orange-100);
    color: var(--orange-600);
}

.step:nth-child(4) .step-number {
    background: var(--green-100);
    color: var(--green-600);
}

.step:nth-child(5) .step-number {
    background: var(--pink-100);
    color: var(--pink-600);
}

.step-content h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-muted);
}

/* Audience Section (Now Pastel cards instead of dark block) */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Bento Grid Section */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 24px;
    margin-bottom: 60px;
}

.bento-item {
    background: white;
    padding: 40px;
    border-radius: 32px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.bento-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    border-color: var(--blue-200);
}

.bento-item.large {
    grid-column: span 7;
}

.bento-item.medium {
    grid-column: span 5;
}

.bento-item.medium-reverse {
    grid-column: span 5;
}

.bento-item.large-reverse {
    grid-column: span 7;
}

.bento-content h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 800;
}

.bento-icon {
    font-size: 2rem;
    margin-bottom: 24px;
}

/* Before & After Styles */
.comparison-pill {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comp-box {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comp-box.before {
    background: #f1f5f9;
    color: #64748b;
    border: 1px dashed #cbd5e1;
}

.comp-box.after {
    background: var(--blue-50);
    color: var(--blue-700);
    border: 1px solid var(--blue-100);
}

/* Niches Section */
.niches-showcase {
    margin-top: 80px;
    text-align: center;
}

/* Niches and Projects handled in the Apple section below to avoid conflicts */

@media (max-width: 992px) {

    .bento-item.large,
    .bento-item.medium,
    .bento-item.large-reverse,
    .bento-item.medium-reverse {
        grid-column: span 12;
    }
}

/* Projects Grid - Harmonized with shared vars */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.project-card {
    background: white;
    padding: 36px;
    border-radius: 32px;
    border: 1px solid #e5e7eb;
    /* Soft visible border */
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: #d1d5db;
}

/* Project Colors using shared vars */
.color-blue .project-category-badge {
    background: var(--blue-500);
}

.color-blue .project-icon,
.color-blue .card-cta {
    color: var(--blue-600);
}

.project-card.color-blue:hover {
    border-color: var(--blue-100);
    background: var(--blue-50);
}

.color-purple .project-category-badge {
    background: var(--purple-500);
}

.color-purple .project-icon,
.color-purple .card-cta {
    color: var(--purple-600);
}

.project-card.color-purple:hover {
    border-color: var(--purple-100);
    background: var(--purple-50);
}

.color-orange .project-category-badge {
    background: var(--orange-500);
}

.color-orange .project-icon,
.color-orange .card-cta {
    color: var(--orange-600);
}

.project-card.color-orange:hover {
    border-color: var(--orange-100);
    background: var(--orange-50);
}

.color-green .project-category-badge {
    background: var(--green-500);
}

.color-green .project-icon,
.color-green .card-cta {
    color: var(--green-600);
}

.project-card.color-green:hover {
    border-color: var(--green-100);
    background: var(--green-50);
}

.color-pink .project-category-badge {
    background: var(--pink-500);
}

.color-pink .project-icon,
.color-pink .card-cta {
    color: var(--pink-600);
}

.project-card.color-pink:hover {
    border-color: var(--pink-100);
    background: var(--pink-50);
}

.project-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

.project-image-wrapper {
    width: 100%;
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid var(--border-color);
    background: #f8f9fa;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.project-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    /* Asegura que se vea el logo/cabecera */
    transition: transform 0.6s ease;
}

.project-card:hover .project-image-wrapper img {
    transform: scale(1.08);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.project-category-badge {
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: white !important;
    letter-spacing: 0.05em;
}

/* Colorinchis backgrounds for categories (forcing visibility) */
.bg-blue {
    background-color: var(--blue-600) !important;
}

.bg-purple {
    background-color: var(--purple-600) !important;
}

.bg-green {
    background-color: var(--green-600) !important;
}

.bg-orange {
    background-color: var(--orange-600) !important;
}

.bg-pink {
    background-color: var(--pink-600) !important;
}

.tech-stack-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.tech-badge-tiny {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
    white-space: nowrap;
}

.color-blue .tech-badge-tiny {
    background: var(--blue-50);
    color: var(--blue-700);
    border-color: var(--blue-100);
}

.color-purple .tech-badge-tiny {
    background: var(--purple-50);
    color: var(--purple-700);
    border-color: var(--purple-100);
}

.color-green .tech-badge-tiny {
    background: var(--green-50);
    color: var(--green-700);
    border-color: var(--green-100);
}

.color-orange .tech-badge-tiny {
    background: var(--orange-50);
    color: var(--orange-700);
    border-color: var(--orange-100);
}

.color-pink .tech-badge-tiny {
    background: var(--pink-50);
    color: var(--pink-700);
    border-color: var(--pink-100);
}

/* Niches Section */
.niches-showcase {
    margin-top: 80px;
    text-align: center;
}

.niches-showcase h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 32px;
    font-weight: 600;
}

.niches-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.niche-tag {
    background: #f5f5f7;
    /* Apple secondary bg */
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #1d1d1f;
    /* Apple main text */
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.niche-tag:hover {
    background: #1d1d1f;
    color: white;
    transform: scale(1.05);
}

/* Restoring Project Cards */
.project-card {
    background: white;
    padding: 36px;
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Soft border */
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--blue-200);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.03);
}

.faq-item summary {
    padding: 28px;
    font-weight: 700;
    font-size: 1.15rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
}

.faq-item summary i {
    color: var(--blue-500);
    background: var(--blue-50);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: transform 0.3s;
}

.faq-item[open] summary i {
    transform: rotate(180deg);
    background: var(--blue-600);
    color: white;
}

.faq-item[open] summary {
    border-bottom: 1px solid var(--border-color);
    background-color: var(--blue-50);
    /* Slight highlight when open */
    color: var(--blue-600);
}

.faq-content {
    padding: 32px;
    /* Increased padding */
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    background-color: white;
    /* Ensure bg is white */
}

.faq-content p {
    margin: 0;
}

.faq-content a {
    color: var(--blue-600);
    font-weight: 600;
}

/* Footer */
footer {
    padding: 100px 0 40px;
    text-align: center;
    background: white;
    border-top: 1px solid var(--border-color);
}

/* About Section (Soy Lidia) */
#soy-lidia {
    background: white;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.photo-placeholder {
    width: 100%;
    height: 400px;
    background: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    color: var(--text-muted);
    font-size: 5rem;
}

.about-content .badget-text {
    display: inline-block;
    background: var(--purple-50);
    color: var(--purple-600);
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-content h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-main);
}

.about-content .lead {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 16px;
    font-weight: 500;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-600);
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: gap 0.3s;
}

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

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--blue-600) 0%, var(--purple-600) 100%);
    color: white;
    padding: 80px 0;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 16px;
}

.newsletter-text p {
    font-size: 1.15rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 16px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 100px;
    /* Pill shape */
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 24px;
    color: white;
    font-size: 1rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    border-radius: 100px;
    padding: 16px 32px;
}

/* Footer Re-style */
footer {
    padding: 40px 0;
    margin-top: 0;
    border-top: none;
    background: var(--bg-color);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .about-wrapper,
    .newsletter-content,
    .services-grid,
    .audience-grid,
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: 24px;
        background: transparent;
        border: none;
        padding: 0;
    }

    .newsletter-form input {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .newsletter-form button {
        width: 100%;
        border-radius: 12px;
    }

    header {
        padding: 0 24px;
    }
}

/* --- Historia Page Specific --- */
.apple-style .historia-hero {
    padding: 140px 0 100px;
    background-color: var(--bg-color);
}

.historia-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.photo-full-body {
    width: 100%;
    height: 600px;
    /* Controlled height for half-body effect */
    border-radius: 40px;
    overflow: hidden;
    background: #fdfdfd;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.photo-full-body img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 20%;
    /* Focus on upper body */
}

.accent-text {
    color: var(--accent-blue);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: #fafafa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 8px;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Methodology & Values */
.bg-secondary {
    background-color: #f5f5f7;
}

.method-grid,
.values-grid-pro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.values-grid-pro {
    grid-template-columns: repeat(2, 1fr);
}

.method-card,
.value-item {
    background: white;
    padding: 40px;
    border-radius: 28px;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.method-card:hover,
.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.method-icon,
.value-icon {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 24px;
}

/* Timeline Stylized */
.timeline-section {
    padding-bottom: 120px;
}

.timeline-container {
    max-width: 800px;
    margin: 80px auto 0;
    position: relative;
    padding-left: 60px;
}

.timeline-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 60px;
}

.timeline-dot {
    position: absolute;
    left: -46px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border-color);
    z-index: 2;
}

.timeline-item.active .timeline-dot {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.15);
}

.timeline-year {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.timeline-item.active .timeline-year {
    color: var(--accent-blue);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
}

@media (max-width: 992px) {

    .historia-grid,
    .stats-grid,
    .method-grid,
    .values-grid-pro {
        grid-template-columns: 1fr;
    }

    .historia-grid {
        text-align: center;
        gap: 40px;
    }

    .historia-image {
        order: -1;
    }
}