:root{
--white:#ffffff;
--red:#d72638;
--navy:#001f3f;
--beige-light:#fdf5e6;
--font-main:'Poppins',sans-serif;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:var(--font-main);
}

body{
background:linear-gradient(180deg,#ffffff,#f7f7f7);
color:var(--navy);
line-height:1.6;
padding-top:107px;
}


/* ===== CONTAINER ===== */
.container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding: 0 clamp(16px, 4vw, 40px);
}

/* ===== TITULO ===== */
.section-title{
font-size:42px;
color:var(--red);
margin-top:90px;
margin-bottom: 25px;
text-align:center;
font-weight:600;
}

/* ===== BLOQUES ===== */
.corporate-block{
margin-bottom:70px;
}

.corporate-block.highlighted{
background:var(--white);
border-radius:12px;
padding:50px;
border-left:6px solid var(--red);
box-shadow:0 10px 25px rgba(0,0,0,0.08);
position:relative;
}

.badge{
position:absolute;
top:-16px;
left:30px;
background:var(--red);
color:#fff;
font-size:12px;
font-weight:700;
letter-spacing:2px;
padding:6px 18px;
border-radius:4px;
}

.block-content{
display:flex;
align-items:flex-start;
gap:50px;
}

.block-content img{
width:160px;
}

/* ===== LISTA PERSONALIZADA ===== */
.custom-list{
list-style:none;
padding-left:40px;
flex:1;
}

.custom-list li{
position:relative;
margin-bottom:18px;
font-size:16px;
line-height:1.7;
}

.custom-list li::before{
content:"";
position:absolute;
left:-59px;
top:4px;
width:75px;
height:26px;
background-image:url('../img/logolista.png');
background-size:contain;
background-repeat:no-repeat;
}

/* ===== GRID MISION VISION ===== */
.mv-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
margin-bottom:50px;
}

/* ===== VALORES ===== */
.corporate-values{
margin-top:30px;
margin-bottom:60px;
}

.corporate-values h2{
font-size:32px;
color:var(--red);
margin-bottom:50px;
text-align:center;
}

.values-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:25px;
}

.value-box{
background:var(--white);
border-radius:14px;
padding:30px 20px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
text-align:center;
position:relative;
transition:transform .3s ease;
}

.value-box:hover{
transform:translateY(-5px);
}

.value-box img{
width:55px;
margin-bottom:12px;
}

.value-box h3{
color:var(--red);
margin-bottom:8px;
}

.value-number{
position:absolute;
top:-12px;
left:20px;
background:var(--red);
color:#fff;
width:28px;
height:28px;
border-radius:50%;
font-size:13px;
font-weight:700;
display:flex;
align-items:center;
justify-content:center;
}

/* ===== CLIENTES ===== */
.corporate-clients{
margin-top:60px;
margin-bottom:20px;
}

.corporate-clients h2{
font-size:32px;
color:var(--red);
margin-bottom:50px;
text-align:center;
}

.clients-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
max-width:900px;
margin:0 auto;
}

.client-box{
background:var(--white);
border-radius:14px;
padding:25px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
display:flex;
align-items:center;
justify-content:center;
  height: 180px;
  padding: 25px;
transition:transform 0.3s ease;
}

.client-box:hover{
transform:translateY(-5px);
}

.client-box img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== RESPONSIVE ===== */
@media(max-width:992px){
.values-grid{
grid-template-columns:repeat(3,1fr);
}
}

@media(max-width:768px){

.menu{
gap:20px;
}

.block-content{
flex-direction:column;
text-align:center;
}

.mv-grid{
grid-template-columns:1fr;
}

.values-grid{
grid-template-columns:repeat(2,1fr);
}

.clients-grid{
grid-template-columns:1fr 1fr;
}


}

@media(max-width:480px){

.section-title{
font-size:32px;
}

.values-grid{
grid-template-columns:1fr;
}

.clients-grid{
grid-template-columns:1fr;
}


}

.clients-grid .client-box:last-child {
    grid-column: 2 / 3;
}

/* ===== QUIENES SOMOS PRO ===== */
.contact-pro{
margin-top:40px;
margin-bottom:60px;
}

.contact-pro-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.contact-pro-info h2{
font-size:36px;
margin-bottom:15px;
}

.contact-pro-info p{
margin-bottom:20px;
font-size:16px;
line-height:1.7;
color:#555;
}

.contact-item-pro{
display:flex;
align-items:flex-start;
gap:10px;
margin-bottom:15px;
}

.icon-red{
color:var(--red);
font-size:22px;
margin-top:3px;
}

.foto-cinette img{
width:100%;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
object-fit:cover;
}

/* RESPONSIVE */
@media(max-width:768px){
.contact-pro-grid{
grid-template-columns:1fr;
}
}

.foto-cinette{
margin-top:80px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 70px;
}

.card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.card h3 {
  color: var(--red);
  font-size: 22px;
  margin-bottom: 10px;
}

/* ===== IMAGENES DENTRO DE CARD ===== */
.card img{
width:140px;
height:140px;
object-fit:contain;
display:block;
margin:20px auto 25px;
padding:15px;
background:#ffffff;
border-radius:16px;
box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

/* OPCIONAL: centrar todo el contenido para look más limpio */
.card{
text-align:center;
position:relative;
overflow:hidden;
}

/* efecto para que destaque más */
.card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:4px;
background:var(--red);
}
/* ===== MEJORA EMPRESARIAL QUIENES SOMOS ===== */

/* Mejor lectura del texto */
.contact-pro-info{
max-width:580px;
}

.contact-pro-info h2{
font-size:38px;
font-weight:600;
margin-bottom:20px;
letter-spacing:.5px;
}

.contact-pro-info p{
font-size:16px;
line-height:1.8;
color:#4a4a4a;
margin-bottom:18px;
}

/* Separación visual más limpia */
.contact-pro-grid{
align-items:flex-start;
}

/* Imagen más elegante */
.foto-cinette img{
width:115%;
max-width:570px;
margin:auto;
display:block;
border-radius:16px;
box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

/* ===== CARDS MÁS CORPORATIVAS ===== */
.grid{
margin-top:40px;
}

/* Tarjetas más premium */
.card{
background:var(--white);
padding:45px 35px;
border-radius:16px;
box-shadow:0 12px 30px rgba(0,0,0,0.08);
text-align:center;
transition:all .3s ease;
border-top:4px solid transparent;
}

/* Hover tipo empresa grande */
.card:hover{
transform:translateY(-8px);
box-shadow:0 18px 40px rgba(0,0,0,0.12);
border-top:4px solid var(--red);
}

/* Títulos más fuertes */
.card h3{
font-size:24px;
font-weight:600;
margin-bottom:15px;
letter-spacing:.5px;
}

/* Imagen más limpia */
.card img{
width:110px;
height:110px;
object-fit:contain;
margin:10px auto 20px;
padding:12px;
background:#f9f9f9;
border-radius:12px;
}

/* Texto más legible */
.card p{
font-size:15px;
line-height:1.8;
color:#555;
}

/* Espaciado general */
.contact-pro{
margin-bottom:80px;
}

.card p {
    text-align: justify;
}

.contact-pro-info p{
    text-align: justify;
}
