/* ==============================
   QUIÉNES SOMOS – VERSIÓN LIMPIA
============================== */


/* HERO */
.quienes-hero {
    padding: 60px 0px 0px 0px;
    text-align: center;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.quienes-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
	font-weight: 700;
    letter-spacing: 1px;
}

.quienes-hero p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 18px;
    opacity: 0.75;
}

/* SECCIONES GENERALES */
.quienes-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* BLOQUES TEXTO + IMAGEN */
.quienes-bloque {
    display: flex;
    align-items: center;
    gap: 80px;
}

.quienes-bloque.reverse {
    flex-direction: row-reverse;
}

.quienes-bloque img {
    width: 100%;
    max-width: 520px;
    border-radius: 22px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    transition: 0.5s ease;
}

.quienes-bloque img:hover {
    transform: scale(1.04);
}

.quienes-bloque h2 {
    font-size: 30px;
    margin-bottom: 25px;
}

.quienes-bloque p {
    margin-bottom: 18px;
    line-height: 1.7;
    font-size: 16px;
    opacity: 0.85;
}

/* CTA */
.cta-section {
    padding: 110px 20px;
    text-align: center;
    background: linear-gradient(135deg, #fce4ef 0%, #ffffff 100%);
}

.cta-section h2 {
    margin-bottom: 20px;
    font-size: 30px;
}

.cta-section p {
    margin-bottom: 35px;
    opacity: 0.75;
}

.cta-btn {
    display: inline-block;
    padding: 16px 45px;
    border-radius: 50px;
    background: #e4007c;
    color: #fff;
    font-weight: 600;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #c2006a;
    transform: translateY(-4px);
}

/* ANIMACIONES */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}



/* HERO PREMIUM */

.quienes-hero-premium {
    position: relative;
    min-height: 380px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(230 0 126 / 53%), rgb(0 0 0 / 33%));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeUpHero 1s ease forwards;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.hero-content h2 {
  font-size: 40px;
  letter-spacing: 1.5px;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.95;
}

/* Animación */

@keyframes fadeUpHero {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}	
/* CONTADORES */

.quienes-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 50px 30px;
    background: linear-gradient(135deg, #f7f7f7, #ffffff);
}

.stat-item {
    text-align: center;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
}

.counter {
    font-size: 56px;
    font-weight: 800;
    background: linear-gradient(90deg, #ff007a, #ff5aa5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.stat-item p {
    margin-top: 10px;
    font-size: 15px;
    color: #666;
    font-weight: 500;
}


/* ===== TIMELINE CORPORATIVA ===== */

.timeline-section {
    padding: 40px 20px;
    background: #fff;
    position: relative;
}

.timeline-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 80px;
    font-weight: 800;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(#ff007a, #ff5aa5);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 40px 60px;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-icon {
    position: absolute;
    top: 40px;
    left: 100%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #ff007a;
    color: white;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(255,0,122,0.3);
    z-index: 2;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: 0;
    transform: translateX(-50%);
}

.timeline-content {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.timeline-content:hover {
    transform: translateY(-8px);
}

.timeline-year {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #ff007a;
    margin-bottom: 10px;
}

.timeline-content h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.timeline-content p {
    font-size: 14px;
    color: #555;
}




/* ===== CERTIFICACIONES ===== */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
}

/* Card */
.cert-card{
    flex:0 0 auto;
    min-width:220px;
    height:170px;
    background:#fff;
    border-radius:22px;
    padding:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.35s ease;
}

.cert-card img{
    max-width:160px;
    max-height:90px;
    object-fit:contain;
    filter:grayscale(100%);
    opacity:.7;
    transition:.35s ease;
}

.cert-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.cert-card:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

/* animación scroll */
@keyframes certScroll{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
}


/* ===== CERTIFICACIONES PREMIUM ===== */

.certifications-section {
    text-align: center;
	padding: 50px 20px;
    overflow: hidden;
	position:relative;
}


/* Patrón sutil corporativo */
.certifications-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(233,30,99,0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.certifications-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}


.certifications-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.certifications-subtitle {
    margin: 0 auto 70px;
    color: #666;
    font-size: 16px;
}

/* Slider */

.certifications-slider{
    display:flex;
    gap:40px;
    align-items:center;
	will-change:transform;
	white-space:nowrap;
    position:relative;
	padding: 0px 0px 20px;	
}

.certifications-slider .cert-card {
    flex: 0 0 auto;
}

/* ocultar barra scroll */
.certifications-slider::-webkit-scrollbar {
    display: none;
}

/* detener animación al pasar el ratón */
.certifications-wrapper:hover .certifications-slider{
    animation-play-state: paused;
}

.cert-card-inner img {
    height: 100px;
}

.cert-card h4 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.cert-card p {
    font-size: 13px;
    color: #777;
}

.cert-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
  cursor: pointer;
}

/* Cascada */
.cert-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

/* Modal */
.cert-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.cert-modal-content {
    position: relative;
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: modalFade 0.4s ease;
}

.cert-close {
    position: absolute;
    right: 30px;
    top: 20px;
    font-size: 28px;
    cursor: pointer;
}

.cert-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    z-index: 10000;
    color: #333;
    transition: 0.3s ease;
}

.cert-modal-close:hover {
    color: #e6007e;
    transform: rotate(90deg);
}

@keyframes fadeUp {
    from { opacity:0; transform:translateY(40px); }
    to { opacity:1; transform:translateY(0); }
}



.certifications-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.certifications-wrapper::before,
.certifications-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.certifications-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f7f7f7, transparent);
}

.certifications-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f7f7f7, transparent);
}

.certifications-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollInfinite 35s linear infinite;
}

@keyframes scrollInfinite {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
/* =========================
   FERIAS INTERNACIONALES
========================= */

.ferias-section{
    padding:30px 20px 120px 20px;
    background:linear-gradient(180deg,#ffffff,#f7f7f7);
    text-align:center;
    position:relative;
}


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

.ferias-title{
  font-size:32px;
  font-weight:800;
  margin-bottom:10px;
}

.ferias-subtitle{
    max-width:620px;
    margin:0 auto 60px;
    color:#666;
    font-size:16px;
}

/* logos */
.ferias-logos{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:40px;
}

.feria-item{
    width:150px;
    height:80px;
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:.65;
    transition:.35s ease;
}

.feria-item img{
    max-width:100%;
    max-height:200px;
    object-fit:contain;
    filter:grayscale(100%);
    transition:.35s ease;
}

/* hover elegante */
.feria-item:hover{
    opacity:1;
    transform:translateY(-4px);
}

.feria-item:hover img{
    filter:grayscale(0%);
}

.ferias-logos{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:40px;
  align-items:center;
}

.feria-logo{
  transition:.3s;
}

.feria-logo img{
  max-height:150px;
  object-fit:contain;
  filter:grayscale(100%);
  opacity:.8;
  transition:.3s;
}

.feria-logo:hover{
  transform:translateY(-6px);
}

.feria-logo:hover img{
  filter:none;
  opacity:1;
}


/* ===== BLOQUE EMPRESA PREMIUM ===== */

.empresa-section {
    padding-top: 55px;
	padding-bottom: 55px;
}

.empresa-grid {
    display: flex;
    align-items: center;
    gap: 100px;
}

.empresa-text {
    flex: 1;
}

.empresa-image {
    flex: 1;
    position: relative;
}

.empresa-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
    transition: 0.6s ease;
}

.empresa-image img:hover {
    transform: scale(1.03);
}

.empresa-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    background: #000;
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.empresa-badge.rosa {
    background: #e6007e;
}

.empresa-text h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.empresa-text p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #555;
    text-align: justify;
    padding: 0px 10px;
}

.empresa-highlights {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.empresa-highlights li {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
}

/* Mejor espaciado entre bloques */
.historia-section {
    padding-top: 80px;
    padding-bottom: 80px;
	border-bottom:1px solid rgba(0,0,0,0.05);
}


/* ===== VALORES PREMIUM ===== */

.valores-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    text-align: center;
}

.valores-header {
    max-width: 700px;
    margin: 0 auto 70px auto;
}

.section-tag {
    display: inline-block;
    background: #e6007e;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.valores-header h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.valores-header p {
    font-size: 16px;
    color: #666;
}

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

.valor-card {
    background: #ffffff;
    padding: 50px 30px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.valor-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, #e6007e, #ff4fa3);
    transition: width 0.4s ease;
}

.valor-card:hover::before {
    width: 100%;
}

.valor-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.valor-icon {
    font-size: 36px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.valor-card:hover .valor-icon {
    transform: scale(1.2) rotate(5deg);
}

.valor-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.valor-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}


/* ===== CTA PREMIUM ===== */

.quienes-cta {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(135deg, #e6007e 0%, #ff4fa3 100%);
    color: white;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(255,255,255,0.15), transparent 40%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.cta-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 25px;
    backdrop-filter: blur(8px);
}

.quienes-cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.quienes-cta p {
    font-size: 17px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Botones */

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

.btn-primary,
.btn-secondary {
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.35s ease;
}

.btn-primary {
    background: white;
    color: #e6007e;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.6);
    color: white;
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: white;
    color: #e6007e;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}


/* Animación entrada */

.quienes-cta .cta-content {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.quienes-cta.visible .cta-content {
    opacity: 1;
    transform: translateY(0);
}


/* ===== MAPA MUNDIAL ===== */

.world-section{
padding:80px 20px;
text-align:center;
background:linear-gradient(180deg,#ffffff,#f7f7f7);
}

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

.world-title{
font-size:34px;
font-weight:800;
margin-bottom:15px;
}

.world-subtitle{
margin:0 auto 60px;
color:#666;
font-size:16px;
}

.world-map-wrapper{
position:relative;
max-width:1200px;
margin:auto;
}

.world-map{
width:100%;
opacity:.85;
filter:grayscale(20%);
}

/* puntos */

.map-point{
position:absolute;
width:7px;
height:7px;
background:#ff007a;
border-radius:50%;
transform:translate(-50%,-50%);
cursor:pointer;
animation: mapPulse 2s infinite;
}

@keyframes pulse{
0%{
box-shadow:0 0 0 0 rgba(255,0,122,0.6);
}
70%{
box-shadow:0 0 0 12px rgba(255,0,122,0);
}
100%{
box-shadow:0 0 0 0 rgba(255,0,122,0);
}
}

/* tooltip */
.map-tooltip{
position:absolute;
background:white;
padding:6px 12px;
border-radius:6px;
font-size:13px;
box-shadow:0 8px 20px rgba(0,0,0,.15);

display:flex;
align-items:center;
gap:6px;

opacity:0;
pointer-events:none;
transform:translate(-50%,-150%);
transition:.2s;
}

.map-tooltip img{
width:16px;
height:12px;
object-fit:cover;
border-radius:2px;
}

/* líneas conexión */
.world-lines{
position:absolute;
inset:0;
width:100%;
height:100%;
pointer-events:none;
}

.map-line{
fill:none;
stroke:#ff007a;
stroke-width:2;
stroke-linecap:round;
stroke-dasharray:8 6;
stroke-dasharray:1000;
stroke-dashoffset:1000;
opacity:.55;
animation: drawLine 1.6s ease forwards;
}

.map-line.long{
stroke-width:2.6;
opacity:.9;
}

.map-line.short{
opacity:.35;
}

/* rutas principales */
.map-line.strong{
stroke-width:3;
opacity:.9;
}

/* rutas lejanas */
.map-line.weak{
stroke-width:1.5;
opacity:.35;
}

.map-line.strong{
stroke-width:3;
opacity:.9;
}

.map-line.weak{
stroke-width:1.5;
opacity:.35;
}

.map-point.spain{
width:12px;
height:12px;
background:#ff007a;

box-shadow:
0 0 0 8px rgba(255,0,122,.15),
0 0 0 16px rgba(255,0,122,.05);
}

/* animación dibujo */

@keyframes drawLine{
to{
stroke-dashoffset:0;
}
}


@keyframes linePulse{
0%{stroke-dashoffset:0;}
100%{stroke-dashoffset:20;}
}

/* pulso pins */

@keyframes mapPulse{

0%{
box-shadow:0 0 0 0 rgba(255,0,122,.7);
}

70%{
box-shadow:0 0 0 12px rgba(255,0,122,0);
}

100%{
box-shadow:0 0 0 0 rgba(255,0,122,0);
}

}

@keyframes lineFlow{
from{stroke-dashoffset:0;}
to{stroke-dashoffset:60;}
}

/* ===== DESTELLO EN RUTAS ===== */

.route-glow{
fill:none;
stroke:#ff007a;
stroke-width:3;
stroke-linecap:round;

stroke-dasharray:10 500;
stroke-dashoffset:0;

opacity:.9;

animation:routeGlow 3s linear infinite;
}

@keyframes routeGlow{

0%{
stroke-dashoffset:0;
opacity:0;
}

20%{
opacity:1;
}

100%{
stroke-dashoffset:-600;
opacity:0;
}

}


@media(max-width:768px){

.world-section{
padding:40px 20px;
}

.map-point{
width:10px;
height:10px;
}


 .world-title{
       font-size: 20px;
        font-weight: 700;
    }
    
    .world-subtitle {
    font-size: 14px;
}

.empresa-text p {
  font-size: 14px;
  margin-bottom: 18px;
}
.timeline-title {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 20px;
}
    
}

/* Responsive */

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .hero-content h2 {
  font-size: 24px;
  letter-spacing: 1.5px;
}

    .hero-content p {
  font-size: 15px;
    font-weight: 500;
}

.timeline-content h3 {
  margin-bottom: 10px;
  font-size: 18px;
    
}
  
  .timeline-content p {
  font-size: 13px;
  color: #555;
}

.timeline-content {

  padding: 15px 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.valores-header h2 {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 20px;
}

.valor-icon {
	font-size: 28px;
	margin-bottom: 10px;
}
.valor-card h3 {
	font-size: 15px;
	margin-bottom: 10px;
}

.quienes-cta h2 {
  font-size: 28px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.quienes-cta p {
	font-size: 14px;
	margin-bottom: 30px;
	opacity: 0.9;
}

.btn-primary, .btn-secondary {
    padding: 10px 25px; */
	border-radius: 50px;
	font-weight: 600;
}
}

/* Responsive */

@media (max-width: 900px) {

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

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 20px;
        text-align: left !important;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-icon {
        left: 20px !important;
    }
	
	.timeline-section {
    padding: 40px 40px;
}
}

@media (max-width:900px){

.hero-content h1{
font-size:28px;
margin-bottom: 0px;
}
}


.valores-header p {
    font-size: 14px;
    color: #666;
}
.valores-header {
    margin: 0 auto 30px auto;
}

.valor-card {
    padding: 25px 30px;
}

}


@media (max-width:768px){
    
.hero-content p{
font-size: 14px;
}

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

.timeline-item{
width:100%;
padding-left:70px;
padding-right:20px;
text-align:left !important;
}

.timeline-icon{
left:25px !important;
}

}

/* responsive */
@media(max-width:768px){
  .ferias-logos{
    gap:30px;
  }

  .feria-item{
    width:120px;
    height:60px;
  }
}
/* Responsive */

@media (max-width: 1100px) {
    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .valores-grid {
        grid-template-columns: 1fr;
        gap:20px;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .empresa-grid {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
}


@media (max-width: 768px) {
    .certifications-track {
        animation: scrollInfinite 60s linear infinite;
        gap: 40px;
    }

    .cert-card {
        min-width: 200px;
        height: 160px;
        padding: 30px;
    }

    .cert-card img {
        max-width: 140px;
        max-height: 90px;
    }
    
    .quienes-hero-premium{
        min-height: 280px
    }
    
        .quienes-section {
        padding: 40px;
    }
}

/* Responsive */

@media (max-width: 1000px) {
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .certifications-grid {
        grid-template-columns: 1fr;
    }
	.quienes-stats {
        display: flex;
        /* justify-content: center; */
        gap: 20px;
        padding: 50px 20px;
        /* flex-direction: column; */
}

        .stat-item p
         {
            margin-top: 10px;
            font-size: 13px;
            color: #666;
            font-weight: 500;
        }
        
        .counter {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(90deg, #ff007a, #ff5aa5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}
}

/* responsive */
@media(max-width:768px){
    .certifications-slider{
        gap:30px;
        animation-duration:45s;
    }

    .cert-card{
        min-width:180px;
        height:150px;
        padding:25px;
    }
	
	.quienes-section {
    padding: 60px 60px;
}
.hero-content {
  padding: 20px 25px;
}
.empresa-text h2 {
    font-size: 20px;
    margin-bottom: 15px;
}

.empresa-highlights li {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
}

.timeline-item {
    padding: 10px 20px 10px 60px;
}

.certifications-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.certifications-subtitle {
	margin: 0 auto 70px;
	color: #666;
	font-size: 14px;
}

.ferias-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.ferias-subtitle {
    margin: 0 auto 20px;
}

.feria-logo img {
    max-height: 100px;
}
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
	.empresa-grid{
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 20px;
		justify-content: center;
		text-align: center;
	}
	
	.empresa-grid{
		display: flex;
		align-items: center;
		gap: 20px;
		justify-content: center;
		text-align: center;
	}
	
	.quienes-bloque.reverse{
		flex-direction: column;		
	}
	
	.quienes-section {
		padding: 40px 20px 0px 20px;
	}
	.empresa-image{
		padding-bottom:40px;
	}
}

@media (max-width: 992px) {

    .quienes-bloque {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .quienes-bloque.reverse {
        flex-direction: column;
    }

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

}

/* --- FIX MOBILE: DISABLE ABOUT US ANIMATIONS --- */
@media (max-width: 1024px) {
  .hero-content, .stat-item, .timeline-content, .valor-card, .quienes-cta.visible .cta-content, .reveal {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  /* Mapa: Mostramos rutas y puntos instantáneamente */
  .map-line, .route-glow {
    stroke-dashoffset: 0 !important;
    animation: none !important;
    opacity: 1 !important;
  }
  .map-point {
    animation: none !important;
  }
  /* Slider de certificaciones: Lo dejamos estático o con scroll manual */
  .certifications-track {
    animation: none !important;
    display: flex;
    overflow-x: auto;
  }
}

@media (max-width: 768px){

.floating-social{
    display:none !important;
}

}