@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap');


.cabecera{
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: white;
}

.cabecera img{
  width: 400px;
}

.menuCabecera{
  padding: 10px;
  background-color: #104E64;
}

.textoCabecera{
  color: #104E64;
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}


.bloque1 {
    background-image: url('img/mapa3.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 50px;
    padding-bottom: 100px;
}

.label1{
  color: #104E64;
  font-size: 80px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}

.label2{
  color: #3BB8DB;
  font-size: 80px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}

.enunciado{
  color: #104E64;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}

.circulo-lista {
    display: inline-block;
    width: 0.6em;      /* Tamaño relativo al texto */
    height: 0.6em;     /* Tamaño relativo al texto */
    background-color: #3BB8DB; /* El color de tu marca */
    border-radius: 50%;        /* Esto lo hace circular */
    flex-shrink: 0;            
}

.btnCita{
  background-color: #104E64;
  color: white;
  padding: 10px 15px;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  border-radius: 25px;
}

.card-header{
  background-color: #104E64;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}

.btnFormulario{
  border: 1px solid #3BB8DB;
  color:#3BB8DB;
}

.btnFormulario:hover{
  background-color: #3BB8DB;
  color: white;
}


.bloque2 {
    background-color: #104E64;
    padding-top: 50px;
    padding-bottom: 100px;
}

.bloqueDivision .h-100 {
    transition: transform 0.3s ease, shadow 0.3s ease;
    border: 1px solid #eee !important;
}

.bloqueDivision .h-100:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.text-primary {
    color: #104E64 !important; /* El azul de tu marca */
}

.numero-paso {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: white; /* Tu azul corporativo */
    color: white;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(16, 78, 100, 0.3);
}

.bloque4{
  background-color: #104E64;
}

.texto{
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}



.burbuja-premium {
    position: fixed;
    bottom: 30px;
    right: 5vw;
    width: 28vw; /* Un poco más del 25% para que luzca la imagen */
    height: 28vw;
    max-width: 110px;
    max-height: 110px;
    min-width: 90px;
    min-height: 90px;
    
    /* Imagen de fondo */
    background-image: url('img/tu-foto-boton.jpg'); /* Cambia esto por tu ruta */
    background-size: cover;
    background-position: center;
    
    border-radius: 50%;
    border: 3px solid white;
    overflow: hidden; /* Para que el overlay no se salga del círculo */
    display: block;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.burbuja-premium:active {
    transform: scale(0.9);
}

/* Capa oscura para que el texto se lea siempre */
.burbuja-overlay {
    width: 100%;
    height: 100%;
    background: rgba(16, 78, 100, 0.5); /* Azul de tu marca con transparencia */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.burbuja-overlay span {
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Efecto visual: línea conectora opcional para PC */
@media (min-width: 768px) {
    .col-md-4 {
        position: relative;
    }
    .col-md-4:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 30px;
        right: -15%;
        width: 30%;
        height: 2px;
        background: #dee2e6;
        z-index: -1;
    }

    
}

@media(max-width: 768px){

  .bloque1, .bloque2{
    padding-top: 10px;
    padding-bottom: 20px;
  }

  .label1, .label2{
      font-size: 26px;
    }

  .enunciado{
    font-size: 16px;
  }

  .bloqueEnunciado{
    margin-bottom: 30px;
  }

}

