/* General */
body {
  /*background-color: #1b93b8; el color se aplica directamente con el atributo style en el archivo contact.php */
  font-family: 'Montserrat', sans-serif; 
  color: #ffffff;
}
/* Carrusel */
.carousel-inner img {
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
  }
  .cesar-title {
    margin-top: 150px; 
  }

  .profile-container {
    position: relative;
    z-index: 10; 
  }
/* Imagen de perfil - Estas clases se aplican directamente en los styles de cada div en el archivo contact.php*/
/* .profile-image {
    position: absolute;
    top: -110px; 
    left: 50%;
    transform: translateX(-50%); 
    width: 210px;
    height: 215px; 
    border-radius: 50%; 
    background: linear-gradient(90deg, #2a78b1 50%, #00b8d4 50%);
    padding: 10px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
  }
  .profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 50%; 
  } */
  
  
.name-title{
    font-family: 'Montserrat', sans-serif; 
    font-weight: 200;  
    font-size: 2rem; 
    color: #fff;   
}

.director-title {
    /* font-family: 'Permanent Marker', cursive;  */
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem; 
    color: #fff;
    margin-top: 4px; 
    letter-spacing: 8px; 
    word-spacing: 5px; 
  }

.director-title::after {
  content: ""; 
  display: block;
  width: 100%; 
  max-width: 500px; 
  border-bottom: 2px dashed #fff; 
  margin-top: 8px; 
  margin-left: auto;
  margin-right: auto;
}


/* Botones redondos */
.btn-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #ffffff;
}

.btn-circle-fixed {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #ffffff;
}

.btn-primary {
  background-color: #005f87; 
  border: none;
}

.btn-success {
  background-color: #007b5e;
  border: none;
}

.btn-info {
  background-color: #1ac6ff;
  border: none;
}

/* Tarjetas */

.card {
    border-radius: 12px;
    border: 1px solid #f1f1f1;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  /* Icono del título */
  .card-title i {
    color: #1b93b8;
  }
  
  /* Icono del perfil */
  .profile-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }
  

  .list-unstyled li {
    border-bottom: 1px dashed #ccc;
    padding-bottom: 5px;
  }
  
  .list-unstyled li:last-child {
    border-bottom: none;
  }
  
 
  .text-muted {
    font-size: 0.9rem;
    color: #6c757d;
  }
  

.btn-circle {
    width: 70px;  
    height: 70px; 
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white; 
    border: 2px solid #1b93b8; 
  }
  
  .btn-circle i {
    font-size: 2rem; 
    color: #1b93b8; 
  }
  
  .btn-circle-fixed {
    width: 50px;  
    height: 50px; 
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fac512; 
    border: 2px solid #ffffff; 
  }
  
  .btn-circle-fixed i {
    /* font-size: 2.5rem;  */
    color: #ffffff; 
  }

  .d-flex {
    gap: 30px; 
  }
  #correo {
    text-decoration: none;
  }
   /* Personalización del carrusel vertical */
   .carousel-vertical {
    height: 100vh; /* Ocupa toda la altura del viewport */
    overflow: hidden; /* Elimina cualquier scroll no deseado */
  }

  .carousel-vertical .carousel-inner {
    display: flex;
    
    height: 100%; /* Ajusta al 100% de la altura del contenedor */
  }

  .carousel-vertical .carousel-item img {
    width: 100%;
    height: 100vh; /* Las imágenes ocuparán todo el alto del viewport */
    object-fit: cover; /* Escala las imágenes sin distorsionarlas */
  }

  .carousel-indicators {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
  }

  .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    background-color: #007bff;
    border-radius: 50%;
    margin: 5px 0;
  }

  .area-fija{
    /* border: solid 1px; */
    width: 65px;
    height: 160px;
    top: 200px;
    position:fixed;
    z-index: 100;
    right: 0;
  }
