/* SECCIÓN 1: HERO / INTRODUCCIÓN - NOSOTROS - CSS */
.about-hero {
    background: linear-gradient(135deg, #0F172A 0%, #1e3a5f 100%);
    padding: 8rem 2rem 6rem;
    /* margin-top: 72px; */
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.about-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-hero-content {
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 4rem;
}

.about-eyebrow {
    display: inline-block;
    background: rgba(6, 182, 212, 0.2);
    color: #06B6D4;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

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

.about-stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #06B6D4;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.about-hero-image {
    max-width: 900px;
    margin: 0 auto;
}

.about-image-placeholder {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-image-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.about-image-placeholder p {
    font-size: 1.125rem;
    color: #64748B;
    font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

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

@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 1rem 3rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .about-image-placeholder {
        padding: 3rem 1rem;
        min-height: 300px;
    }

    .about-image-icon {
        font-size: 3rem;
    }
}

/* SECCIÓN 2: NUESTRA HISTORIA - NOSOTROS - CSS */
.our-story {
    padding: 6rem 2rem;
    background: #FFFFFF;
}

.story-header {
    text-align: center;
    margin-bottom: 4rem;
}

.story-intro {
    font-size: 1.25rem;
    color: #64748B;
    max-width: 700px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.story-paragraph {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.story-icon {
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.story-paragraph-content h3 {
    font-size: 1.5rem;
    color: #0F172A;
    margin-bottom: 1rem;
    font-weight: 700;
}

.story-paragraph-content p {
    font-size: 1rem;
    color: #64748B;
    line-height: 1.8;
}

.story-timeline {
    background: #F8FAFC;
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 4px solid #2563EB;
}

.timeline-title {
    font-size: 1.5rem;
    color: #0F172A;
    margin-bottom: 2rem;
    font-weight: 700;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #2563EB, #06B6D4);
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2.5rem;
}

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

.timeline-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: #FFFFFF;
    border: 3px solid #2563EB;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.active .timeline-dot {
    background: #2563EB;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.2);
}

.timeline-content {
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.timeline-item:hover .timeline-content {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #2563EB, #06B6D4);
    color: #FFFFFF;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.timeline-content h4 {
    font-size: 1.125rem;
    color: #0F172A;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content p {
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.6;
}

.timeline-item.active .timeline-content {
    border: 2px solid #2563EB;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .our-story {
        padding: 4rem 1rem;
    }

    .story-header {
        margin-bottom: 3rem;
    }

    .story-intro {
        font-size: 1rem;
    }

    .story-text {
        gap: 2rem;
    }

    .story-paragraph {
        flex-direction: column;
        gap: 1rem;
    }

    .story-icon {
        font-size: 2rem;
    }

    .story-paragraph-content h3 {
        font-size: 1.25rem;
    }

    .story-timeline {
        padding: 1.5rem;
    }

    .timeline-item {
        padding-left: 2.5rem;
        margin-bottom: 2rem;
    }

    .timeline::before {
        left: 11px;
    }

    .timeline-dot {
        width: 24px;
        height: 24px;
        border-width: 2px;
    }
}

/* SECCIÓN 3: MISIÓN, VISIÓN Y VALORES - NOSOTROS - CSS */
.mission-vision-values {
    padding: 6rem 2rem;
    background: #F8FAFC;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 5rem;
}

.mvv-card {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(135deg, #2563EB, #06B6D4);
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.mission-card::before {
    background: linear-gradient(135deg, #2563EB, #06B6D4);
}

.vision-card::before {
    background: linear-gradient(135deg, #06B6D4, #10B981);
}

.mvv-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.mvv-card h3 {
    font-size: 2rem;
    color: #0F172A;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mvv-card p {
    font-size: 1.125rem;
    color: #64748B;
    line-height: 1.8;
}

/* VALORES */
.values-section {
    margin-top: 4rem;
}

.values-title {
    font-size: 2rem;
    color: #0F172A;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: #2563EB;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.value-card h4 {
    font-size: 1.25rem;
    color: #0F172A;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.value-card p {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

@media (max-width: 768px) {
    .mission-vision-values {
        padding: 4rem 1rem;
    }

    .mvv-card {
        padding: 2rem;
    }

    .mvv-icon {
        font-size: 2.5rem;
    }

    .mvv-card h3 {
        font-size: 1.5rem;
    }

    .mvv-card p {
        font-size: 1rem;
    }

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

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .value-icon {
        font-size: 2rem;
    }

    .value-card {
        padding: 1.5rem;
    }
}

/* SECCIÓN 4: EL EQUIPO - NOSOTROS - CSS */
.our-team {
    padding: 6rem 2rem;
    background: #FFFFFF;
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-subtitle {
    font-size: 1.25rem;
    color: #64748B;
    max-width: 700px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.team-card {
    background: #F8FAFC;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #2563EB;
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563EB, #06B6D4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-initials {
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    font-size: 1.25rem;
    color: #0F172A;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.team-role {
    font-size: 0.9rem;
    color: #2563EB;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-social {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.social-link {
    width: 36px;
    height: 36px;
    background: #FFFFFF;
    border: 2px solid #E2E8F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s;
}

.social-link:hover {
    background: #2563EB;
    color: #FFFFFF;
    border-color: #2563EB;
    transform: translateY(-2px);
}

/* MENSAJE ALTERNATIVO */
.team-message {
    background: linear-gradient(135deg, #F8FAFC, #E0F2FE);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #2563EB;
    max-width: 800px;
    margin: 0 auto;
}

.team-message-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.team-message h3 {
    font-size: 1.75rem;
    color: #0F172A;
    margin-bottom: 1rem;
    font-weight: 700;
}

.team-message p {
    font-size: 1.125rem;
    color: #64748B;
    line-height: 1.8;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .our-team {
        padding: 4rem 1rem;
    }

    .team-subtitle {
        font-size: 1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .photo-initials {
        font-size: 2.5rem;
    }

    .team-message {
        padding: 2rem;
    }

    .team-message-icon {
        font-size: 3rem;
    }

    .team-message h3 {
        font-size: 1.5rem;
    }

    .team-message p {
        font-size: 1rem;
    }
}

/* SECCIÓN 5: ¿POR QUÉ ELEGIRNOS? - NOSOTROS - CSS */
.why-choose-us {
    padding: 6rem 2rem;
    background: #F8FAFC;
}

.why-header {
    text-align: center;
    margin-bottom: 4rem;
}

.why-subtitle {
    font-size: 1.25rem;
    color: #64748B;
    max-width: 700px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.reason-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 16px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #2563EB;
}

.reason-icon {
    font-size: 3rem;
    line-height: 1;
    flex-shrink: 0;
}

.reason-content h3 {
    font-size: 1.375rem;
    color: #0F172A;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.reason-content p {
    font-size: 1rem;
    color: #64748B;
    line-height: 1.7;
}

/* CTA de sección */
.why-cta {
    background: linear-gradient(135deg, #0F172A 0%, #1e3a5f 100%); 
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    color: #FFFFFF;
    max-width: 800px;
    margin: 0 auto;
}

.why-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.why-cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.why-cta .btn-primary {
    background: #FFFFFF;
    color: #2563EB;
    font-size: 1.125rem;
    padding: 1rem 2.5rem;
}

.why-cta .btn-primary:hover {
    background: #F8FAFC;
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 4rem 1rem;
    }

    .why-subtitle {
        font-size: 1rem;
    }

    .reason-card {
        padding: 2rem;
        flex-direction: column;
        gap: 1rem;
    }

    .reason-icon {
        font-size: 2.5rem;
    }

    .reason-content h3 {
        font-size: 1.25rem;
    }

    .reason-content p {
        font-size: 0.95rem;
    }

    .why-cta {
        padding: 2rem;
    }

    .why-cta h3 {
        font-size: 1.5rem;
    }

    .why-cta p {
        font-size: 1rem;
    }

    .why-cta .btn-primary {
        width: 100%;
        font-size: 1rem;
    }
}

/* SECCIÓN 6: NUESTRO IMPACTO - NOSOTROS - CSS */
.our-impact {
    padding: 6rem 2rem;
    background: #FFFFFF;
}

.impact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.impact-subtitle {
    font-size: 1.25rem;
    color: #64748B;
    max-width: 700px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

/* Métricas */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.metric-card {
    background: linear-gradient(135deg, #F8FAFC, #E0F2FE);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #E0F2FE;
    transition: all 0.3s;
}

.metric-card:hover {
    transform: translateY(-8px);
    border-color: #2563EB;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.15);
}

.metric-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.metric-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2563EB;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.metric-label {
    font-size: 1.125rem;
    color: #0F172A;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.metric-description {
    font-size: 0.9rem;
    color: #64748B;
}

/* Testimonio destacado */
.featured-testimonial {
    background: linear-gradient(135deg, #0F172A 0%, #1e3a5f 100%);
    padding: 4rem;
    border-radius: 20px;
    color: #FFFFFF;
    position: relative;
    margin-bottom: 5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-quote-icon {
    font-size: 6rem;
    line-height: 1;
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 2rem;
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.author-details h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.author-details p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.testimonial-stars {
    color: #FCD34D;
    font-size: 1.25rem;
    letter-spacing: 2px;
}

/* Casos de éxito */
.success-cases {
    max-width: 1100px;
    margin: 0 auto;
}

.success-title {
    font-size: 2rem;
    text-align: center;
    color: #0F172A;
    margin-bottom: 3rem;
    font-weight: 700;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.case-card {
    background: #F8FAFC;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2563EB;
    transition: all 0.3s;
}

.case-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.case-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563EB;
    opacity: 0.3;
    margin-bottom: 1rem;
    line-height: 1;
}

.case-card h4 {
    font-size: 1.25rem;
    color: #0F172A;
    margin-bottom: 1rem;
    font-weight: 700;
}

.case-card p {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.case-tag {
    display: inline-block;
    background: #2563EB;
    color: #FFFFFF;
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .our-impact {
        padding: 4rem 1rem;
    }

    .impact-subtitle {
        font-size: 1rem;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .metric-number {
        font-size: 2.5rem;
    }

    .featured-testimonial {
        padding: 2rem;
    }

    .testimonial-quote-icon {
        font-size: 4rem;
    }

    .testimonial-text {
        font-size: 1.125rem;
    }

    .testimonial-author-section {
        flex-direction: column;
        text-align: center;
    }

    .author-avatar-large {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

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

    .case-card {
        padding: 1.5rem;
    }
}

/* SECCIÓN 7: TECNOLOGÍA Y SEGURIDAD - NOSOTROS - CSS */
.tech-security {
    padding: 6rem 2rem;
    background: #F8FAFC;
}

.tech-header {
    text-align: center;
    margin-bottom: 4rem;
}

.tech-subtitle {
    font-size: 1.25rem;
    color: #64748B;
    max-width: 700px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}

.tech-card {
    background: #FFFFFF;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #2563EB;
    transition: all 0.3s;
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.security-card {
    border-top-color: #2563EB;
}

.ai-card {
    border-top-color: #06B6D4;
}

.infra-card {
    border-top-color: #10B981;
}

.tech-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #F8FAFC;
}

.tech-card-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.tech-card-header h3 {
    font-size: 1.5rem;
    color: #0F172A;
    font-weight: 700;
}

.tech-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tech-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.tech-check {
    color: #10B981;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: #D1FAE5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-list li div strong {
    display: block;
    color: #0F172A;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.tech-list li div p {
    color: #64748B;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Certificaciones */
.certifications {
    text-align: center;
    margin-bottom: 4rem;
}

.cert-title {
    font-size: 1.5rem;
    color: #0F172A;
    margin-bottom: 2rem;
    font-weight: 700;
}

.cert-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cert-badge {
    background: #FFFFFF;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    min-width: 120px;
}

.cert-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.cert-badge-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.cert-badge p {
    font-size: 1rem;
    font-weight: 700;
    color: #0F172A;
}

/* Mensaje de confianza */
.trust-message {
    background: linear-gradient(135deg, #FFFFFF, #E0F2FE);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid #2563EB;
    max-width: 900px;
    margin: 0 auto;
}

.trust-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.trust-message h3 {
    font-size: 2rem;
    color: #0F172A;
    margin-bottom: 1rem;
    font-weight: 700;
}

.trust-message p {
    font-size: 1.125rem;
    color: #64748B;
    line-height: 1.8;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .tech-security {
        padding: 4rem 1rem;
    }

    .tech-subtitle {
        font-size: 1rem;
    }

    .tech-card {
        padding: 2rem;
    }

    .tech-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .tech-card-icon {
        font-size: 2rem;
    }

    .tech-card-header h3 {
        font-size: 1.25rem;
    }

    .tech-list {
        gap: 1rem;
    }

    .cert-title {
        font-size: 1.25rem;
    }

    .cert-badges {
        gap: 1rem;
    }

    .cert-badge {
        padding: 1rem 1.5rem;
        min-width: 100px;
    }

    .cert-badge-icon {
        font-size: 2rem;
    }

    .trust-message {
        padding: 2rem;
    }

    .trust-icon {
        font-size: 3rem;
    }

    .trust-message h3 {
        font-size: 1.5rem;
    }

    .trust-message p {
        font-size: 1rem;
    }
}

/* SECCIÓN 8: CTA FINAL / CONTACTO - NOSOTROS - CSS */
.about-final-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0F172A 0%, #1e3a5f 100%);
    position: relative;
    overflow: hidden;
}

.about-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.about-final-cta .section-container {
    position: relative;
    z-index: 1;
}

/* CTA Content */
.cta-content {
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 4rem;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-buttons-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.cta-content .btn-primary {
    background: #FFFFFF;
    color: #2563EB;
}

.cta-content .btn-primary:hover {
    background: #F8FAFC;
}

.cta-content .btn-secondary {
    background: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
}

.cta-content .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cta-trust-items {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.95rem;
    opacity: 0.9;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Contact Info Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

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

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.contact-card h4 {
    font-size: 1.25rem;
    color: #FFFFFF;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.contact-card a {
    color: #06B6D4;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-card a:hover {
    color: #FFFFFF;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.contact-text {
    color: #FFFFFF;
    font-weight: 600;
}

/* Quick Contact Form */
.quick-contact-form {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.quick-contact-form h3 {
    font-size: 1.75rem;
    color: #0F172A;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #E2E8F0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.btn-full {
    width: 100%;
}

.form-disclaimer {
    text-align: center;
    font-size: 0.875rem;
    color: #64748B;
    margin-top: 1rem;
}

.form-disclaimer a {
    color: #2563EB;
    text-decoration: none;
}

.form-disclaimer a:hover {
    text-decoration: underline;
}

/* Social Section */
.social-section {
    text-align: center;
}

.social-section h4 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
    font-weight: 700;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link-large {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 600;
}

.social-link-large:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.social-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.linkedin:hover {
    border-color: #0A66C2;
}

.twitter:hover {
    border-color: #1DA1F2;
}

.facebook:hover {
    border-color: #1877F2;
}

.tiktok:hover {
    border-color: #E4405F;
}

.instagram:hover {
    border-color: #E4405F;
}

.youtube:hover {
    border-color: #FF0000;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-final-cta {
        padding: 4rem 1rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons-group {
        flex-direction: column;
    }

    .cta-trust-items {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .quick-contact-form {
        padding: 2rem;
    }

    .quick-contact-form h3 {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .social-links-large {
        flex-direction: column;
        align-items: stretch;
    }

    .social-link-large {
        justify-content: center;
    }
}