/* ===== CIMIENTOS CSS ===== */

* {
    font-family: var(--font-primary);
}

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

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

/* ===== COMPONENTES REUTILIZABLES ===== */
.section-header {
    text-align: center;
    margin-bottom: var(--scale-sm);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: var(--font-bold);
    color: var(--3x3_mexico-text);
    margin-bottom: var(--scale-sm);
    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(--3x3_mexico-primary);
    border-radius: 2px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--scale-xs);
    padding: var(--scale-sm) var(--scale-lg);
    border: none;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: var(--font-semibold);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition);
    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(--3x3_mexico-primary);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--3x3_mexico-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

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

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

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

.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.3);
    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(--3x3_mexico-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) + 20px) 15px 30px;
    }

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

/* ===== SECTION 1: ¿QUÉ ES 3x3_mexico? ===== */
.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(--3x3_mexico-text);
    margin-bottom: 20px;
}

.what-is-text strong {
    color: var(--3x3_mexico-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(--3x3_mexico-light);
    border-radius: 12px;
    border-left: 4px solid var(--3x3_mexico-primary);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    background: var(--3x3_mexico-accent);
    transform: translateX(5px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--3x3_mexico-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(--3x3_mexico-text);
    margin-bottom: 5px;
}

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

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

.gallery-main {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    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 0.5s ease;
}

.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 0.3s ease;
}

.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(--3x3_mexico-primary);
}

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

.secondary-photo {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 180px;
    box-shadow: var(--shadow);
}

.secondary-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.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(--scale-xxl) var(--scale-md);
    }

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

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

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

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

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

.pillar-nav {
    display: flex;
    background: linear-gradient(135deg, var(--3x3_mexico-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: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

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

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

.pillar-nav-item.active .pillar-nav-icon {
    background: var(--3x3_mexico-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(--3x3_mexico-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(--3x3_mexico-accent), white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.visual-icon {
    width: 80px;
    height: 80px;
    background: var(--3x3_mexico-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(--3x3_mexico-text);
    margin-bottom: 5px;
}

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

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

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

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

.pane-description strong {
    color: var(--3x3_mexico-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(--3x3_mexico-text);
}

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

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

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

.pane-highlight p {
    margin: 0;
    color: var(--3x3_mexico-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(--3x3_mexico-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

.goal-number {
    width: 50px;
    height: 50px;
    background: var(--3x3_mexico-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(--3x3_mexico-text);
    margin-bottom: 5px;
}

.goal-text p {
    font-size: 0.85rem;
    color: var(--3x3_mexico-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: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--3x3_mexico-border);
    transition: all 0.3s ease;
}

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

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

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

.value-content p {
    font-size: 0.9rem;
    color: var(--3x3_mexico-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(--3x3_mexico-light);
    border-radius: 12px;
    border-left: 4px solid var(--3x3_mexico-primary);
    transition: all 0.3s ease;
}

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

.commitment-number {
    width: 50px;
    height: 50px;
    background: var(--3x3_mexico-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(--3x3_mexico-text);
    margin-bottom: 5px;
}

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

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

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

.pane-note p {
    margin: 0;
    color: var(--3x3_mexico-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;
    }
}

/* ===== 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(--3x3_mexico-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(--3x3_mexico-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: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--3x3_mexico-border);
    transition: all 0.3s ease;
    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(--3x3_mexico-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(242, 45, 58, 0.15);
}

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

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

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

.timeline-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--3x3_mexico-border);
}

.stat {
    text-align: center;
    padding: 20px;
    background: var(--3x3_mexico-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat:hover {
    background: var(--3x3_mexico-accent);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--3x3_mexico-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--3x3_mexico-text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@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;
    }

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

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

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

    .timeline-stats {
        grid-template-columns: 1fr;
    }
}

/* ===== 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(--3x3_mexico-text);
    margin-bottom: 20px;
    line-height: 1.3;
}

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

.purpose-text strong {
    color: var(--3x3_mexico-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: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--3x3_mexico-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(--3x3_mexico-text);
    margin-bottom: 8px;
}

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

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

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

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

.quote-text p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--3x3_mexico-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(--3x3_mexico-primary);
    font-weight: 700;
}

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

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

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

.purpose-cta p {
    font-size: 1.1rem;
    color: var(--3x3_mexico-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) {
    .purpose-section {
        padding: var(--scale-xxl) var(--scale-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;
    }
}

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

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

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

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

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

/* ===== 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,
    .main-photo img,
    .secondary-photo img {
        transition: none !important;
    }
}