/* Reset básico */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html, body {
            height: 100%;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Primera sección - Lila claro */
        .seccion-lila {
            background-color: #e6e6fa; /* Lila muy claro */
            min-height: 100vh; /* Ocupa toda la altura de la pantalla */
            padding: 20px;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        
        /* Cabecera con logo y menú */
        .cabecera {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            margin-bottom: 20px; /* Reducido para acercar contenido */
            position: relative;
            z-index: 100;
        }
        
        /* Logo responsive */
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            max-width: 100%;
            height: auto;
            width: auto;
            max-height: 250px; /* Altura máxima en desktop */
            transition: all 0.3s ease;
        }
        
        /* Menú desktop */
        .menu {
            display: flex;
            list-style: none;
        }
        
        .menu li {
            margin-left: 25px;
        }
        
        .menu a {
            text-decoration: none;
            color: #4b0082;
            font-weight: 500;
            transition: color 0.3s;
            padding: 5px 0;
            position: relative;
        }
        
        .menu a:hover {
            color: #6a0dad;
        }
        
        .menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #6a0dad;
            transition: width 0.3s;
        }
        
        .menu a:hover::after {
            width: 100%;
        }
        
        /* Botón hamburguesa */
        .hamburguesa {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 101;
        }
        
        .hamburguesa span {
            width: 100%;
            height: 3px;
            background-color: #4b0082;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        /* Menú móvil - Ahora se despliega debajo del header */
        .menu-movil {
            position: absolute;
            top: 100%;
            right: 0;
            width: 100%;
            max-width: 300px;
            background-color: #4b0082;
            padding: 20px;
            transition: all 0.4s ease;
            z-index: 99;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 0 0 8px 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
        }
        
        .menu-movil.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .menu-movil ul {
            list-style: none;
        }
        
        .menu-movil li {
            margin-bottom: 15px;
        }
        
        .menu-movil a {
            color: white;
            text-decoration: none;
            font-size: 1.1rem;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s;
        }
        
        .menu-movil a:hover {
            color: #d8bfd8;
            padding-left: 10px;
        }
        
        /* Contenido principal dividido en dos columnas - INVERTIDAS */
        .contenido-principal {
            display: flex;
            flex: 1;
            align-items: center;
            gap: 60px; /* Aumentado para mejor distribución */
            position: relative;
            z-index: 1;
            padding: 20px 0;
        }
        
        .columna-izquierda {
            flex: 1;
            padding: 20px;
        }
        
        .columna-derecha {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        /* ESTILOS MEJORADOS PARA LA IMAGEN Y CONTENIDO */
        .imagen-placeholder {
            width: 100%;
            max-width: 550px; /* Aumentado ligeramente */
            height: 450px; /* Aumentado para ocupar más espacio */
            border-radius: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(75, 0, 130, 0.15); /* Sombra para dar profundidad */
            border: 1px solid rgba(75, 0, 130, 0.1); /* Borde sutil */
        }
        
        .imagen-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
            transition: transform 0.5s ease; /* Efecto hover */
        }
        
        .imagen-placeholder:hover img {
            transform: scale(1.03); /* Efecto de zoom sutil al pasar el mouse */
        }
        
        h1 {
            font-size: 2.8rem; /* Aumentado para mayor impacto */
            margin-bottom: 1.5rem;
            color: #4b0082;
            line-height: 1.2;
        }
        
        h2 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: #6a0dad;
            font-weight: 500;
        }
        
        p {
            font-size: 1.3rem; /* Aumentado para mejor legibilidad */
            color: #555;
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }
        
        .botones {
            display: flex;
            gap: 20px;
            margin-top: 30px; /* Espacio adicional antes de los botones */
        }
        
        .boton {
            padding: 15px 35px; /* Aumentado para botones más prominentes */
            border: none;
            border-radius: 8px; /* Bordes más redondeados */
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sombra para los botones */
        }
        
        .boton-primario {
            background-color: #4b0082;
            color: white;
        }
        
        .boton-primario:hover {
            background-color: #6a0dad;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(75, 0, 130, 0.3);
        }
        
        .boton-secundario {
            background-color: transparent;
            color: #4b0082;
            border: 2px solid #4b0082;
        }
        
        .boton-secundario:hover {
            background-color: rgba(75, 0, 130, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(75, 0, 130, 0.2);
        }
        
        /* Segunda sección */
        .seccion-blanca {
			min-height: 100vh;
  			padding: 20px;
  			display: flex;
  			flex-direction: column;
  			position: relative;
  			justify-content: flex-start; /* Corregido: 'top' → 'flex-start' */
  			/* align-items: stretch; → opcional, ya es el valor por defecto */
  			box-sizing: border-box;
		}
       
        /* Elementos decorativos adicionales */
        .decoracion {
            position: absolute;
            z-index: 0;
            opacity: 0.1;
        }
        
        .circulo-1 {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: #6a0dad;
            top: 10%;
            right: 5%;
        }
        
        .circulo-2 {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: #4b0082;
            bottom: 15%;
            left: 3%;
        }
        
        /* Lista de características */
        .caracteristicas {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 25px 0;
        }
        
        .caracteristica {
            display: flex;
            align-items: center;
            gap: 10px;
            width: calc(50% - 10px);
        }
        
        .caracteristica i {
            color: #6a0dad;
            font-size: 1.2rem;
        }
        
        .caracteristica span {
            font-size: 1rem;
            color: #555;
        }
        
        /* Secciones adicionales (para ejemplo) */
        
        /* Animación hamburguesa cuando está activa */
        .hamburguesa.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }
        
        .hamburguesa.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburguesa.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }
        
			/* Contenedor de los 4 recuadros: una sola fila, equidistante */
		.contenedor-recuadros {
  			display: flex;
  			justify-content: space-between; /* ← clave para equidistancia */
  			gap: 20px; /* Espacio mínimo entre cuadros (opcional, pero ayuda) */
  			width: 100%;
  			max-width: 1200px; /* Ajusta según tu diseño */
  			margin: 30px auto 0;
  			padding: 0 10px; /* Evita que se peguen al borde en móviles */
  			box-sizing: border-box;
		}

/* Contenedor de los recuadros */
.contenedor-recuadros {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 1100px;
  margin: 30px auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* Estilo base de cada recuadro */
.recuadro {
  /* Hace que el recuadro sea cuadrado */
  width: calc(25% - 24px);
  aspect-ratio: 1 / 1;

  position: relative;
  padding: 24px;
  padding-left: 50px; /* espacio para el icono */

  /* Borde fino por defecto */
  border: 1px solid;
  border-color: #cccccc; /* gris claro, sutil */

  border-radius: 10px;
  background: white;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  /* Transición suave para hover */
  transition: all 0.3s ease;

  /* Responsive: evita que se rompa en pantallas pequeñas */
  min-width: 220px;
  box-sizing: border-box;
}

/* Colores de borde específicos (solo visibles al hacer hover) */
.recuadro-1 { --color-borde: #2E7D32; }
.recuadro-2 { --color-borde: #1565C0; }
.recuadro-3 { --color-borde: #E65100; }
.recuadro-4 { --color-borde: #6A1B9A; }

/* Efecto al pasar el ratón */
.recuadro:hover {
  border-width: 3px;
  border-color: var(--color-borde);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* Icono en esquina superior izquierda */
.icono {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 20px;
  color: #555;
  font-weight: bold;
}

/* Texto dentro del recuadro */
.recuadro p {
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
  color: #333;
}
.contenido-seccion {
  text-align: center;       /* Centra el texto (h1, h3, párrafos, etc.) */
  max-width: 800px;         /* Opcional: evita líneas demasiado largas */
  margin: 0 auto 40px;      /* Centra el bloque + espacio inferior */
  padding: 0 20px;          /* Espacio lateral en móviles */
}

/* Responsive: tablet */
@media (max-width: 992px) {
  .recuadro {
    width: calc(50% - 24px);
  }
}

   .bg-lavender {
    background-color: #e6e6fa !important;
  	}

  	.feature-box {
   	 transition: border-color 0.3s ease, box-shadow 0.3s ease;
   	 border: 2px solid #e0e0e0; /* Borde visible pero suave en estado normal */
   	 background: #fff;
   	 border-radius: 0.375rem; /* Asegura esquinas redondeadas coherentes */
  	}

 	 .feature-box:hover {
    	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  	}

 	 .feature-box.hover-blue:hover { border-color: #0d6efd; }
	  .feature-box.hover-green:hover { border-color: #198754; }
 	 .feature-box.hover-purple:hover { border-color: #6f42c1; }
	  .feature-box.hover-orange:hover { border-color: #fd7e14; }
	  
	/* Fondo lila pastel suave para la última sección */
  .bg-soft-blue {
    background-color: #f0f7ff !important;
  }
  
  .step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin: 0 auto 1rem;
    /* Asegurar que no haya padding ni border que distorsione */
    padding: 0;
    border: none;
    box-sizing: content-box;
    /* Sombra suave opcional */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  .custom-navbar {
  background-color: #E6E6FA !important; /* Lila suave */
  border: 0.2px solid #800080;            /* Borde morado */
  border-radius: 8px;                   /* Opcional: bordes redondeados */
}


/* Responsive: móvil */
@media (max-width: 576px) {
  .recuadro {
    width: 100%;
  }
}        
        /* Responsive */
        @media (max-width: 1200px) {
            .logo img {
                max-height: 160px;
            }
            
            h1 {
                font-size: 2.5rem;
            }        
        }
        
        
        @media (max-width: 992px) {
            .logo img {
                max-height: 150px;
            }
            
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.6rem;
            }
            
            .imagen-placeholder {
                height: 400px;
            }
        }
        
        @media (max-width: 768px) {
            .cabecera {
                flex-direction: row;
            }
            
            .logo img {
                max-height:130px;
            }
            
            /* Ocultar menú desktop y mostrar hamburguesa */
            .menu {
                display: none;
            }
            
            .hamburguesa {
                display: flex;
            }
            
            .contenido-principal {
                flex-direction: column;
                gap: 40px;
            }
            
            .columna-izquierda, .columna-derecha {
                width: 100%;
            }
            
            h1 {
                font-size: 2rem;
                text-align: center;
            }
            
            h2 {
                font-size: 1.5rem;
                text-align: center;
            }
            
            p {
                font-size: 1.1rem;
                text-align: center;
            }
            
            .caracteristicas {
                justify-content: center;
            }
            
            .caracteristica {
                width: 100%;
                justify-content: center;
            }
            
            .botones {
                flex-direction: column;
                align-items: center;
            }
            
            .boton {
                width: 100%;
                max-width: 300px;
            }
            
            /* Ajuste para imagen en móviles */
            .imagen-placeholder {
                height: 300px;
            }
            
            .decoracion {
                display: none; /* Ocultar elementos decorativos en móviles */
            }
        }
        
        @media (max-width: 576px) {
            .logo img {
                max-height: 120px;
            }
            
            .contenedor-recuadros {
    				flex-wrap: nowrap;
    				overflow-x: auto;
    				justify-content: flex-start;
    				gap: 16px;
    				padding: 0 16px;
  				}
  				
  				.recuadro {
    				flex: 0 0 calc(70vw - 32px); /* ancho fijo en móviles para evitar colapso */
    				min-width: 220px;
  				}
  				
            h1 {
                font-size: 1.8rem;
            }
            
            h2 {
                font-size: 1.3rem;
            }
            
            .menu-movil {
                max-width: 100%;
                border-radius: 0;
            }
            
            .imagen-placeholder {
                height: 250px;
            }
        }