@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');


body {
    font-family: "Poppins", sans-serif;
  }

  a {
    text-decoration: none;
}
  .card-title{
    font-family: "Creepster", system-ui;
    font-weight: 400;
    font-style: normal;
  }
  
  .logo {
    height: 50px;
  }
  
  .card img {
    height: 200px;
    object-fit: cover;
  }
  


  .floating-windows {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
  }

  .floating-window {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .floating-window a {
    text-decoration: none;
    color: #007bff;
  }


  /*  */
  .card {
    transition: transform 0.2s;
  }
  
  .card:hover {
    transform: scale(1.05);
  }
  
  .card-title {
    font-weight: 600;
    font-size: 1.2rem;
  }
  
  .card-text {
    font-size: 1rem;
    color: #6c757d;
  }
  
  .btn-outline-primary {
    border: 2px solid #007bff;
    color: #007bff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    transition: background-color 0.2s, color 0.2s;
  }
  
  .btn-outline-primary:hover {
    background-color: #007bff;
    color: #fff;
  }
  /*  */
  .footer {
              background-color: #f8f9fa;
              padding: 20px 0;
          }
          .footer a {
              color: #000;
              text-decoration: none;
          }
          .footer .col-md-4 {
              text-align: center;
          }

          /* Video card */
          .modal-body img {
            width: 100%;
            height: auto;
        }

        .modal-body p {
            text-align: justify;
        }

        .pdf-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .pdf-item {
            flex: 1 1 calc(33.333% - 15px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            overflow: hidden;
            text-align: center;
        }

        .pdf-item img {
            width: 100%;
            height: auto;
        }

        .pdf-item p {
            margin: 0;
            padding: 10px;
            background-color: #f8f9fa;
        }

        .modal-header {
            border-bottom: none;
        }

        .modal-footer {
            border-top: none;
        }

        .btn-primary {
            background-color: #007bff;
            border: none;
        }

        /*  */
        .carousel-indicators [data-bs-target] {
          box-sizing: content-box;
          flex: 0 1 auto;
          width: 30px;
          height: 3px;
          padding: 0;
          margin-right: 3px;
          margin-left: 3px;
          text-indent: -999px;
          cursor: pointer;
          background-color: #000;
          background-clip: padding-box;
          border: 0;
          border-top: 10px solid transparent;
          border-bottom: 10px solid transparent;
          opacity: .5;
          transition: opacity .6s ease;
      }

      .carousel-indicators {
        position: absolute;
        right: 0;
        bottom: -54px;
        left: 0;
        z-index: 2;
        display: flex;
        justify-content: center;
        padding: 0;
        margin-right: 15%;
        margin-bottom: 1rem;
        margin-left: 15%;
    }

   
      .newsletter {
        padding: 50px 0;
        text-align: center;
      }
  
      .newsletter h2 {
        font-size: 2.5em;
        margin-bottom: 20px;
      }
  
      .newsletter .card {
        border: none;
        transition: transform 0.3s ease;
      }
  
      .newsletter .card:hover {
        transform: translateY(-10px);
      }
  
      .newsletter .card img {
        height: 200px;
        object-fit: cover;
        border-radius: 15px 15px 0 0;
      }
  
      .newsletter .card-body {
        padding: 20px;
      }
  
      .newsletter .card-title {
        font-size: 1.5em;
        margin-bottom: 15px;
      }
  
      .newsletter .card-text {
        font-size: 1em;
        color: #6c757d;
      }
  
      /*  */
      /* General Card Style */
  
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  }
  
 /* Specific Styles for "Cumpleañeros" */
 .cumpleaneros-card {
  height: auto;
  background-color: white;
  /*border: 4px dashed #c62828 !important;  Cambiado a dashed */
  /* color: green; */
}

.cumpleaneros-card:hover {
    transform: scale(1.05);
}

/* .cumpleaneros-card::before {
  content: "🎁";
  position: absolute;
  font-size: 40px;
  bottom: 0px;
  right: 360px;
  animation: pulse 1s infinite;
} */

/* Specific Styles for "Viernes corto de este mes" */
.viernes-corto-card {
  height: 120px;
  background-color: white;
/*   border: 4px dashed #c62828 !important; Cambiado a dashed */
  /* color: #ffffff; */
}


.viernes-corto-card:hover {
    transform: scale(1.05);
}

.vacantes:hover {
  transform: scale(1.05);
}
/* .viernes-corto-card::before {
    content: "🎅🏻";
    position: absolute;
    font-size: 40px;
    bottom: 10px;
    right: 10px;
    animation: float 2s infinite;
} */

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}
  
  
  .btn-primary{
    background-color: transparent;
    color: #0171e3;
    border: solid 2px #0171e3;
    border-radius: 25px;

  }

  /*  */

  .custom-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    background-color: #fff;
}
.custom-card:hover {
    transform: translateY(-5px);
}
.custom-card img {
    border-bottom: 1px solid #ddd;
    width: 100%;
    height: auto;
}
.custom-card p {
    margin: 0;
    padding: 15px;
    font-size: 1.1em;
    background-color: #f8f9fa;
}
.custom-card a {
    text-decoration: none;
    color: #000;
    display: block;
}
.custom-card-wrapper {
    padding: 15px;
}

.pdf-container {
  width: 100%;
  height: 100vh;
  border: none;
}

/* octubre */
.cintillo {
  background-color: #f5f5f7; 
  color: #fff; /* Texto blanco para contraste */
  text-align: center;
  padding: 20px;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  z-index: 1; /* Asegura que la capa del texto esté por encima */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);

  /* Adornos navideños */
  background-image: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.5) 20%,
      transparent 20%,
      transparent 40%,
      rgba(255, 255, 255, 0.5) 40%,
      rgba(255, 255, 255, 0.5) 60%,
      transparent 60%,
      transparent 80%,
      rgba(255, 255, 255, 0.5) 80%
    ); /* Agrega copos de nieve */
  background-size: 50px 50px, cover;
}

.cintillo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #282829;
  z-index: -1;
}

.cintillo span {
  position: relative;
  z-index: 2; /* Texto por encima de la capa translúcida */
}


/* .navbar-brand::before {
  content: '🎄';
  font-size: 30px;
  position: absolute;
  top: 10px;
  left: 107px;
  animation: floatGhost 3s ease-in-out infinite;
} */



@keyframes floatGhost {
  0% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(10px);
  }
  100% {
      transform: translateY(0);
  }
}


/* Halloween */
/* Estilo Halloween solo para la clase halloween-card */
.halloween-card {
  background-color: #1c1c1c; /* Fondo oscuro */
  border: 2px solid #f39c12; /* Borde naranja Halloween */
  color: #f5f5f5; /* Texto claro */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5), 0 0 15px #f39c12;
  transition: transform 0.3s ease-in-out;
}

/* Animación pulse lenta */
@keyframes slowPulse {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.05);
  }
  100% {
      transform: scale(1);
  }
}

.halloween-card {
  animation: slowPulse 20s infinite; /* Pulse lenta */
  transform: scale(1.05);
}

/* Estilo para los botones solo en halloween-card */
.halloween-card .halloween-btn {
  background-color: #f39c12;
  border: none;
  box-shadow: 0 0 10px #f39c12, 0 0 20px #e74c3c;
  color: #1c1c1c;
  font-weight: bold;
  transition: background-color 0.3s, transform 0.3s;
}

.halloween-card .halloween-btn:hover {
  background-color: #e74c3c;
  transform: scale(1.1);
}

.halloween-card .card-text {
  color: #f5f5f5;
}

/* Imagen inferior */
.halloween-card .card-img-bottom {
  border-bottom: 3px solid #e74c3c;
}


.floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 140px;
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.3s, box-shadow 0.3s;
}

.floating-button:hover {
  transform: scale(0.8);
  transition: 1s ease;
}

/*  */
/*  */
.card {
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
  border: none !important;
}

h1{
  font-family: Helvetica, sans-serif;
  font-weight: 600;
  
}
.card-title{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: Helvetica, sans-serif;
}
  

.card h2 {
  font-size: 24px;
  color: #0171e3; /* Green color for highlighted text */
  font-weight: bold;
  margin-bottom: 10px;
}

.card h2 span {
  color: #333333; /* Darker color for non-highlighted text */
  font-weight: bold;
}

.card p {
  font-size: 16px;
  color: #555555;
  line-height: 1.5;
}

.card p strong {
  font-weight: bold;
}

.card .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0171e3; /* Button blue color */
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  border-radius: 58px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  border: none;
}

.card .btn:hover {
  background-color: #0171e3; /* Darker blue on hover */
}



.i-card {
  color: #0171e3;
  font-size: 44px;
  margin-bottom: 12px;
  }

  /*  */

.floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 140px;
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.3s, box-shadow 0.3s;
}

.floating-button:hover {
  transform: scale(0.8);
  transition: 1s ease;
}

/* Adicional */
.floating-bubble {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2); /* Fondo translúcido */
  border: 1px solid rgba(255, 255, 255, 0.3); /* Borde translúcido */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.25); /* Sombra */
  backdrop-filter: blur(15px); /* Desenfoque para efecto glassmorphism */
  -webkit-backdrop-filter: blur(15px); /* Compatibilidad con Safari */
  cursor: pointer;
  font-size: 2rem;
  z-index: 1000;
}

#fortuneBubble {
  bottom: 150px;
  right: 20px;
}

#habitBubble {
  bottom: 210px;
  right: 20px;
}

#savingsBubble {
  bottom: 270px;
  right: 20px;
}

#pomodoroBubble {
  bottom: 340px;
  right: 20px;
}

.floating-bubble:hover {
  transform: scale(1.1);
}

.pomodoro-timer {
  font-size: 3rem;
  font-weight: bold;
}

.timer-controls button {
  margin: 5px;
}