@import url("https://fonts.googleapis.com/css?family=Raleway:100,300,400,500,700,900");
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
	--card-width: 300px;
	--card-height: 400px;
	--card-transition-duration: 800ms;
	--card-transition-easing: ease;
	--border-color: #FFDF00;
}

body {
	font-family: "Raleway", sans-serif;
	font-size: 1.2em;
  background-color: #e7e6e6 ;
  color: #707070;
  margin: 0;
  padding: 0;
}
a {
  transition: all 0.3s ease;
  color: #38B;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #D40;
}

a:focus {
  outline: none;
}

blockquote {
  font-size: 0.86em;
  line-height: 1.8em;
}

.section-pad-top {
  padding-top: 80px;
  padding-bottom: 40px;
}

.content-box {
  padding-top: 20px;
  padding-bottom: 40px;
}

.text-primary {
  color: #37A;
}

.font-big {
  font-size: 1.25rem;
}

/* Navbar */

.navbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 10px 20px;
  background-color: #012031; 
}

.navbar.scroll {
  border-bottom: 1px solid #e9ecef;
}

.navbar-brand {
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
}

.navbar-brand:hover,
.navbar.scroll .navbar-brand:hover {
  color: #38B;
}

.navbar.scroll .navbar-brand {
  color: #369;
}

.nav-item {
  list-style: none;
}

.nav-link {
  color: white;
  font-size: 0.9rem; 

}

.navbar.scroll .nav-link {
  color: #369;
}

.navbar.scroll .nav-link:hover,
.navbar.scroll .nav-link.current,
.nav-link:hover {
  color: #FFF;
  background-color: #369;
}

.navbar-toggler {
  border: 1px solid white;
  padding: 10px 15px;
  background: transparent;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.navbar-toggler:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.navbar-toggler-icon {
  font-size: 1.5rem;
  color: white;
}

.navbar.scroll .navbar-toggler {
  border: 1px solid #707070;
}

.navbar.scroll .navbar-toggler-icon {
  color: #707070;
}

/* Hero */

#hero {
	/*background-color: #222;
  background-image: url(../img/fondoo.jpg);
  background-repeat: no-repeat;
  background-size: cover; */
  height: 100vh;
  min-height: 375px;
  position: relative;
  overflow: hidden; 
}
#hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Hacemos que el video se ajuste al tamaño del contenedor */
  z-index: -1; /* Ponemos el video detrás del contenido */
}

@media (min-height: 600px) and (min-width: 1920px) {
  #hero {
    background-size: cover;
  }
}

@media (min-height: 830px) {
  #hero {
    background-position: center -210px;
  }
}

@media (min-height: 680px) and (max-height: 829px) {
  #hero {
    background-position: center -300px;
  }
}

@media (min-height: 500px) and (max-height: 679px) {
  #hero {
    background-position: center -400px;
  }
}

@media (max-height: 499px) {
  #hero {
    background-position: center -450px;
  }
}

.hero-text-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.hero-text-container-inner {
  margin-top: -90px;
}

.hero-title {
  font-size: 3.5rem;
  text-shadow: 2px 2px 2px #333;
}

.hero-subtitle {
  text-shadow: 2px 2px 2px #333;
}

.intro-next {
  position: absolute;
  bottom: 100px;
  left: 0;
  right: 0;
}

@media (max-height: 480px) {
  .hero-text-container-inner {
    margin-top: -40px;
  }

  .intro-next {
    bottom: 20px;
  }
}

.down-arrow-link {
  display: block;
  margin-top: 18%;
}

.down-arrow {
  	color: #FFF;
    cursor: pointer;
    background: #357;
    padding: 15px 40px;
    transition: all 0.3s ease;
}

.down-arrow:hover,
.down-arrow:focus {
  color: #FFF;
  background: #37A;
  padding: 20px 50px;
}

/* Introduction */

.section-title {
  font-size: 2.6rem;
  font-weight: normal;
}

.icon {
  display: block;
  color: #37A;
}


.testimonial-item img {
  width: 250px; 
  height: 300px; 
}

/* directiva */
#directiva {
  color: white;
  background-color: #002f4b;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
}

@media (max-width: 991px) {
  #directiva {
    background-color: #002f4b;
  }
}

.directiva-content {
  position: relative;
  z-index: 100;
}

.directiva-carousel {
  max-width: 1050px;
  margin: 0 auto;
}

.testimonial-item {
  max-width: 290px;
  margin-left: 35px;
  margin-right: 35px;
}

.testimonial-item img {
  border-radius: 50%;
  margin-bottom: 35px;
}

.testimonial-item figcaption {
  text-align: right;
  font-style: italic;
  font-size: 1.1rem;
}


@media (min-width: 768px) {
  .intro-text-container {
    padding-left: 0px;
  }

  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1275px;
  }

  .container-actividades {
    max-width: 1290px;
  }

  .container-contact {
    max-width: 1063px;
  }
}

@media (max-width: 991px) {
  .intro-text-container {
    padding-left: 15px;
    padding-top: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
  }
  .navbar-nav {
    max-width: 200px;
    text-align: right;
  }

  .navbar-collapse {
    display: flex;
    flex-direction: column;
    background-color: #012031;
    width: 100%;
    padding: 10px 0;
    border-radius: 5px;
  }

  
  .navbar-collapse .nav-link {
    text-align: left;
    padding: 10px 20px;
    font-size: 1rem;
    width: 100%;
  }

  .navbar-collapse .nav-link:hover {
    color: #38b;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .navbar-collapse {
    flex-direction: row;
    justify-content: center;
  }

  .navbar-collapse .nav-link {
    font-size: 0.9rem;
    padding: 10px 15px;
  }
}
@media (max-width: 480px) {
  .actividades-container {
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
  }

  .actividades-container-2 {
    max-width: 350px;
  }
}

/*menu redes sociales*/
#global-social-networks {
  position: fixed;
  right: 0;
  top: 30vh;
  width: 3rem;
  z-index: 9999;
  margin-right: 10px; 
}

#global-social-networks a {
  color: #fff;
}

.social-nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#global-social-networks .social-nav-item {
  font-size: 1.3rem;
  width: 3rem;
  background-color: #012031;
  border-radius: 8px;
  margin-bottom: 5px;
  padding: .3em;
}
 
#global-social-networks .social-nav-item.facebook:hover {
  background-color: #005983 ;
}

#global-social-networks .social-nav-item.youtube:hover {
  background-color: red;
}


#global-social-networks .social-nav-item.whatsApp:hover{
  background-color: green;
}

#global-social-networks .social-nav-item.instagram:hover {
  background-color: #700b41    ;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -60px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}

/* ============================================
   NUEVOS ESTILOS AGREGADOS
   ============================================ */

/* Mensaje de Contáctanos */

.contact-message {
  position: fixed;
  top: 30vh;
  right: 70px;
  background: rgba(1, 32, 49, 0.95);
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  z-index: 9998;
  animation: slideInRight 0.8s ease-out, pulse 2s ease-in-out 0.8s infinite;
}

.contact-message h3 {
  margin: 0 0 5px 0;
  color: #00a7ff;
  font-size: 18px;
}

.contact-message p {
  margin: 0;
  color: #fff;
  font-size: 13px;
}


/* Tooltips mejorados para redes sociales */
.social-nav-item .tooltip-text {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  background: rgba(1, 32, 49, 0.95);
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  box-shadow: 0 3px 15px rgba(0,0,0,0.3);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
  z-index: 10001;
}

.social-nav-item .tooltip-text::before {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent rgba(1, 32, 49, 0.95);
}

/* Hover effect para mostrar tooltips */
.social-nav-item:hover .tooltip-text {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}

/* Animación inicial de etiquetas */
@keyframes showLabel {
  0% {
    transform: translateY(-50%) translateX(20px) scale(0);
    opacity: 0;
  }
  50% {
    transform: translateY(-50%) translateX(0) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: translateY(-50%) translateX(0) scale(0);
    opacity: 0;
  }
}

.social-nav-item.show-label .tooltip-text {
  animation: showLabel 2s ease-in-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes arrowBounce {
  0%, 100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(-10px);
  }
}

/* Responsive para el mensaje de contacto */
@media (max-width: 768px) {
  .contact-message {
    right: 55px;
    padding: 8px 15px;
  }

  .contact-message h3 {
    font-size: 15px;
  }

  .contact-message p {
    font-size: 11px;
  }

  .contact-message::after {
    font-size: 24px;
    left: -25px;
  }

  .social-nav-item .tooltip-text {
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* conteo section */
#conteo {
  background-color: #002f4b;
  padding: 50px 0;
  text-align: center;
}

.wrapperr {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.container-conteo {
  flex-basis: 45%; /* Establece el ancho de cada contenedor en 45% */
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin: 20px;
}

.container-conteo i {
  font-size: 24px;
  color: #002f4b;
  margin-bottom: 10px;
}

.container-conteo .num {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.container-conteo .text {
  font-size: 18px;
  color: #666;
}
/* slider section */
.slider {
  width: 100%;
  position: relative;
}

.myslide {
  height: 655px;
  display: none;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.myslide.active {
  display: block;
  opacity: 1;
}

.prevv, .nextt {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 50px;
  padding: 15px;
  cursor: pointer;
  color: #0e0d0d;
  transition: 0.1s;
  user-select: none;
}

.prevv:hover, .nextt:hover {
  color: #00a7ff; /* blue */
}

.nextt {
  right: 4rem; /* Ajusta este valor según sea necesario para que quede al lado de la barra de redes sociales */
}

.prevv {
  left: 1rem; /* Mantén esta posición o ajusta según sea necesario */
}

.dotsbox {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: 20px;
  cursor: pointer;
}

.dot {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 3px solid #a99fb9;
  border-radius: 50%;
  margin: 0 10px;
  cursor: pointer;
}

.active, .dot:hover {
  border-color: #00a7ff; /* blue */
}

.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: 0.8}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: 0.8}
  to {opacity: 1}
}

.txtt {
  position: absolute;
  color: #fff;
  letter-spacing: 2px;
  line-height: 40px;
  top: 40%;
  left: 15%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Sombra de texto para mejor visibilidad */
  font-size: 60px;
  -webkit-animation-name: posi;
  -webkit-animation-duration: 2s;
  animation-name: posi;
  animation-duration: 2s;
  z-index: 1;
  
}

@-webkit-keyframes posi {
  from {left: 25%;}
  to {left: 15%;}
}

@keyframes posi {
  from {left: 25%;}
  to {left: 15%;}
}

.txtt h1 {
  color: #00a7ff; /* blue */
  font-size: 70px;
  margin-bottom: 20px;
  font-weight: bold;
}

.txtt p {
  background-color: rgba(0, 0, 0, 0.747);
  padding: 20px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 20px;
  margin-top: 10px;
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.5, 1.5);
  -webkit-animation-name: zoomin;
  -webkit-animation-duration: 40s;
  animation-name: zoomin;
  animation-duration: 40s;
}

@-webkit-keyframes zoomin {
  from {transform: scale(1, 1);}
  to {transform: scale(1.5, 1.5);}
}

@keyframes zoomin {
  from {transform: scale(1, 1);}
  to {transform: scale(1.5, 1.5);}
}

@media screen and (max-width: 800px) {
  .myslide {
    height: 500px;
  }
  .txtt {
    letter-spacing: 2px;
    line-height: 25px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-animation-name: posi2;
    -webkit-animation-duration: 2s;
    animation-name: posi2;
    animation-duration: 2s;
  }

  @-webkit-keyframes posi2 {
    from {top: 35%;}
    to {top: 50%;}
  }

  @keyframes posi2 {
    from {top: 35%;}
    to {top: 50%;}
  }

  .txtt h1 {
    font-size: 40px;
  }
  .txtt p {
    font-size: 13px;
  }
}

@media screen and (max-width: 520px) {
  .txtt h1 {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

/*cards*/
.card-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 40px;
}

.card {
  width: var(--card-width);
  height: var(--card-height);
  height: 450px; /* Aumenta la altura de la card */
  background-color: #fff;
  border: 1px solid #012031; /* Cambio de color del borde a #012031 */
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  flex: 0 0 350px; /* Ancho fijo de cada card */
  margin: 30px;
}

.card .btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  background-color: #012031; /* Azul claro */
  color: #fff; /* Blanco */
  border: none; /* Sin borde */
  padding: 10px 20px; /* Espacio interior */
  font-size: 16px; /* Tamaño de fuente */
  font-weight: bold; /* Fuente en negrita */
  border-radius: 5px; /* Esquinas redondas */
  cursor: pointer; /* Cursor en forma de mano */
  transition: background-color 0.3s ease; /* Transición suave al hacer clic */
}

.card .btn:hover {
  background-color: #2ecc71; /* Verde claro al hacer clic */
}

.card .btn:active {
  background-color: #1abc9c; /* Verde oscuro al hacer clic */
}

.card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #333;
  z-index: 2;
}

.card p {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  color: #555;
  z-index: 2; 
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(1, 32, 49, 0.8); /* Ajuste del color de la sombra al color de fondo */
}

.card:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgba(1, 32, 49, 0.8); /* Ajuste del color del borde al color de fondo */
  box-shadow: 0 0 10px rgba(1, 32, 49, 0.8); /* Ajuste del color de la sombra al color de fondo */
  animation: glow 1.5s hero alternate;
}

.card .glass-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.card .glass-effect::after {
  content: "";
  position: absolute;
  top: -150%;
  left: -150%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 30%);
  animation: animate 5s linear hero;
}
.card-slider {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 20px;
}

.card-slider-nav {
  display: flex;
  justify-content: space-between;
  padding: 20px 80px;
}
.image-container {
  width: 100%;
  height: 300px; /* Ajusta esta altura según el diseño que prefieras */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
/* Ajuste de la imagen dentro del contenedor */
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la imagen cubra todo el contenedor sin deformarse */
    object-position: center; /* Centra la imagen */
}

.prevvv, .nexttt {
  background-color: #012031; /* Azul claro */
  color: #fff; /* Blanco */
  border: none; /* Sin borde */
  padding: 10px 20px; /* Espacio interior */
  font-size: 16px; /* Tamaño de fuente */
  font-weight: bold; /* Fuente en negrita */
  border-radius: 5px; /* Esquinas redondas */
  cursor: pointer; /* Cursor en forma de mano */
  margin: 0 5px;
}

.prevvv:hover, .nexttt:hover {
  background-color: #2ecc71; /* Verde claro al hacer clic */
}

.card-slider::-webkit-scrollbar {
  display: none;
}
/* Estilo específico para los iconos en las cards */
.card i {
  font-size: 80px;
  background: linear-gradient(45deg, #012031, #00a7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
  margin-top: 20px;
}

/* Opcional: efecto hover para los iconos */
.card i:hover {
  transform: scale(1.1); /* Hace que el icono crezca ligeramente al pasar el mouse */
  color: #00a7ff; /* Cambia a un azul más claro al pasar el mouse */
}

@keyframes animate {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

@keyframes glow {
  0% {
      box-shadow: 0 0 10px rgba(1, 32, 49, 0.8); /* Ajuste del color de la sombra al color de fondo */
  }
  100% {
      box-shadow: 0 0 20px rgba(1, 32, 49, 0.8); /* Ajuste del color de la sombra al color de fondo */
  }
}
/* Ajuste general del footer */
/* Minimalist Footer */
.minimal-footer {
  background-color: #012031; /* Fondo oscuro para contraste */
  color: #f5f5f5; /* Color de texto claro */
  text-align: center; /* Centra el contenido */
  padding: 20px; /* Espaciado interno para un aspecto espacioso */
  font-family: Arial, sans-serif; /* Tipografía sencilla */
}

.minimal-footer h5 {
  font-size: 18px; /* Tamaño de letra reducido */
  margin: 0; /* Sin margen para un estilo compacto */
  font-weight: normal; /* Elimina el peso extra para mantenerlo simple */
}

.minimal-footer p {
  font-size: 14px; /* Tamaño pequeño para el texto de descripción */
  margin: 5px 0; /* Margen sutil para separación */
  color: #cccccc; /* Texto más claro para el detalle */
}

.minimal-footer small {
  display: block; /* Lo hace un bloque separado */
  margin-top: 10px; /* Espaciado superior */
  font-size: 12px; /* Tamaño de letra pequeño */
  color: #aaaaaa; /* Color gris claro */
}

.minimal-footer a {
  color: #f5f5f5; /* Enlaces con el mismo color de texto */
  text-decoration: none; /* Sin subrayado */
}

.minimal-footer a:hover {
  color: #ddd; /* Color de enlace al pasar el mouse */
}

/* Estilos para centrar y ajustar la imagen del anunc

/* Overlay del anuncio */
.announcement-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    animation: fadeIn 0.5s ease-in;
}

.announcement-overlay.hide {
    animation: fadeOut 0.5s ease-out;
    pointer-events: none;
}

/* Contenedor del anuncio */
.announcement-container {
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: slideUp 0.6s ease-out;
}

/* Botón de cerrar */
.announcement-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(1, 32, 49, 0.9);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.announcement-close:hover {
    background: #00a7ff;
    transform: rotate(90deg);
}

/* Carrusel */
.announcement-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.announcement-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    flex-direction: column;
}

.announcement-slide.active {
    opacity: 1;
}

.announcement-image {
    width: 100%;
    height: 70%;
    object-fit: cover;
}

.announcement-description {
    padding: 20px 30px;
    background: linear-gradient(135deg, #012031, #003d5c);
    color: white;
    height: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.announcement-description h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    color: #00a7ff;
    font-weight: bold;
}

.announcement-description p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

/* Controles del carrusel */
.announcement-controls {
    position: absolute;
    bottom: 40%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 5;
}

.announcement-btn {
    background: rgba(1, 32, 49, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-btn:hover {
    background: #00a7ff;
    transform: scale(1.1);
}

/* Indicadores */
.announcement-indicators {
    position: absolute;
    bottom: 35%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #00a7ff;
    width: 30px;
    border-radius: 6px;
}

/* Contador de tiempo */
.announcement-timer {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(1, 32, 49, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    z-index: 10;
}

/* Animaciones */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .announcement-container {
        width: 95%;
        max-height: 85vh;
    }

    .announcement-carousel {
        height: 400px;
    }

    .announcement-description h3 {
        font-size: 20px;
    }

    .announcement-description p {
        font-size: 14px;
    }

    .announcement-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .announcement-controls {
        bottom: 35%;
    }

    .announcement-indicators {
        bottom: 30%;
    }
}

@media (max-width: 480px) {
    .announcement-carousel {
        height: 350px;
    }

    .announcement-description {
        padding: 15px 20px;
    }

    .announcement-description h3 {
        font-size: 18px;
    }

    .announcement-description p {
        font-size: 13px;
    }
}