/* =======================================================
CABECERA
========================================================*/
  
/* Cabecera 100% ancho con ruido */
  .cabecera_ruido_ver2 {
    width:100%;
    height:225px;
    overflow:hidden;
    background-color:#e198b7;/* color de fondo del ruido */
    position: relative;
  }

/* Logo encima del ruido */
  .cabecera_ruido_ver2 .logo {
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    width:200px;
    height:auto;
  }

/* ===========================================================
INFO
=========================================================== */

/* Contenedor principal de la sección */
.seccion_inicio_full_ver2 {
  display: flex;
  flex-wrap: wrap; /* permite que columnas bajen en mobile */
  width: 100%;
  height: auto;
  overflow-x: hidden; /* evita scroll horizontal */
  box-sizing: border-box;
  margin-top: 50px;
  margin-bottom: 45px;
}

.contenedor_ver2 {
  max-width: 1200px; 
  padding: 100px 25px 0 25px;
  margin: auto;
}
.contenedor_ver2 h1{
    color: #3a3b39;
    font-size: 4rem;
    line-height: 3rem;
     font-family: "Outfit", sans-serif;
     font-weight: 500;
}

.contenedor_ver2 .subtitulo_{
    color: #3a3b39;
    font-size: 2.5rem;
    line-height: 2rem;
     font-family: "Outfit", sans-serif;
     font-weight: 300;
}
.contenedor_ver2 p{
    color: #3a3b39;
font-size: 1rem;
font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
}
p .destacado{font-size: 1.5rem; font-weight: 600;}
p .bold{font-size: 1rem; font-weight: 600;}
.contenedor_ver2 a{
    color: #3a3b39;
font-size: 1rem;
font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  transition: all 0.3s ease;
}
.contenedor_ver2 a:hover{
    color: #e198b7;
}


/* ===========================================================
PIE
=========================================================== */

.seccion_inicio_ver2 {
    height: 200px; /* deja que el contenido decida la altura */
    position: relative;
    overflow: hidden;
    width: 100%;

}

.columna_rosa_ver2 {
    position: absolute;
    bottom: 0;              /* pegada al borde inferior */
    left: 50%;              /* centrada horizontalmente */
    width: 35%;             /* ancho de la columna */
    height: 200px;            /* altura desde abajo hasta la mitad del contenedor */
    background-color: #e198b7;
    opacity: 0.85;
    transform: translateX(-50%); /* centra horizontalmente */
    z-index: 0;
}

.contenedor_pie_ver2 {
    position: absolute;
    width: 35%;
    bottom: 25px;
    left: 50%; 
    transform: translateX(-50%);
    z-index: 2;
}

.contenido_pie_ver2 {
    display: flex;
    flex-direction: column; /* Coloca todo vertical */
    align-items: center;    /* Centra horizontalmente */
    pointer-events: auto;
    text-align: center;
}


/* ===========================================================
RESPONSIVE / MEDIA QUERIES
=========================================================== */
@media (max-width: 900px) {

  .contenedor_ver2 {
    text-align: center;
  }
}
@media (max-width: 500px) {
.contenedor_ver2 h1{
    font-size: 2.6rem;
     line-height: 2.25rem;
}
.contenedor_ver2 .subtitulo_1{
    font-size: 5rem;
    line-height: 2rem;
}
.contenedor_ver2 .subtitulo_2{
    font-size: 2.25rem;
    line-height: 1.25rem;
}
}
@media (max-width: 900px) {
  .columna_rosa_ver2 {
    width: 100%;      
}
.contenedor_pie_ver2 {
    width: 100%;
}
}

