/* Global Styles & Variables */
:root {
    --primary-color: #054163;
    /* SIENTIC Deep Blue */
    --secondary-color: #0E2C49;
    /* Darker Navy */
    --accent-color: #E63946;
    /* Brand Red */
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.text-accent {
    color: var(--accent-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: #c92a37;
    border-color: #c92a37;
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    /* margin-left removed, handling spacing via layout container */
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Header */
.header {
    background: linear-gradient(to right, #b0b0b0, #ffffff);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    /* Espacio entre logo y texto */
    text-decoration: none;
}

.logo img {
    height: 50px;
    /* Ajustado para balancear con el texto */
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    /* Extra bold para impacto */
    color: var(--primary-color);
    /* Azul predominante */
    letter-spacing: 1px;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 16px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link.btn-primary {
    color: var(--white);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--secondary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(14, 44, 73, 0.85), rgba(5, 65, 99, 0.85)), url('assets/PAGINA WEB SIENTIC SEP2025_2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-badge {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e0e0e0;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-buttons .btn {
    min-width: 220px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    text-align: center;
}

/* Decorative Hero Shape - Abstract Tech feel */
.hero-image {
    flex: 1;
    position: relative;
}

.hero-shape {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 50px rgba(5, 65, 99, 0.5);
    /* In a real project, this would be a real image or SVG */
}

/* Stats Bar */
.stats-bar {
    background-color: var(--white);
    padding: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border-radius: var(--border-radius);
    max-width: 1000px;
    margin-bottom: 50px;
    margin-left: auto;
    margin-right: auto;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    font-size: 32px;
    color: var(--accent-color);
}

.stat-item div {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 24px;
    color: var(--primary-color);
}

.stat-item span {
    font-size: 14px;
    color: var(--text-light);
}

/* Services */
.services {
    background-color: var(--bg-light);
}

.section-title {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 3px solid transparent;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--accent-color);
}

/* Image at the top of each service card */
.service-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    display: block;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

/* Content area below the image */
.service-card-body {
    padding: 30px 30px 35px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(5, 65, 99, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--primary-color);
}

.service-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-description {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
    min-height: 72px;
}

.service-list {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: auto;
}

.service-list li {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li i {
    color: var(--accent-color);
    font-size: 12px;
}

/* =========================================
   Proceso Section
   ========================================= */
.proceso {
    background: linear-gradient(145deg, rgba(14, 44, 73, 0.9) 0%, rgba(5, 65, 99, 0.9) 100%), url('assets/PAGINA WEB SIENTIC SEP2025_1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.proceso::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.proceso-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.proceso-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 18px;
    padding: 6px 18px;
    border: 1.5px solid var(--accent-color);
    border-radius: 50px;
}

.proceso-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--white);
    margin-bottom: 16px;
}

.proceso-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
}

/* Pasos con conectores */
.proceso-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.proceso-step {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    position: relative;
    transition: var(--transition);
}

.proceso-step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
}

.proceso-step-num {
    font-size: 64px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 20px;
    letter-spacing: -3px;
}

.proceso-step-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    margin: 0 auto 22px;
    box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4);
    transition: var(--transition);
}

.proceso-step:hover .proceso-step-icon {
    transform: scale(1.1) rotate(-5deg);
}

.proceso-step-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.proceso-step-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

/* Conector entre pasos */
.proceso-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    padding-top: 80px;
    flex-shrink: 0;
}

.proceso-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), var(--accent-color));
    margin-bottom: 4px;
}

.proceso-arrow {
    color: var(--accent-color);
    font-size: 14px;
}

/* =========================================
   Testimonios Section
   ========================================= */
.testimonios {
    background-color: var(--bg-light);
}

.testimonios-header {
    margin-bottom: 55px;
}

.testimonios-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 16px;
    padding: 6px 18px;
    border: 1.5px solid var(--accent-color);
    border-radius: 50px;
}

.testimonios-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.testimonios-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    /* Degradado en los bordes para un efecto de fundido al entrar/salir del carrusel */
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.testimonios-track {
    display: flex;
    align-items: stretch;
    gap: 30px;
    width: max-content;
    animation: testimonios-scroll 50s linear infinite;
}

.testimonios-track:hover {
    animation-play-state: paused;
}

@keyframes testimonios-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        /* Move half the track distance because items will be duplicated */
        transform: translateX(-50%);
    }
}

.testimonio-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 44px 44px 38px;
    width: 500px;
    /* Fixed width for consistent carousel items */
    flex-shrink: 0;
    box-shadow: 0 8px 32px rgba(5, 65, 99, 0.08);
    /* Sombra inicial sutil */
    position: relative;
    border: 1px solid rgba(5, 65, 99, 0.06);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonio-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonio-card:hover::before {
    opacity: 1;
    /* Ilumina el borde en hover */
}

.testimonio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 50px rgba(5, 65, 99, 0.14);
    /* Sombra más fuerte al hacer hover */
}

.testimonio-quote-icon {
    font-size: 36px;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 18px;
    line-height: 1;
}

.testimonio-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 32px;
}

.testimonio-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid #eee;
    padding-top: 24px;
}

.testimonio-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    flex-shrink: 0;
}

.testimonio-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.testimonio-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.testimonio-role {
    font-size: 13px;
    color: var(--text-light);
}

.testimonio-stars {
    display: flex;
    gap: 3px;
    color: #f59e0b;
    font-size: 14px;
}

/* Partners */
.partners-title {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Carrusel infinito */
.partners-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    /* Máscaras de degradado en los bordes para efecto profesional */
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: partners-scroll 30s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes partners-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 80px;
    padding: 10px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.partners-track:hover .partner-logo:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 70px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    display: block;
    margin-bottom: 20px;
}

.footer-text {
    color: #a0aec0;
    max-width: 300px;
}

.footer-heading {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links li,
.footer-contact-list li {
    margin-bottom: 15px;
}

.footer-links a,
.footer-contact-list li {
    color: #a0aec0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    color: #718096;
    font-size: 14px;
}

/* =========================================
   Nosotros Section
   ========================================= */
.nosotros {
    background-color: var(--white);
    overflow: hidden;
}

/* --- Hero intro --- */
.nosotros-hero {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.nosotros-hero-content {
    flex: 1;
}

.nosotros-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1.5px solid var(--accent-color);
    border-radius: 50px;
}

.nosotros-title {
    font-size: 40px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.nosotros-intro {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 580px;
}

/* Decorative animated rings */
.nosotros-hero-deco {
    flex-shrink: 0;
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nosotros-deco-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
}

.nosotros-deco-ring--outer {
    width: 280px;
    height: 280px;
    border-color: rgba(5, 65, 99, 0.12);
    animation: spin-slow 18s linear infinite;
}

.nosotros-deco-ring--mid {
    width: 200px;
    height: 200px;
    border-color: rgba(230, 57, 70, 0.2);
    animation: spin-slow 12s linear infinite reverse;
}

.nosotros-deco-ring--inner {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    color: var(--white);
    box-shadow: 0 12px 40px rgba(5, 65, 99, 0.35);
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* --- Pillars grid --- */
.nosotros-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.nosotros-pillar {
    background-color: var(--bg-light);
    border-radius: 16px;
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

.nosotros-pillar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.nosotros-pillar:hover::before {
    transform: scaleX(1);
}

.nosotros-pillar:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(5, 65, 99, 0.12);
    border-color: rgba(5, 65, 99, 0.08);
}

/* Featured (centre) pillar */
.nosotros-pillar--featured {
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(5, 65, 99, 0.3);
}

.nosotros-pillar--featured .nosotros-pillar-icon {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.nosotros-pillar--featured .nosotros-pillar-num {
    color: rgba(255, 255, 255, 0.2);
}

.nosotros-pillar--featured .nosotros-pillar-title {
    color: var(--white);
}

.nosotros-pillar--featured .nosotros-pillar-text {
    color: rgba(255, 255, 255, 0.8);
}

.nosotros-pillar--featured::before {
    background: linear-gradient(90deg, var(--accent-color), #ff8a8a);
    transform: scaleX(1);
}

.nosotros-pillar--featured:hover {
    transform: translateY(-18px);
}

/* Pillar sub-elements */
.nosotros-pillar-icon {
    width: 58px;
    height: 58px;
    background-color: rgba(5, 65, 99, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.nosotros-pillar:hover .nosotros-pillar-icon {
    background-color: var(--accent-color);
    color: var(--white);
}

.nosotros-pillar--featured:hover .nosotros-pillar-icon {
    background-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.nosotros-pillar-num {
    font-size: 52px;
    font-weight: 800;
    color: rgba(5, 65, 99, 0.08);
    line-height: 1;
    position: absolute;
    top: 20px;
    right: 28px;
    letter-spacing: -2px;
}

.nosotros-pillar-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.3;
}

.nosotros-pillar-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Responsive - Nosotros */
@media (max-width: 900px) {
    .nosotros-hero {
        flex-direction: column;
        text-align: center;
    }

    .nosotros-intro {
        margin: 0 auto;
    }

    .nosotros-pillars {
        grid-template-columns: 1fr;
    }

    .nosotros-pillar--featured {
        transform: none;
    }

    .nosotros-pillar--featured:hover {
        transform: translateY(-6px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 15px 0;
    }

    .header-container {
        position: relative;
    }

    .mobile-toggle {
        display: block;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px;
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .nav-link.btn-primary {
        background-color: transparent;
        color: var(--primary-color);
        padding: 0;
        border: none;
    }

    .hero {
        padding: 60px 0;
        min-height: auto;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
        font-size: 16px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
        min-width: 0;
    }

    .stats-container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
        padding-left: 0;
    }

    .stats-bar {
        margin-top: -30px;
        margin-bottom: 30px;
        padding: 20px;
    }

    .stat-item {
        flex-direction: column;
        gap: 5px;
    }

    .stat-item i {
        margin-bottom: 5px;
    }

    .nosotros-hero-deco {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .proceso-steps {
        flex-direction: column;
        align-items: center;
    }

    .proceso-step {
        width: 100%;
        max-width: 400px;
    }

    .proceso-connector {
        padding: 20px 0;
        flex-direction: column;
    }

    .proceso-line {
        width: 2px;
        height: 30px;
        margin-bottom: 0;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), var(--accent-color));
    }

    .proceso-arrow {
        transform: rotate(90deg) translateX(2px);
    }

    .testimonio-card {
        width: 85vw;
        max-width: 350px;
        padding: 30px 25px 25px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo img {
        margin-right: 0 !important;
        margin-bottom: 15px;
    }

    .footer-contact-list li {
        justify-content: center;
    }
}