/*Genericos*/
/*titulo fuente*/
/* <uniquifier>: Use a unique and descriptive class name*/


.justificado {
  text-align: justify;
}

/* montserrat-regular - latin */
/* montserrat-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/sans-serif/montserrat-v30-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/sans-serif/montserrat-v30-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* montserrat-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/sans-serif/montserrat-v30-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* Barra de header*/
.barra-navegacion {
  background-color: #000;
  color: white;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 15px 30px;
  width: 100%;
  box-sizing: border-box;
}


.barra-navegacion .logo {
  font-size: 1.5em;
  font-weight: bold;
}

.barra-navegacion nav {
  display: flex;
  gap: 20px; /* Espacio entre botones */
}

/* === Enlaces de navegación y footer === */
.enlace {
  color: white; /*Color de letra antes de selccionar*/
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
  transition: color 0.3s ease; /* transición suave */
}

.enlace:hover {
  color: #FF00FF /*Color despues de tocar con el cursor*/;
}

/*Color de fondo*/
body.colorfondo {
  font-family: "Montserrat", sans-serif;
  background-color: #005696;
  color: #000; /* color de texto */
}












/*  Estructura base para sticky footer */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.contenido {
  flex: 1;
}



/*  Separador visual */


/*  Footer principal */
.footer-principal {
  background-color: black;
  color: white;
  width: 100%;
  margin: 0;
  padding: 20px 0;
  box-sizing: border-box;
}





.footer-info {
  width: 100%;
  box-sizing: border-box;
  padding: 0 30px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}




.footer-links a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
}

.footer-links a:hover {
  color: #ccc;
}




/* marco de planes */
.planes-contenedor {
  display: flex;
  justify-content: center;
  gap: 30px; /* Espacio entre cuadros */
  flex-wrap: wrap; /* Permite que se acomoden en pantallas pequeñas */
  margin: 40px auto;
}


.plan-cuadro {
  border: 2px solid #fff;
  border-radius: 10px;
  padding: 20px;
  width: 280px;
  background-color: rgba(255, 255, 255, 0.1);
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.plan-cuadro:hover {
  transform: scale(1.03);
}


.plan-titulo {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.plan-imagen img {
  width: 160px;
  height: 160px;
  object-fit: contain; /*evita distorsion*/
  margin-bottom: 15px;
}

.plan-precio {
  font-size: 1.2em;
  margin-bottom: 15px;
}


.plan-servicios li {
  margin: 8px 0;
  font-weight: 500;
}

.plan-servicios {
  list-style-type: disc; /* muestra puntos */
  padding-left: 20px;    /* espacio para que se vean los puntos */
  margin: 8px 0;
}
