/* Fuente general 
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
}
*/

/* Hero Section */
.hero {
  /*background: url('img/DAW/DAWheader.jpg') no-repeat center center/cover;*/
  height: 80vh; /* Hero a pantalla completa */
  position: relative;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); /* capa oscura para mejor legibilidad */
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-text {
  padding: 40px 0 40px 80px; /* arriba, derecha, abajo, izquierda */
}


.hero h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 2.5rem;
  line-height: 1.3;
}

.hero .resaltado {
  font-family: 'Roboto', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
}

.hero p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  color: #f1f1f1;
}

.btn-primary {
  background-color: #009FE3;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #009FE3;
}

/* Responsividad */
@media (max-width: 768px) {
  .hero {
    text-align: center;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero .resaltado {
    font-size: 2.3rem;
  }

  .hero-text {
    padding: 20px;
  }
}

/*------------------------------------------------------------------*/

/* Sección creatividad */
.creatividad {
  background-color: #fff;
}

.imagen-creatividad {
  border: 3px solid #009FE3;
  max-width: 75%;   /* aquí haces la imagen más pequeña */
  height: auto;     /* mantiene la proporción */
  display: block;
  margin: 0 auto;   /* la centra */
}


.texto-creatividad h2 {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #000;
}

.btn-info {
  background-color: #009FE3;
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-info:hover {
  background-color: #009FE3;
  color: #fff;
}

/* Responsividad */
@media (max-width: 768px) {
  .texto-creatividad {
    text-align: center;
  }

  .texto-creatividad h2 {
    font-size: 2rem;
  }

  .btn-info {
    margin-top: 20px;
  }
}

/*------------------------------------------------------------------*/
/* Sección información diplomado */
/* Fondo general de la sección */
.info-diplomado {
  background-color:#E4E4E4;
;
  padding: 40px;
  /*border-radius: 12px;*/
}

/* Íconos */
.icono-info {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

/* Texto */
h5 {
  color: #000;
  margin-bottom: 5px;
}

p {
  color: #333;
  font-size: 15px;
  margin-bottom: 0;
}

/* Línea divisoria entre columnas */
.columna-dividida {
  position: relative;
}

.columna-dividida::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 1.5px;
  background-color: #999; /* tono gris visible */
}

.border-bottom {
  border-color: #999 !important; /* línea horizontal más visible */
}

/* Responsivo */
@media (max-width: 767px) {
  .columna-dividida::before {
    display: none;
  }
}

/*------------------------------------------------------------------*/
/* Sección por qué estudiar */
/* Contenedor general */
.why-section {
  background-color: #E4E4E4;
  padding: 40px;
  /*border-radius: 12px;*/
}

/* Alinea los textos e imágenes en el centro de cada columna */
.why-item {
  display: flex;
  align-items: center;
  justify-content: center; /* 🔹 centra horizontalmente */
  text-align: left; /* 🔹 a la izquierda el texto dentro del bloque */
}

/* Ajuste de la imagen */
.why-item img.icon {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-right: 15px;
}

/* Texto dentro del ítem */
.why-item div {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Cambia a 'center' si quieres todo centrado */
}

/* Encabezados */
.why-item h5 {
  font-weight: 700;
  margin-bottom: 8px;
}

/* Líneas divisorias */
.divider-horizontal {
  height: 2px;
  width: calc(100% - 40px);
  background-color: #b3b3b3;
  border-radius: 2px;
  margin: 0 auto;
}

.divider-vertical {
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background-color: #b3b3b3;
  border-radius: 2px;
}

/* Proceso de admisión responsivo */
/* Fondo general gris */
.admission-process {
  background-color: #E4E4E4;
}

/* Texto */
.admission-process h2 {
  color: #000;
}

.admission-process p {
  color: #444;
  font-size: 0.95rem;
}

/* Cada bloque */
.process-step {
  padding: 20px 30px;
  border-right: 1px solid #cfcfcf; /* líneas divisorias verticales */
}

/* Quitar borde derecho del último bloque */
.process-step:last-child {
  border-right: none;
}

/* Recuadro gris (imagen simulada) */
.img-placeholder {
  background-color: #bdbdbd; /* tono gris medio para contraste */
  width: 70px;
  height: 70px;
  border-radius: 6px;
}

/* Alineación responsive */
@media (max-width: 768px) {
  .process-step {
    border-right: none;
    border-bottom: 1px solid #cfcfcf;
  }

  .process-step:last-child {
    border-bottom: none;
  }
}


/*-------------------------------------------------------------------*/
/*Perfil de ingreso y egreso*/
.left-image img {
  object-fit: cover;
}

.accordion-container {
  max-width: 500px;
}


/* Estilos generales de los botones del acordeón */
.accordion-button {
  background-color: #e4e4e4;
  border: 1px solid #b3b3b3; /* Borde gris */
  border-radius: 0 !important;
  color: #000;
  transition: all 0.3s ease;
  width: 100%; /* que ocupe todo el ancho del contenedor */
  padding: 0.75rem 2rem; /* más espacio a los lados */
  position: relative;
}

/* Botón abierto */
.accordion-button:not(.collapsed) {
  background-color: #e4e4e4;
  color: #000;
}

/* Quitar foco */
.accordion-button:focus {
  box-shadow: none;
}

/* Quitar flechita de Bootstrap */
.accordion-button::after {
  display: none;
}

/* Estilos del cuerpo del acordeón */
.accordion-body {
  background-color: #e4e4e4;
  border: 1px solid #b3b3b3; /* Marco al rededor de la información */
  border-top: none;
  padding: 1rem 1.2rem;
}

/*------------------------------------------------------------------*/
/* Sección trabajos realizados */
.work-box {
  background-color: #b3b3b3; /* color gris de ejemplo */
  height: 200px; /* altura fija, puedes ajustar */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.work-box img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.h2 {
  font-size: 2rem;
}

/*-------------------------------------------------------------------*/
.accordion-button {
  font-weight: 600;
  background-color: #fff;
  border: 1px solid #ddd;
}

.accordion-button:not(.collapsed) {
  color: #000;
  background-color: #f0f0f0;
  border-bottom: none;
}

.accordion-body {
  background-color: #fafafa;
  text-align: left;
}


/*-------------------------------------------------------------------*/

.icono-requisitos {
  width: 60px;       /* tamaño ideal para íconos */
  height: auto;      /* evita distorsión */
  flex-shrink: 0;    /* evita que se estire */
}
