/* ===== CIMIENTOS CSS - VERSIÓN MEJORADA Y RESPONSIVA ===== */

/* ===== VARIABLES Y CONFIGURACIÓN BASE ===== */
:root {
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
}

/* ===== UTILIDADES ===== */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--global-primary);
}

.bg-light {
    background: var(--global-light);
}

.bg-accent {
    background: linear-gradient(135deg, var(--global-accent), rgba(242, 45, 58, 0.05));
}

/* ===== COMPONENTES REUTILIZABLES ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-padding {
    padding: var(--spacing-xxl) var(--spacing-md);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 800;
    color: var(--global-text);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--global-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--global-text-light);
    line-height: 1.6;
    margin-top: var(--spacing-md);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-slow);
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--global-primary);
    color: white;
    box-shadow: 0 8px 24px rgba(242, 45, 58, 0.15);
}

.btn-primary:hover {
    background: var(--global-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(242, 45, 58, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--global-primary);
    border: 2px solid var(--global-primary);
}

.btn-outline:hover {
    background: var(--global-primary);
    color: white;
    transform: translateY(-2px);
}

/* ===== HERO SECTION ABOUT US ===== */
.about-hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding: calc(var(--header-height, 80px) + 20px) 20px 40px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4);
    transition: transform 20s ease;
}

.about-hero-section:hover .hero-image {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(242, 45, 58, 0.4) 0%,
            rgba(0, 0, 0, 0.8) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero-tag {
    display: inline-block;
    background: rgba(242, 45, 58, 0.2);
    border: 1px solid rgba(242, 45, 58, 0.4);
    border-radius: 30px;
    padding: 8px 20px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-tag span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-line {
    display: block;
}

.title-highlight {
    color: var(--global-primary);
    display: block;
    position: relative;
    background: white;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        min-height: 60vh;
        padding: calc(var(--header-height, 80px) + 20px) 15px 30px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }
}

/* ===== SECTION 1: ¿QUÉ ES GLOBAL? ===== */
.what-is-section {
    background: white;
}

.what-is-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.what-is-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.what-is-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--global-text);
    margin-bottom: 20px;
}

.what-is-text strong {
    color: var(--global-primary);
    font-weight: 700;
}

.what-is-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--global-light);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--global-primary);
    transition: all var(--transition-normal);
}

.highlight-card:hover {
    background: var(--global-accent);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(242, 45, 58, 0.1);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--global-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.highlight-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--global-text);
    margin-bottom: 5px;
}

.highlight-text p {
    font-size: 0.95rem;
    color: var(--global-text-light);
    margin: 0;
    line-height: 1.5;
}

.what-is-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-main {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    height: 300px;
}

.main-photo {
    position: relative;
    width: 100%;
    height: 100%;
}

.main-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}

.main-photo:hover img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 15px;
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.main-photo:hover .photo-overlay,
.secondary-photo:hover .photo-overlay {
    transform: translateY(0);
}

.photo-overlay span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

.photo-overlay i {
    color: var(--global-primary);
}

.gallery-secondary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.secondary-photo {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    height: 180px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.secondary-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
}

.secondary-photo:hover img {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .what-is-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-main {
        height: 250px;
    }

    .secondary-photo {
        height: 150px;
    }
}

@media (max-width: 768px) {
    .what-is-section {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .gallery-secondary {
        grid-template-columns: 1fr;
    }

    .secondary-photo {
        height: 200px;
    }

    .what-is-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .what-is-highlights {
        gap: 15px;
    }

    .highlight-card {
        gap: 12px;
        padding: 15px;
    }

    .gallery-main {
        height: 200px;
    }

    .secondary-photo {
        height: 150px;
    }
}

/* ===== SECTION 2: PILARES ===== */
.pillars-section {
    position: relative;
}

.pillars-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pillar-tabs {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pillar-nav {
    display: flex;
    background: linear-gradient(135deg, var(--global-light), #f8f9fa);
    padding: 20px;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
}

.pillar-nav::-webkit-scrollbar {
    display: none;
}

.pillar-nav-item {
    flex: 1;
    min-width: 150px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.pillar-nav-item:hover {
    border-color: var(--global-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pillar-nav-item.active {
    border-color: var(--global-primary);
    background: var(--global-accent);
    box-shadow: 0 5px 20px rgba(242, 45, 58, 0.15);
}

.pillar-nav-icon {
    width: 50px;
    height: 50px;
    background: var(--global-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--global-text);
    font-size: 1.3rem;
    transition: all var(--transition-normal);
}

.pillar-nav-item.active .pillar-nav-icon {
    background: var(--global-primary);
    color: white;
    transform: scale(1.1);
}

.pillar-nav-text {
    flex: 1;
    min-width: 0;
}

.pillar-nav-title {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--global-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pillar-content {
    padding: 40px;
}

.pillar-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.pillar-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pane-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.pane-visual {
    background: linear-gradient(135deg, var(--global-accent), white);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.visual-icon {
    width: 80px;
    height: 80px;
    background: var(--global-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.visual-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--global-text);
    margin-bottom: 5px;
}

.visual-text p {
    font-size: 0.9rem;
    color: var(--global-text-light);
    margin: 0;
}

.pane-info h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--global-text);
    margin-bottom: 20px;
    line-height: 1.3;
}

.pane-description {
    margin-bottom: 30px;
}

.pane-description p {
    color: var(--global-text);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.pane-description strong {
    color: var(--global-primary);
    font-weight: 700;
}

.pane-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--global-text);
}

.feature-item i {
    color: var(--global-primary);
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.pane-highlight {
    background: var(--global-accent);
    border-left: 4px solid var(--global-primary);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    margin-top: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.pane-highlight i {
    color: var(--global-primary);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.pane-highlight p {
    margin: 0;
    color: var(--global-text);
    line-height: 1.6;
}

.vision-goals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.goal {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--global-light);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-normal);
}

.goal:hover {
    background: var(--global-accent);
    transform: translateY(-5px);
}

.goal-number {
    width: 50px;
    height: 50px;
    background: var(--global-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.goal-text h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--global-text);
    margin-bottom: 5px;
}

.goal-text p {
    font-size: 0.85rem;
    color: var(--global-text-light);
    margin: 0;
    line-height: 1.4;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.value-card {
    padding: 25px;
    background: white;
    border-radius: var(--border-radius-md);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--global-border);
    transition: all var(--transition-normal);
}

.value-card:hover {
    border-color: var(--global-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(242, 45, 58, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--global-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--global-primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.value-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--global-text);
    margin-bottom: 8px;
}

.value-content p {
    font-size: 0.9rem;
    color: var(--global-text-light);
    line-height: 1.5;
    margin: 0;
}

.commitment-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.commitment-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--global-light);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--global-primary);
    transition: all var(--transition-normal);
}

.commitment-item:hover {
    background: var(--global-accent);
    transform: translateX(5px);
}

.commitment-number {
    width: 50px;
    height: 50px;
    background: var(--global-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.commitment-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--global-text);
    margin-bottom: 5px;
}

.commitment-content p {
    font-size: 0.95rem;
    color: var(--global-text-light);
    margin: 0;
    line-height: 1.5;
}

.pane-note {
    margin-top: 30px;
    padding: 20px;
    background: var(--global-accent);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
}

.pane-note i {
    color: var(--global-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pane-note p {
    margin: 0;
    color: var(--global-text);
    font-style: italic;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .pane-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

@media (max-width: 768px) {
    .pillar-nav {
        flex-direction: column;
    }

    .pillar-nav-item {
        min-width: 100%;
    }

    .pillar-content {
        padding: 25px;
    }

    .vision-goals,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .pane-visual {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .pillar-nav {
        gap: 8px;
        padding: 10px;
    }

    .pillar-nav-item {
        gap: 10px;
        padding: 12px 15px;
    }

    .pillar-content {
        padding: 15px;
    }

    .visual-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .pane-info h3 {
        font-size: 1.5rem;
    }
}

/* ===== SECTION 3: LÍNEA DE TIEMPO ===== */
.timeline-section {
    background: white;
    position: relative;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--global-primary);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.timeline-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: var(--global-primary);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.1rem;
    z-index: 2;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(242, 45, 58, 0.3);
}

.timeline-content {
    width: 45%;
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--global-border);
    transition: all var(--transition-normal);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-content:hover {
    border-color: var(--global-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(242, 45, 58, 0.15);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--global-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--global-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.timeline-text h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--global-text);
    margin-bottom: 10px;
}

.timeline-text p {
    font-size: 0.95rem;
    color: var(--global-text-light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        justify-content: flex-start;
        margin-bottom: 40px;
    }

    .timeline-year {
        left: 30px;
        transform: translateX(-50%);
    }

    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 480px) {
    .timeline-content {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

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

    .timeline-text h4 {
        font-size: 1rem;
    }
}

/* ===== SECTION 4: NUESTRO PROPÓSITO ===== */
.purpose-section {
    position: relative;
}

.purpose-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.purpose-main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.purpose-text h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--global-text);
    margin-bottom: 20px;
    line-height: 1.3;
}

.purpose-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--global-text);
    margin-bottom: 20px;
}

.purpose-text strong {
    color: var(--global-primary);
    font-weight: 700;
}

.purpose-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.purpose-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: var(--border-radius-md);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all var(--transition-normal);
}

.purpose-feature-card:hover {
    border-color: var(--global-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(242, 45, 58, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--global-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--global-text);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--global-text-light);
    line-height: 1.5;
    margin: 0;
}

.purpose-quote {
    display: flex;
    align-items: center;
}

.quote-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--global-primary);
    position: relative;
    overflow: hidden;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: var(--global-accent);
    opacity: 0.5;
}

.quote-text p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--global-text);
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.quote-author strong {
    font-size: 1.1rem;
    color: var(--global-primary);
    font-weight: 700;
}

.quote-author span {
    font-size: 0.9rem;
    color: var(--global-text-light);
}

.purpose-cta {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.purpose-cta h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--global-text);
    margin-bottom: 15px;
}

.purpose-cta p {
    font-size: 1.1rem;
    color: var(--global-text-light);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 1024px) {
    .purpose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .purpose-quote {
        order: -1;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .purpose-text h3 {
        font-size: 1.5rem;
    }

    .purpose-feature-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

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

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

@media (max-width: 480px) {
    .section-padding {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .purpose-cta {
        padding: var(--spacing-lg);
    }

    .purpose-cta h3 {
        font-size: 1.4rem;
    }

    .quote-text p {
        font-size: 1rem;
    }
}

/* ===== RESPONSIVE DESIGN FINAL ===== */
@media (max-width: 1199px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    .section-padding {
        padding: var(--spacing-xl) var(--spacing-md);
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.75rem;
    }

    .section-padding {
        padding: var(--spacing-xl) var(--spacing-sm);
    }
}

@media (max-width: 575px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .section-padding {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-title::after {
        width: 50px;
    }
}

/* ===== ACCESIBILIDAD ===== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-image {
        animation: none;
    }
}


/* ===== IMPRESIÓN ===== */
@media print {
    .about-hero-section {
        min-height: auto;
        height: auto;
    }

    .cta-buttons,
    .btn {
        display: none !important;
    }

    .section-padding {
        padding: 1rem 0 !important;
    }

    a {
        text-decoration: none !important;
        color: inherit !important;
    }
}