/* Reset y box-sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Body y fuente Outfit */
body {
  font-family: 'montserrat', sans-serif;
  background-color: whitesmoke;
  color: black;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

/* comunes */
a {
  text-decoration: none;
  cursor: pointer;
}

ul {
  list-style-type: none; 
}

.fondo {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.imagen-fondo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-top: 0px;
  opacity: 15%;
}

/* NAVEGACION SUAVE */
html {
  scroll-behavior: smooth;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: whitesmoke;
}

header .container {
  display: flex;
  justify-content: space-between;
  width: 75%;
  height: 90px;
  align-items: center;
  padding: 0; 
}

.logo {
    display: block;
    align-items: flex-end;
    justify-content: center;
    padding: 0 2px 2px 2px;
    width: 70px;
    height: 90px;
    margin-right: 20px;
    background-color: #FE650D;
}

.logo img {
  width: 100%;
  height: auto;
  padding-top: 20px;
}

.desktop-nav {
  display: flex;    
  align-items: center;
  padding-top: 20px;
}

.desktop-medio {
  color: black;
  cursor: pointer;
  text-align: center;
  border-right: 1px solid black;
  font-size: 1em;
  font-weight: 600;
  padding: 0 5px;
}

.desktop-derecha {
  color: black;
  cursor: pointer;
  text-align: center;
  font-size: 1em;
  font-weight: 600;
  padding: 0 5px;
}

.desktop-medio:hover,
.desktop-medio.active, .desktop-derecha:hover,
.desktop-derecha.active {
  color: #999792;
}

/* Hamburguesa */
.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  cursor: pointer;
  margin-left: 40px;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: black;
  transition: all 0.3s ease;
}

/* Mennú mobil */
.mobile-menu {
  display: none;
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1001;
  flex-direction: column;
  justify-content: right;
  align-items: center;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.mobile-nav {
  display: flex;
  background-color: #FE650D;
  flex-direction: column;
  align-items: center;
  margin: 60px 0;
  padding: 20% 10%;
  width: 75%;
  max-height: 75%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.mobile-nav a {  
  width: 100%;  
  text-align: right;  
  color: black;
  padding: 0 10px;
  margin-bottom: 10px;  
  font-size: 1.25em;   
  font-weight: 600;
}

.mobile-nav .primero {
  padding-top: 10px;
  border-top: 1px solid black;
}
.mobile-nav .ultimo {
  padding-bottom: 10px;
  border-bottom: 1px solid black;
}

.mobile-nav a:hover, .mobile-nav a.active {
  color: whitesmoke;
}

/* Hamburguesa */
.menu-toggle:checked ~ .mobile-menu {
  display: flex;
  opacity: 1;
}

.menu-toggle:checked ~ .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
  background-color: black;
}

.menu-toggle:checked ~ .hamburger span:nth-child(2) {
  opacity: 0;
}

.menu-toggle:checked ~ .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
  background-color: black;
}

/* Bloquear scroll */
.menu-toggle:checked ~ .mobile-menu {
  overflow: hidden;
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .mobile-menu:not(.visible) {
    display: none;
  }
}

/* SECCIONES */
#sistema, #cursos, #docentes, #costos, #transaccion {  
  position: relative;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start; 
 } 

.titulo {
  width: 100%;
  height: auto;
  text-align: center;
  align-items: center;
  margin: 0 auto 60px auto;
  padding: 20px;
}

.titulo h1 {
  font-size: 2.5em;
  font-weight: 700;
  line-height: 1em;
  color: black;
}

@media (max-width: 768px) {
  .titulo {
    margin: 0 auto 20px auto;
  }
  .titulo h1 {
    font-size: 2em;
  }
}

/* HERO */
#hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: calc(100vh - 100px);
  top: 100px;
  left: 0;
}

.hero-video .video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


   .mobile-video { display: none; }

  
   @media (max-width: 768px) {
      .desktop-video { display: none; }
      .mobile-video { display: block; }
   }

/* SISTEMA */
.container-sistema {
  width: 100%;
  height: auto;
  align-items: flex-start;
  justify-content: center;
  margin-top: 120px;
  display: flex;
  flex-direction: column;
 }

.container-presentaciones {
  display: flex;
  width: 100%;
  height: auto;
  justify-content: center;
  flex-direction: row;
  margin-bottom: 80px;
}

.presentacion {
  width: 30%;
  height: auto;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 10px 60px 0 60px;
}

.mediopresentacion {
  border-left: 1px solid black;
  border-right: 1px solid black;
}

.titulo-presentacion {
  width: 100%;
  height: auto;
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.presentacion p {
  text-align: center;
  font-size: 0.8em;
  font-weight: 500;
  margin-bottom: 20px;
}

.botones-sistema {
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 80px;
}

.botones-sistema a {
  width: 200px;
  padding: 10px 5px;
  text-align: center;
  font-size: 1em;
  font-weight: 500;
  border-radius: 5px;
  color: white;
}

.botones-sistema .funciona {
  background-color: #FE650D;
}

.botones-sistema .inscribes {
  background-color: black;
}

.botones-sistema a:hover {
  background-color: #999792;
}

.mensajeclinicas {
  width: 40%;
  height: auto;
  align-items: flex-start;
  justify-content: center;
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin: auto;
}

.mensajeclinicas i {
  font-size: 3em;
  padding-top: 5px;
}

.mensajeclinicas h3 {
  font-size: 1.25em;
  font-weight: 600;
  text-align: left;
}

@media (max-width: 768px) {
  .container-presentaciones {
    flex-direction: column;
  }
  .presentacion {
    width: 80%;
    margin: auto;
    padding: 20px 0 20px 0;
  }
  .mediopresentacion {
    border-left: none;
    border-right: none;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
  }
  .botones-sistema {
    flex-direction: column;
  }
  .mensajeclinicas {
    width: 90%;
    gap: 20px;
  }
  .mensajeclinicas h3 {
  font-size: 1em;
  font-weight: 600;
  text-align: left;
}
}

/* CURSOS */
.container-cursos {
  width: 100%;
  height: auto;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  display: flex;
  flex-direction: column;
 }

.container-modulos {
  display: flex;
  width: 100%;
  height: auto;
  justify-content: center;
  flex-direction: row;
  margin-bottom: 80px;
}

.modulos {
  width: 25%;
  height: auto;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 10px 60px 0 60px;
}

.mediomodulos {
  border-left: 1px solid black;
  border-right: 1px solid black;
}

.titulo-modulos {
  width: 100%;
  height: auto;
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.modulos ul {
  margin-bottom: 30px;
}

.modulos li {
  line-height: 1.25em;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.boton-clinicas {
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
  display: flex;
}

.boton-clinicas a {
  width: 200px;
  padding: 10px 5px;
  text-align: center;
  font-size: 1em;
  font-weight: 500;
  color: whitesmoke;
  background-color: #FE650D;
  border-radius: 5px;
  margin: auto;
}

.boton-clinicas a:hover {
  background-color: #999792;
}

@media (max-width: 768px) {
  .container-modulos {
    flex-direction: column;
  }
  .modulos {
    width: 80%;
    margin: auto;
    padding: 20px 0 20px 0;
  }
  .mediomodulos {
    border-left: none;
    border-right: none;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
  }
}

/* COSTOS */
.container-costos {
  width: 100%;
  height: auto;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  display: flex;
  flex-direction: column;
 }

.container-precios {
  display: flex;
  width: 100%;
  height: auto;
  justify-content: center;
  flex-direction: row;
  margin-bottom: 60px;
}

.precios {
  width: 25%;
  height: auto;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 10px 60px 20px 60px;
}

.titulo-precios {
  width: 100%;
  height: auto;
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

.medioprecios {
  border-left: 1px solid black;
  border-right: 1px solid black;
}

.precios h2 {
  font-size: 2em;
  font-weight: 700;
  text-align: center;
  color: #FE650D;
  margin-bottom: 10px;
}

.titulo-precios i {
  color: green;
  margin-right: 10px;
}

.precios p {
  font-size: 0.8em;
  line-height: 1em;
  text-align: center;
  font-weight: 600;
  margin-bottom: 5px;
}

.boton-infopagos {
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
  display: flex;
}

.boton-infopagos a {
  width: 200px;
  padding: 10px 5px;
  text-align: center;
  font-size: 1em;
  font-weight: 500;
  color: whitesmoke;
  background-color: #FE650D;
  border-radius: 5px;
  margin: auto;
}

.boton-infopagos a:hover {
  background-color: #999792;
}


@media (max-width: 768px) {
  .container-precios {
    flex-direction: column;
  }
  .precios {
    width: 80%;
    margin: auto;
    padding: 20px 0 20px 0;
  }
  .medioprecios {
    border-left: none;
    border-right: none;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
  }
}

/* DOCENTES */
.container-docentes {
  width: 100%;
  height: auto;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  display: flex;
  flex-direction: column;
 }

.container-profes {
  display: flex;
  width: 100%;
  height: auto;
  justify-content: center;
  flex-direction: row;
  margin-bottom: 80px;
}

.profes {
  width: 40%;
  height: auto;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 10px 60px 0 60px;
}

.profesprimero {
  border-right: 1px solid black;
}

.titulo-profes {
  width: 100%;
  height: auto;
  font-size: 1em;
  font-weight: 600;
  margin-bottom: 30px;
  text-align: center;
}

.profes ul {
  margin-bottom: 30px;
}

.profes li {
  font-size: 0.8em;
  line-height: 1em;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.botonjoseangel {
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
  display: flex;
}

.botonjoseangel a {
  width: 300px;
  padding: 10px 5px;
  text-align: center;
  font-size: 0.8em;
  font-weight: 500;
  color: whitesmoke;
  background-color: #FE650D;
  border-radius: 5px;
  margin: auto;
}

.botonjoseangel a:hover {
  background-color: #999792;
}

@media (max-width: 768px) {
  .container-profes {
    flex-direction: column;
  }
  .profes {
    width: 80%;
    margin: auto;
    padding: 20px 0 20px 0;
  }
  .profesprimero {
    border-right: none;
    border-bottom: 1px solid black;
  }
}


/* FAQ */
#faq {  
  position: relative;
  width: 100vw;
  min-height: 100vh;
  overflow: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start; 
 } 

 .container-faq {
  width: 100%;
  height: auto;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 40px;
 }

.acordeon-container {
  width: 500px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  padding: 10px;
}

.acordeon-titulo {
  display: block;
  color: black;
  padding: 5px 0;
  height: auto;
  margin: 0;
  text-align: center;
  align-items: center;
  font-size: 1.2em;
  font-weight: 600;
  
}

.acordeon-titulo:hover, .acordeon-titulo.activo {
    color: #FE650D;
}

.acordeon-contenido {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 10px;
  margin-bottom: 10px;
  border-left: 1px solid black;
  border-right: 1px solid black;
}

.acordeon-contenido p {
  font-size: 0.8em;
  font-weight: 500;
  margin: 10px 5px 10px 5px;
  text-align: center;
}

@media (max-width: 768px) {
  .acordeon-container {
    width: 80%;
  }
}

/* CONTACTO */
#formulario-contacto {
  width: 100%;
  height: auto;
}

#formulario-contacto .aviso {
  width: 100%;
  height: 20px;
  margin-top: 10px;
}

#estado-envio {
  font-size: 1em;
  font-weight: 600;
  color: #999792;
  text-align: center;
}

#formulario-contacto input,
#formulario-contacto textarea {
  width: 100%;
  background-color: transparent;
  color: black;
  padding: 10px;
  font-size: 1em;
  font-weight: 600;
  outline: none;
  border: 0;
  margin-bottom: 10px;
}

#formulario-contacto input::placeholder,
#formulario-contacto textarea::placeholder {
  font-size: 1em;
  font-weight: 600;
  color: black;
}

#formulario-contacto input:focus,
#formulario-contacto textarea:focus {
 background-color: white;
}

#formulario-contacto button#enviar-formulario {
  display: block;
  color: whitesmoke;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  width: 108px;
  padding: 8px 0 8px 10px;
  margin: 40px auto 80px auto;
  border-radius: 5px;
  transition: color 0.1s ease;
  background-color: #FE650D;
  border: none;
  cursor: pointer;
}

#formulario-contacto button#enviar-formulario i {
  margin-left: 5px;
  transition: color 0.1s ease;
  color: whitesmoke;
}

#formulario-contacto button#enviar-formulario:hover,
#formulario-contacto button#enviar-formulario:hover i {
  background-color: #999792;
}

.contacto-icons {
  width: 75%;
  height: auto;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding-left: 5px;
  padding-top: 10px;
  border-top: 1px solid black;
}

.iconcontacto {
  text-align: center;
  margin: 0 5px;
  font-size: 1.5rem;
  color: black;
}

.iconcontacto:hover {
  color: #999792;
}

@media (max-width: 768px) {
  #formulario-contacto {
    padding: 10px 10px 0 10px !important;
  }
}

/* Mensaje formulario */
.overlay-mensaje {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: flex-start;
  z-index: 1000;
  background-color: rgba(245, 245, 245, 0.8);
  transition: opacity 0.3s ease;
}

.contenido-mensaje {
   display: flex;
  position: relative;
  flex-direction: column;
  max-width: 75%;
  height: auto;
  margin: 100px auto 0 auto;
  padding: 10px;
  overflow-y: auto;
  animation: aparecer 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  background-color: #FE650D;
  justify-content: center;  
  scrollbar-width: none; /* Para Firefox */
  -ms-overflow-style: none; /* Para IE y Edge */
}

.contenido-mensaje::-webkit-scrollbar {
  display: none; /* Para Chrome, Safari y Opera */
}

.contenido-mensaje h3 {
  text-align: center;
  color: black;
  margin-bottom: 10px;
}

.boton-cerrarmensaje {
  position: absolute;
  top: 4px;
  right: 8px;
  background: transparent;
  border: none;
  color: black;
  font-size: 1.5em;
  cursor: pointer;
  transition: color 0.1s ease;
}

.boton-cerrarmensaje:hover {
  color: whitesmoke;
}

/* FOOTER */
.footer {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center; 
  align-items: flex-start; 
  flex-direction: column;
  padding: 40px;
}

.container-footer {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: auto;
  flex-direction: row;
  gap: 100px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 0 30px 0;
  background-color: #FE650D;
}

.footer-col {
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-col p {
  margin-bottom: 10px;
  color: white;
  font-size: 1em;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1em;
  font-weight: 600;
}

.footer-col ul li i {
  padding-left: 2px;
}

.footer-col ul .direccion {
  align-items: flex-start;
}
.footer-col ul .direccion i {
  padding-top: 3px;
}

.footer-col ul li a {
  text-decoration: none;
  color: white;
  font-size: 0.9em;
  font-weight: 600;
}

.footer-col ul li a:hover {
  color: black;
}

.copy {
  position: relative;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  padding:0 0 50px 0;
  background-color: #FE650D;
}

.copy p {
 text-align: center;
 color: white;
 font-size: 0.8em;
 font-weight: 500;
}

@media (max-width: 768px) {
  .container-footer {
    flex-direction: column;
    gap: 30px;
  }
  .footer-col {
    width: 100%;
    padding: 0 40px;
  }
  .copy p {
    padding: 0 40px;
  }
}


/* MODALES */
.modal-overlay {
  position: fixed;
  top: 100px;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: flex-start;
  z-index: 1000;
  background-color: rgba(245, 245, 245, 0.8);
  transition: opacity 0.3s ease;
}

.modal-overlay.activo {
  display: flex;
  opacity: 1;
}

.modal-contenido {
  display: flex;
  position: relative;
  max-width: 75%;
  height: auto;
  margin: 100px auto 0 auto;
  padding: 10px;
  overflow-y: auto;
  animation: aparecer 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  background-color: whitesmoke;
  justify-content: center;  
  scrollbar-width: none; /* Para Firefox */
  -ms-overflow-style: none; /* Para IE y Edge */
}

.modal-contenido::-webkit-scrollbar {
  display: none; /* Para Chrome, Safari y Opera */
}

.modal-titulo {
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
}

.modal-titulo h1 {
  color: black;
  text-align: center;
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1em;
}

.modal-info {
  width: 100%;
  height: auto;
  padding: 20px;
}

.modal-info h2 {
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.botonformclinica {
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: center;
  display: flex;
}

.botonformclinica a {
  width: 200px;
  padding: 10px 5px;
  text-align: center;
  font-size: 0.8em;
  font-weight: 500;
  color: whitesmoke;
  background-color: #FE650D;
  border-radius: 5px;
  margin: auto;
}

.botonformclinica a:hover {
  background-color: #999792;
}

.modal-info ul {
  margin-bottom: 50px;
  padding-left: 10px;
}

.modal-info li {
  display: flex;
  align-items: top;
  font-size: 1em;
  font-weight: 500;
  line-height: 1em;
  margin-bottom: 20px;
}

.modal-info i {
  width: 24px;
  text-align: right;
  flex-shrink: 0;
  margin-right: 10px;
  color: black;
} 

.modal-info li span {
  padding-left: 0;
  display: inline-block;
}

@keyframes aparecer {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.cerrar-modal {
  position: absolute;
  top: 4px;
  right: 8px;
  background: transparent;
  border: none;
  color: black;
  font-size: 1.5em;
  cursor: pointer;
  transition: color 0.1s ease;
}

.cerrar-modal:hover {
  color:#999792;
}

.modal-interno {
  display: none;
}

.modal-interno.activo {
  display: block;
}

#contenido-condiciones li{
  font-size: 0.7em;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .modal-contenido {
    width: 95%;
    max-width: 95%;
    margin: 50px auto 0 auto;
  }
}

.container-pagos {
  display: flex;
  width: 100%;
  height: auto;
  justify-content: center;
  flex-direction: column;
}

.pagos {
  display: flex;
  width: 100%;
  height: auto;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  padding: 10px 40px;
  margin: auto;
  gap: 20px;
}

.pagos-img {
  width: 40px;
  height: auto;
  justify-content: right;
}

.spei {
  width: 100%;
  height: auto;
}

.clip {
  width: 80%;
  height: auto;
}

.deposito {
  width: 80%;
  height: auto;
}

.pagos p {
  font-size: 0.9em;
  font-weight: 600;
  text-align: left;
}

@media (max-width: 768px) {
  .pagos {
    align-items: flex-start;
    padding: 10px 10px;
    gap: 10px;
  }
  .pagos-img {
    width: 50px;
  }
}


/* transacciones */
#transaccion {
  height: 100vh;
  background-color: whitesmoke;
}

.container-transaccion {
  width: 100%;
  height: auto;
  align-items: flex-start;
  justify-content: center;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
}

.logotransaccion {
  width: 200px;
  height: 200px;
  margin: auto;
  background-color: #FE650D;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.logotransaccion img {
  width: 80%;
  height: auto;
}

.contenido-transaccion {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.web {
  text-align: center;
  font-size: 0.9em;
  font-weight: 600;
  color: black;
  margin-bottom: 40px;
}

h3 {
  text-align: center;
  font-size: 1.25em;
  font-weight: 600;
  padding-bottom: 20px;
}

h3 i {
  margin-right: 10px;
}

.si {
  color: green;
}

.no {
  color: red;
}

h4 {
  font-size: 1em;
  font-weight: 600;
}

.whatsapp {
  font-size: 2em;
  color: black;
  padding-top: 10px;
}

/* === Banner de Cookies === */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: whitesmoke;
  padding: 15px;
  text-align: center;
  z-index: 1000;
}

.cookie-message {
  margin: 0;
}

.cookie-link {
  color: black;
  font-size: 1rem;
  border: 1px solid black;
  border-radius: 5px;
  padding: 5px 10px;
  margin-left: 10px;
}

.cookie-link:hover {
  color: #999792;
  border: 1px solid #999792;
}

.cookie-btn {
  width: 100px;
  border-radius: 5px;
  padding: 5px 10px;
  margin-left: 10px;
  cursor: pointer;
  font-size: 1em;
  font-family: 'montserrat', sans-serif;

}

.accept-btn {
  background: #FE650D;
  color: whitesmoke;
  border: 1px solid #FE650D;
}

.reject-btn {
  background: black;
  color: whitesmoke;
  border: 1px solid black;
}

.cookie-btn:hover {
  border: 1px solid #999792;
  background-color: #999792;
}

@media (max-width: 768px) {
  .cookie-message {
    display: flex;
    flex-direction: column;
    gap: 12px; 
  }

  .cookie-link {
    margin-left: 0;
  }

  .cookie-btn {
    width: 100%; 
    margin-left: 0; 
  }

  .cookie-link {
    display: block;
    margin-bottom: 8px; 
  }
}