/* Base variables */
:root{
  --olive: #556B2F;
  --cream: #FDFCF7;
  --muted: #6B6B6B;
  --card-shadow: 0 6px 18px rgba(17,17,17,0.06);
  --radius-xl: 16px;
}
*{box-sizing:border-box}
body{
	font-family:'Poppins',system-ui,Arial,Helvetica,sans-serif;
	margin:0;
	background:var(--cream);
	color:#222;
	line-height:1.5;
	transform: scale(1);  
	transform-origin: top center; 
	overflow-x: hidden;transform-origin: top center; 
  overflow-x: hidden; /* <--- DEBE ESTAR AHÍ */
}
.container{
	width:calc(100% - 40px);
	max-width:1100px;
	margin:0 auto; 
	margin-top:0rem	
}

/* Header */
.header{
	background:linear-gradient(180deg,var(--olive),#4a5a27);
	position:sticky;
	top:0;
	z-index:999;
	box-shadow:0 2px 8px rgba(0,0,0,0.06)
}

.header-inner{
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding:0px 0;
	text-align:left;
s}

/* =====================================
   ESTILOS DE NAVEGACIÓN (Desktop)
   ===================================== */
.brand h1{color:#fff;margin:0;font-size:1.1rem;letter-spacing:0.5px}
.nav ul{
    display:flex; /* Desktop: Muestra los enlaces en línea */
    gap:1px;
    margin:0;
    padding:0;
    list-style:none
}
.nav a{color:#fff;text-decoration:none;font-weight:600;padding:8px 5px;border-radius:10px;transition:background .18s}
.nav a:hover{background:rgba(255,255,255,0.06)}

/* Oculta el botón hamburguesa en desktop */
.nav-toggle {
  display: none; 
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: white; 
}

/* Hero */
.hero{padding:100px 0;background:linear-gradient(180deg,var(--cream),#f6f5ee) }
.hero2{padding:100px 0;background:linear-gradient(180deg,var(--cream),#f6f5ee)}
.hero h2{color:var(--olive);font-size:2.4rem;margin:0 0 12px}
.lead{color:var(--muted);font-size:1.05rem;margin-bottom:18px}
.btn{display:inline-block;padding:10px 18px;border-radius:12px;text-decoration:none;cursor:pointer;border:2px solid transparent;font-weight:600}
.btn.primary{background:var(--olive);color:#fff}
.btn.outline{background:transparent;border:2px solid var(--olive);color:var(--olive);
opacity:0;
  transform: translateX(40px);
  animation: slideInRightp2 1.3s ease-out forwards;
  animation-delay: 1.5s;
}
.btn.fullwidth{width:100%}
/* Sections */
.section{padding:64px 0}
.section-header{text-align:center;margin-bottom:28px}
.section-header h2{font-size:1.9rem;margin-bottom:8px;color:var(--olive)}
.muted{color:var(--muted);font-size:1.1rem}
/* Grid */
.grid{display:grid;gap:20px}
.services-grid{grid-template-columns:repeat(3,1fr) }
/*.home-grid{grid-template-columns:repeat(2,1fr) }*/
.service-card,.card{background:#fff;border-radius:var(--radius-xl);padding:20px;box-shadow:var(--card-shadow)}
.card h3{margin:12px 0 8px;color:var(--olive)}
.icon-wrap{display:flex;align-items:center;justify-content:center;background:var(--olive);color:white;width:64px;height:64px;border-radius:12px;  flex-shrink: 0; }
.icon-wrap.small{width:48px;height:48px;border-radius:10px;background:rgba(85,107,47,0.12);color:var(--olive);}
.price{margin-top:10px;color:var(--olive);font-weight:700}
.features{margin-top:12px;padding-left:16px;color:#333;font-size:14px}
/* Additional */
.additional-grid{grid-template-columns:repeat(2,1fr)}
.add-card{background:#fff;padding:18px;border-radius:12px;box-shadow:var(--card-shadow);display:flex;gap:12px;align-items:flex-start}
/* Contact */
.contact-grid{grid-template-columns:repeat(2,1fr);align-items:start;gap:24px}
.info-card{background:#fff;padding:16px;border-radius:12px;box-shadow:var(--card-shadow);margin-bottom:18px}
.info-row{display:flex;gap:12px;align-items:center;margin-bottom:12px}
.info-row i{width:36px;height:36px;border-radius:8px;background:rgba(85,107,47,0.08);display:inline-flex;align-items:center;justify-content:center;color:var(--olive)}
.form{background:#fff;padding:18px;border-radius:12px;box-shadow:var(--card-shadow)}
.form input,.form textarea{width:100%;padding:12px;border-radius:10px;border:1px solid #e6e6e6;margin-bottom:12px;resize:none}
.form .checkbox{display:flex;align-items:center;gap:8px;font-size:.95rem}
.form-status{margin-top:12px;color:var(--olive)}
/* Stats & achievements */
.stats-grid{grid-template-columns:repeat(4,1fr);text-align:center}
.stat .num{font-size:1.6rem;font-weight:700;color:var(--olive)}
.achievements-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin-top:18px}
/* Centrar la tercera tarjeta */
.achievements-grid .achievement:nth-child(3) {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 500px; /* opcional, para que no sea muy ancha */
}
.achievement{background:#fff;padding:10px;border-radius:12px;display:flex;gap:12px;align-items:flex-start;box-shadow:var(--card-shadow)}
.pro-statement{background:linear-gradient(90deg,rgba(85,107,47,0.04),rgba(0,0,0,0.02));padding:18px;border-radius:12px;margin-top:18px;font-style:italic}
/* Footer */
.footer{background:#f3f3f3;padding:18px 0;margin-top:30px}
.footer-inner{display:flex;justify-content:space-between;align-items:center;gap:12px}
.socials a{color:var(--olive);margin-left:8px}
/* Back to top */
#backToTop{position:fixed;right:18px;bottom:18px;width:44px;height:44px;border-radius:8px;background:var(--olive);color:white;border:none;display:none;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 6px 18px rgba(0,0,0,0.08)}
/* Animations */
.fade-up{opacity:0;transform:translateY(18px); font-size:15px ;
			transition: transform 0.3s ease;}
.fade-up.show{opacity:1;transform:none}


/* Responsive Tablet */
@media (max-width:900px){
	.services-grid{grid-template-columns:repeat(2,1fr)}
	.additional-grid{grid-template-columns:1fr}
	.contact-grid{grid-template-columns:1fr}
	.stats-grid{grid-template-columns:repeat(2,1fr)}
	.home-cards {grid-template-columns: repeat(2, 1fr)}	
    .home-grid{grid-template-columns:repeat(2,1fr) }
}

/* =========================================
   RESPONSIVE MÓVIL (Max 576px) - CONSOLIDADO
   ========================================= */
@media (max-width: 576px) {
	
    /* 1. LAYOUT & GRID STYLES: Apila a una sola columna */
   /* REGLAS EXISTENTES DE GRIDS/TAMAÑOS (Mantener) */
    .services-grid{grid-template-columns:repeat(1,3fr)}
	.additional-grid{grid-template-columns:1fr}
	.contact-grid{grid-template-columns:1fr}
	.stats-grid{grid-template-columns:repeat(2,1fr)}
	.achievements-grid{grid-template-columns:repeat(1,3fr)}
	.home-cards { grid-template-columns: repeat(2,1fr) }
    .features{margin-top:12px;padding-left:16px;color:#333;font-size:9px}
	 .home-grid {
        grid-template-columns: 1fr !important;
    }

    /* CRUCIAL: Apila texto e imagen en la sección principal */
    .grid.home-grid {
       grid-template-columns:repeat(1,3fr);
    }
        
 
    
    /* Ajustes de padding en secciones para reducir el espacio blanco */
    .section, 
    #home.section.section.hero,
    #services.section.section.hero2,
    #ourphilosophy.section.section.hero2,
    #contact.section.section.hero2,
    #references.section.section.alt-bg {
        padding: 40px 0;
        min-height: auto;
    }

    /* 4. SOLUCIÓN MENÚ HAMBURGUESA */
    
    /* Muestra el botón */
    .nav-toggle {
        display: flex; 
		position: relative; /* Asegura que el z-index funcione correctamente */
		z-index: 10009; /* <--- DEBE SER MÁS ALTO QUE EL MENÚ (1000) */
    }
    
	.nav {
		  position: absolute; /* <--- CRÍTICO: Cambiar de 'absolute' a 'fixed' */
		  top: 0;          /* Empieza en el borde superior de la ventana */
		  right: 0;
		  width: 70%;
 		  background: #4c5f2f;
		  padding: 70px 20px 20px 20px; /* Ajuste para que el menú empiece por debajo del header */
		  box-shadow: -2px 2px 8px rgba(0,0,0,0.25);
		  transform: translateX(100%);
		  transition: transform 0.3s ease-in-out;
		  z-index: 1000;
	  }

	  /* Items del menú en columna */
	  .nav ul {
		display: flex;
		flex-direction: column;
		gap: 18px;
		/* Ajusta el padding superior para bajar los links y evitar el logo */
		padding-top: 50px; 
	  }
	   
	/* Muestra el menú SOLO cuando tiene la clase 'active' */
	  .nav.active {
		display: flex; /* <--- CRÍTICO: FUERZA LA APARICIÓN */
		transform: translateX(0);
	  }

	  .nav ul li a {
		font-size: 1.1rem;
		color: white;
	  }
    
    .features{font-size:12px}
	
 
}

/* Home section styles */
.hero-description {
  text-align: center;
  max-width: 900px;
  margin: 0px auto 20px;
  font-size: 1.19rem;
  color: #444;
  line-height: 1.5;
}
 

.small-card {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 6px 12px rgba(17,17,17,0.04);
  animation: fadeIn 0.8s ease-in-out;
}

.small-card h3 {
  color: var(--olive);
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-align: center;

}

.small-card p {
  font-size: 0.98rem;
  margin-bottom: 10px;
  text-align: justify;
}

.objectives-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.objectives-list li {
  padding-left: 18px;
  margin-bottom: 8px;
  position: relative;
  text-align: center;
  font-size: 0.9rem;
  color: #333333;
}

.objectives-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--olive);
  font-weight: bold; 

}
.titulo-doble .linea-grande {
  font-size: 30px;
  font-weight: bold;
  color: white;
}

.titulo-doble .linea-pequena {
  font-size: 14.5px;
  font-weight: normal;
  color: white;
}

.hero-textp1 {
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  transform: translateX(40px);
  animation: slideInRightp1 1.2s ease-out forwards;
  animation-delay: 0.4s;
}

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

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}


.hero-textp2 {
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;  
  transform: translateX(40px);
  animation: slideInRightp2 1.5s ease-out forwards;
  animation-delay: 1.5s;
}

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

.home-parrafo {
  font-size: clamp(0.9rem, 1.6vw, 1rem); /* móvil 0.9rem, escala con viewport, máximo 1.1rem */
  color: #4b5563;         /* gris oscuro */
  font-weight: 500;
}

.strong-home-parrafo {
  font-size: clamp(0.9rem, 1.6vw, 1.2rem); /* móvil 0.9rem, escala con viewport, máximo 1.1rem */
  color: #4b5563;         /* gris oscuro */
  font-weight: 500;
  font-weight: bold; 
  font-style:italic;
  font-style:Arial;
}

/* ===== Hero General ===== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  background-color: #fdfcf7; /* color crema de tu paleta */
  flex-direction: column;
  text-align: center;
  height: 100vh; 
}

 
/* Columna de texto */
.hero-content {
  flex: 1 1 500px;
  color: #333;
  margin-top: -5rem; /* elimina cualquier separación extra */
  padding-top: 0;
}

.hero-content strong {
  color: #3f512a; /* verde oliva elegante */
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: justify;
}

/* Columna de imagen */
.hero-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: left;
  max-width: 95%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  margin-top: -1rem; /* elimina cualquier separación extra */
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  box-shadow: 0 6px 22px rgba(0,0,0,0.12);
  border: 1px solid var(--olive);
  transition: transform 1s ease, box-shadow 0.4s ease;
}

.hero-image img:hover,
	.fade-up:hover{
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}



/* --- Our Philosophy Section --- */
.philosophy-container {
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: bold;
  color: #556b2f; /* verde oliva */
  margin-bottom: 10px;
    text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
    text-align: center;
}
  

.home-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 70px;
  margin: 20px auto;
}


.home-grid {
  grid-template-columns: 3fr 2fr; /* Columna de texto (3) más ancha que la imagen (2) */
  display: grid; /* Asegura el modo grid */
  align-items: center;
  gap: 10px;
  margin: 20px auto;
  margin-top: 40px;
}

.home.small-card {
  background-color: transparent;
  border-radius: 0px;
  box-shadow: 0 0px 0px rgba(0,0,0,0);
  padding: 0px;
  width: 100%; /* Ocupa el 100% de la columna de 3fr que definimos arriba */
}


.card.small-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 18px;
  width: 300px;
  transition: transform 0.3s ease;
}
 

.card.small-card:hover {
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
   transform: scale(1.03);
}

.icon-wrapper {
  font-size: 2.2rem;
  color: #556b2f;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 576px) {
  .home-cards {
    flex-direction: column;
    align-items: center;
  }
}

 
#home.section.section.hero {
  padding-top: 0.5rem; /* antes seguro estaba en 120px o más */
  padding-bottom: 110rem; /* antes seguro estaba en 120px o más */
  min-height: 30vh; /* Antes seguro tenías 100vh, esto la hace un poco más baja */
  padding: 180px 0;  /* Reduce espacio superior e inferior */
}


#services.section.section.hero2 {
  padding-top: 0.5rem; /* antes seguro estaba en 120px o más */
  padding-bottom: 3rem; /* antes seguro estaba en 120px o más */

}

#ourphilosophy.section.section.hero2 {
  padding-top: 0.5rem; /* antes seguro estaba en 120px o más */
  padding-bottom: 3rem; /* antes seguro estaba en 120px o más */
}

#contact.section.section.hero2 {
  padding-top: 0.5rem; /* antes seguro estaba en 120px o más */
  padding-bottom: 3rem; /* antes seguro estaba en 120px o más */
}

#references.section.section.alt-bg {
  padding-top: 0.5rem; /* antes seguro estaba en 120px o más */
  padding-bottom: 3rem; /* antes seguro estaba en 120px o más */
}
 
 
 

.home-content {
    margin-bottom: -3rem; /* antes puede estar 40px o más */
}
 

.home-content h2 {
  font-size: 5rem;
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: -1rem;
  color: #556b2f;
  letter-spacing: 1px;
}

.home-content p {
  font-size: 1.25rem;
  color: #6b6b6b;
  margin-top: 0;
  margin-bottom: 7rem; /* quita el espacio extra debajo del texto */
  font-style:italic;
}

 

.titulo-animado {
  opacity: 0;
  transform: translateX(-100px);
  animation: aparecerIzquierda 5s ease-out forwards;
  animation-delay: 1s;

}

/* Animación de entrada desde la izquierda */
@keyframes aparecerIzquierda {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 section#home {
  padding-bottom: 10px !important;
}

  

.textservices h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--olive);
  margin-top:0.3rem;
  margin-bottom:0.1rem;
}

.textservices span {
  margin: 0;
  font-size: 0.9rem;
  color: var(--olive);
  font-style:italic;
  
 
}

.icon-title {
  display: flex;
  align-items: center;
  gap: 1rem; /* espacio entre icono y texto */
  transition: transform 0.3s ease;
}


  


.hero-title { 
  text-align: center;
  max-width: 900px;
  margin: 0px auto 20px;
  margin-top : -3rem;
  margin-bottom : -0.2rem;
  font-size: 4.5rem;
  color: var(--olive);
  line-height: 1.5;
  
  opacity: 0;  
  animation: fadeUp 1.2s ease-out forwards;
  animation-delay: 0.4s;
  transform: translateY(40px);  
}


.hero-subtitle { 
  text-align: center;
  max-width: 900px;
  margin: 0px auto 20px;
  font-size: 1.1rem;
  color: #777;
  line-height: 1;
  opacity: 0;  
  animation: fadeUp 1.2s ease-out forwards;
  animation-delay: 0.4s;
  transform: translateY(40px); 
  font-style:italic;  
} 

.texto-home{
  opacity: 0; 
  transform: translateX(40px);
  animation: slideInRightp2 1.3s ease-out forwards;
  animation-delay: 0.9s;
  font-size: clamp(0.9rem, 1.6vw, 1.3rem); /* móvil 0.9rem, escala con viewport, máximo 1.1rem */
  line-height: 1.5;
  color: #3f512a !important;
  margin-bottom: 8px;
  text-align: left;
  word-spacing: 0.5rem;    
  font-style:Arial;
}


.texto-homep2{
  opacity: 0; 
  transform: translateX(40px);
  animation: slideInRightp2 1.3s ease-out forwards;
  animation-delay: 1.5s;
  font-size: clamp(0.9rem, 1.6vw, 1.3rem); /* móvil 0.9rem, escala con viewport, máximo 1.1rem */
  line-height: 1.5;
  color: #3f512a !important;
  margin-bottom: 8px;
  text-align: left;
  word-spacing: 0.5rem;    
  font-style:Arial;
}

/* ===== Animación real de abajo hacia arriba ===== */

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


@media (max-width: 576px) {

	.titulo-doble
	.linea-grande
	{
		font-size:1.3rem;
		
	}

	.titulo-doble
	.linea-pequena
	{
		font-size:0.75rem;
		
	}

    .hero-title {
        font-size: 2rem; /* Reducción drástica para móvil */
        margin-top: 0;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.75rem; /* Reducción drástica para móvil */
        margin-top: 0;
        margin-bottom: 0.5rem;
    }

    /* Párrafos principales: Estandariza el tamaño y quita el word-spacing */
    .texto-home,
    .texto-homep2,
    .strong-texto-home,
    .home.small-card p {
        font-size: 0.85rem !important; /* !important para sobrescribir clamp */
        word-spacing: normal !important; 
        line-height: 1.5;
    }

	/* Botón */
    .btn.outline {
        font-size: 0.7rem;
        padding: 10px 15px;
    }
    
	.section-title,
	.section-header h2{
		font-size:2rem;
	}

	.section-header p{
		font-size:0.85rem;
	}	  
		 
	.hero-image { 
	  max-width: 60% !important;
      margin: 0 auto !important;
	  border-radius: 12px; 
	}

	.hero-image img {
      width: 100% !important;
      max-width: 380px !important;
      height: auto !important;
	  border-radius: 4px; 
	  border: 1px solid var(--olive); 
	  margin: 0 auto;
      display: block;
	}
	   
 
    .hero-title {
		order: 1;
	}

	.hero-image img {
		order: 2;
	}

	.hero-text {
		order: 3;
	}

	.fade-in-up {
		opacity: 0;
		transform: translateY(20px);
		animation: fadeInMove 0.8s ease-out forwards;
	  }

	  @keyframes fadeInMove {
		to {
		  opacity: 1;
		  transform: translateY(0);
		}
	  }

	  /* Delays escalonados */
	  .hero-title {
		animation-delay: 0ms !important;
	  }

	  .hero-subtitle {
		animation-delay: 150ms !important;
	  }

	  .hero-image {
		animation-delay: 300ms !important;
	  }

	  .texto-home {
		animation-delay: 450ms !important;
	  }

	  .texto-homep2 {
		animation-delay: 600ms !important;
	  }

	  .btn.outline {
		animation-delay: 750ms !important;
	  }
	  
} 
 

.location-link {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  transition: transform 0.2s ease; 
}

.location-link:hover {
    transform: translateX(3px); /* movimiento leve */
}

.location-link:hover i {
   transform: scale(1.1);
   transition: transform 0.2s ease;
}

.location-link,
.location-link:visited,
.location-link:hover,
.location-link:active {
  color:black;
  text-decoration: none;   /* sin subrayado */
}

/* ===== Services (benefits style) ===== */


.services-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px 30px;
  max-width: 800px;  
  margin: 0 auto;
}

.service-benefit {
  background: #ffffff;
  border-radius: 24px;  
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.02);
  height: 80%; /* antes 250px */
  padding: 35px 25px;
     
}


/* Icon container (CLAVE VISUAL) */
.service-icon {
  width: 100%;
  height: 100%;
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.service-icon i {
  width: 56px;
  height: 56px;
  color: #556B2F; /* Verde Oliva */
  stroke-width: 1.2px; /* Trazo elegante */
  fill: rgba(85, 107, 47, 0.1); /* Relleno suave para que parezcan sólidos */
}
/* Title */
.service-benefit h3 {
 font-size: 1.05rem;
  font-weight: 700;
  color: #556B2F;
  line-height: 1.25;
  text-align: center;
  max-width: 200px;
  margin: 0;    /* limpio */    
   
}


/* Hover (igual al mockup) */
.service-benefit:hover {
transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
}

.mockup-icon {
  width : 170%;
  height: 170%;
  object-fit: contain; /* 🔒 evita distorsión */
}



  
/* Tablet (900px) */
@media (max-width: 900px) {
  .services-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    /* Mantén el gap vertical pequeño como querías antes */
    gap: 15px 25px; 
  }

  .service-icon, .mockup-icon {
    width: 100px;  /* Tamaño fijo sugerido para tablet */
    height: auto;
    margin-bottom: 15px;
  }
}


/* Mobile (576px) */
@media (max-width: 576px) {
  .services-benefits-grid {
    /* Si el texto de tus servicios es largo, considera 1fr para que no se amontone */
    grid-template-columns: repeat(2, 1fr); 
    gap: 10px 15px;
  }

  .service-benefit {
    height: auto;
    padding: 20px 15px; /* Padding reducido para ganar espacio */
  }

  .service-icon, .mockup-icon {
    width: 80px;   /* Tamaño optimizado para móvil */
    height: auto;
    margin-bottom: 10px;
  }

  /* Ajuste para pantallas muy pequeñas (iPhone SE, etc) */
  @media (max-width: 380px) {
    .services-benefits-grid {
      grid-template-columns: 1fr; /* Una sola columna para que sea legible */
    }
  }
}