/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat';
  padding-top: 0;
  overflow-x: hidden;
  background-color: #fff;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
    url("BACKGROUND_WEB_DIMENSION_80px.svg");
  background-repeat: repeat;
  background-size: 350px 350px;
}


.contact-info {
  background-color: #2a003f;
  color: #fff;
  font-size: 14px;
  display: flex;
  justify-content: flex-end; 
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 35px;
  padding: 0 40px;
  z-index: 1000;
  white-space: nowrap; 
}


.contact-container {
  display: flex;
  justify-content: flex-end; 
  align-items: center;
  gap: 20px;
}


.contact-info a {
  color: white;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}


@media (max-width: 768px) {
  .contact-info {
    font-size: 12px;
    padding: 0 20px;
  }

  .contact-container {
    flex-wrap: nowrap;
    overflow: hidden;
    gap: 10px;
    justify-content: flex-end; 
  }
}

.navbar {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 90px;
  position: fixed;
  top: 35px;
  left: 0;
  right: 0;
  height: 110px;
  z-index: 999;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar-content {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}


.logo img {
  height: 75px;
  transition: height 0.3s ease;
  margin-left: 22vh; 
}


.nav-container {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 50px;
  font-weight: bold;
  justify-content: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  font-size: 18px;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #7E2E8C;
}


.payment-button {
  background-color: #43165F;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s;
  box-shadow: 0px 4px 10px rgba(168, 85, 247, 0.4);
  white-space: nowrap;
   margin-right: 22vh; 
}

.payment-button:hover {
  background-color: #7E2E8C;
  box-shadow: 0px 6px 14px rgba(147, 51, 234, 0.5);
}

.payment-button-container {
  display: flex;
  align-items: center;
}


.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  margin-left: 5px;
}

.hamburger span {
  background-color: #333;
  height: 3px;
  width: 25px;
  border-radius: 2px;
  transition: all 0.3s ease;
}


.right-content {
  display: flex;
  align-items: center;
  gap: 20px;
}


.sidebar-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: -100%;
  width: 280px;
  height: 100vh;
  background-color: #fff;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.15);
  padding: 30px 24px;
  z-index: 1000;
  gap: 20px;
  transition: left 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.sidebar-menu.active {
  left: 0;
  opacity: 1;
}


.sidebar-menu .close-menu {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #7d2ae8;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.sidebar-menu .close-menu:hover {
  color: #5c1fd1;
  transform: translateX(-4px);
}

.sidebar-menu .close-menu .arrow-icon {
  font-size: 20px;
  transition: transform 0.3s;
}

.sidebar-menu .close-menu:hover .arrow-icon {
  transform: translateX(-3px);
}


.sidebar-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu ul li {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideIn 0.5s ease forwards;
}


.sidebar-menu ul li:nth-child(1) { animation-delay: 0.15s; }
.sidebar-menu ul li:nth-child(2) { animation-delay: 0.3s; }
.sidebar-menu ul li:nth-child(3) { animation-delay: 0.45s; }
.sidebar-menu ul li:nth-child(4) { animation-delay: 0.6s; }


.sidebar-menu ul li a {
  color: #111;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.sidebar-menu ul li a:hover {
  color: #7d2ae8;
  transform: translateX(5px);
}


@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}



@media (max-width: 1024px) {
  .nav-container {
    display: none;
  }

  .navbar {
    padding: 15px 20px;
    height: auto;
  }

  .navbar-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .hamburger {
    display: flex;
    order: -1; 
  }

  .right-content {
    display: flex;
    align-items: center;
    gap: 10px;
  }

 .logo img {
    height: 55px;
    margin-left: 4vw; 
  }

  .payment-button {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 25px;
    margin-right: 4vw; 
  }
}

@media (max-width: 768px) {
  .right-content {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
  }

  .logo img {
    height: 50px;
    margin-left: -1vw; 
  }


.payment-button {
    padding: 8px 18px;
    font-size: 13px;
    margin-right: -1vw; 
  }
}


.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 140vh;
  height: 95vh;
  margin: 0 auto;
  background-color: #000;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  padding-top: 0;
}


.carousel {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}


.carousel-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}


.carousel-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}


.carousel-caption {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  text-align: left;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  max-width: 50%;
  z-index: 3;
}

.carousel-caption h2 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.carousel-caption p {
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}

.cta-button {
  display: inline-block;
  background-color: #6A0DAD;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  background-color: #4B0082;
  transform: scale(1.1);
  box-shadow: 0px 4px 20px rgba(106, 13, 173, 0.6);
}


.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #fff; 
  background: transparent; 
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 5;
  border-radius: 50%;
}

.carousel-btn:hover {
  /* Sin efecto */
}

.carousel-btn.prev {
  left: 1rem;
}

.carousel-btn.next {
  right: 1rem;
}



@media (max-width: 768px) {

  .carousel-container {
    max-width: 95%;
    height: 55;
    margin-top: -20px;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  
  .carousel-caption {
    left: 5%;
    top: 55%;
    transform: translateY(-50%);
    max-width: 90%;
  }

  .carousel-caption h2 {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .carousel-caption p {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }

  .cta-button {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }

  .carousel-btn {
    font-size: 1.4rem;
    padding: 0.3rem 0.6rem;
  }
}


@media (max-width: 480px) {
  .carousel-container {
    height: 55vh;
    margin-top: -25px;
  }

  .carousel-caption h2 {
    font-size: 1.3rem;
  }

  .carousel-caption p {
    font-size: 0.85rem;
  }

  .cta-button {
    font-size: 0.8rem;
  }
}



#video-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#video-loader.hidden {
  opacity: 0;
  visibility: hidden;
}


#video-loader span {
  font-size: 1.5rem;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}



.servicios-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    background: transparent;
    position: absolute;
    top: 97%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 10;
}


.servicios-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1100px;
    box-sizing: border-box;
}


.titulo-servicios {
    font-size: 26px;
    font-weight: bold;
    color: #2c1e3c;
    margin-bottom: 25px;
    text-align: center;
}


.servicios-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}


.servicio-card {
    flex: 1;
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 370px;
}


.icono-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
    margin-bottom: 15px;
}

.servicio-card h3 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 20px;
    color: #2c1e3c;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.servicio-card p {
    font-size: 14px;
    color: #666;
    font-weight: bold;
    line-height: 1.5;
    margin: 0 auto;
    height: 80px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}

.servicio-card p:hover {
    color: #555;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}


@keyframes resaltar {
    0% { transform: scale(1); box-shadow: 0px 4px 10px rgba(103, 58, 183, 0.1); }
    50% { transform: scale(1.05); box-shadow: 0px 6px 15px rgba(103, 58, 183, 0.3); }
    100% { transform: scale(1); box-shadow: 0px 4px 10px rgba(103, 58, 183, 0.1); }
}


.btn-cta-card {
    display: inline-block;
    margin-top: auto;
    padding: 10px 20px;
    background: #43165F;
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    transition: background 0.3s;
    align-self: center;
    animation: resaltar 2s infinite ease-in-out;
}

.btn-cta-card:hover,
.btn-cta-card:focus {
    background: #7E2E8C;
    transform: scale(1.1);
    box-shadow: 0px 8px 20px rgba(103, 58, 183, 0.6);
}


.separador {
    width: 1px;
    background: #ddd;
    height: auto;
    align-self: stretch;
}


@media (max-width: 1024px) {
    .servicio-card {
        height: auto;
    }

    .servicio-card h3 {
        height: auto;
        font-size: 17px;
    }

    .servicio-card p {
        height: auto;
        font-size: 13px;
    }
}


@media (max-width: 768px) {
    .servicios-section {
        position: static;
        transform: none;
        margin-top: 0;
        padding: 20px 10px 0;
    }

    .servicios-container {
        padding: 20px 10px;
    }

    .servicios-grid {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .servicio-card {
        width: 100%;
        max-width: 400px;
        margin-bottom: 5px;
        padding-bottom: 15px;
    }

    .btn-cta-card {
        margin-top: 15px;
        margin-bottom: 0;
    }
}


@media (max-width: 480px) {
    .titulo-servicios {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .icono-img {
        width: 55px;
        height: 55px;
    }

    .servicio-card h3 {
        font-size: 15px;
    }

    .servicio-card p {
        font-size: 12px;
    }

    .btn-cta-card {
        font-size: 12px;
        padding: 7px 14px;
    }

    .servicios-container {
        padding: 15px 10px;
    }

    .servicios-section {
        padding-bottom: 0;
    }
}





.ventajas {
  margin-top: 400px; 
  text-align: center;
  margin-bottom: 50px;
}

.ventajas-title {
  font-size: 42px;
  font-weight: bold;
  color: #2E0D47;
  margin-bottom: 70px;
}

.ventajas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 60px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.ventaja-item {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  width: 45%;
  min-width: 280px;
  max-width: 450px;
  padding: 10px 0;
}

.ventaja-item:hover {
  transform: translateY(-6px);
}

.ventaja-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #43165F, #7E2E8C);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(160, 77, 255, 0.4);
}

.ventaja-icon i {
  font-size: 24px;
  color: #fff;
}

.ventaja-texto {
  flex: 1;
}

.ventaja-texto h3 {
  font-size: 20px;
  font-weight: bold;
  color: #3f2171;
  margin-bottom: 5px;
}

.ventaja-texto p {
  font-size: 15px;
  color: #444;
  margin: 0;
}


@media (max-width: 1024px) {
  .ventajas {
    margin-top: 35vh; 
  }

  .ventajas-title {
    font-size: 36px;
    margin-bottom: 50px;
  }

  .ventaja-item {
    width: 100%;
    max-width: 100%;
  }
}


@media (max-width: 768px) {
  .ventajas {
    margin-top: 150px; 
    padding: 0 15px;
  }

  .ventajas-title {
    font-size: 30px;
  }

  .ventaja-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .ventaja-icon {
    margin: 0 auto;
  }

  .ventaja-texto h3 {
    font-size: 18px;
  }

  .ventaja-texto p {
    font-size: 14px;
  }
}


@media (max-width: 480px) {
  .ventajas {
    margin-top: 100px; 
  }

  .ventajas-title {
    font-size: 26px;
  }

  .ventaja-item {
    padding: 20px 10px;
  }

  .ventaja-texto h3 {
    font-size: 16px;
  }

  .ventaja-texto p {
    font-size: 13px;
  }

  .ventaja-icon {
    width: 50px;
    height: 50px;
  }

  .ventaja-icon i {
    font-size: 20px;
  }
}




.footer {
  background-image: url('pie de pagina dimension (1).png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  padding: 60px 40px 30px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-box {
  flex: 1;
  min-width: 280px;
}

.logo-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: white;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #00cfff;
}

.footer-title {
  color: #00cfff;
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
  color: #00cfff;
}

.map-container {
  margin-bottom: 10px;
}

.footer-box p {
  font-size: 14px;
  margin: 5px 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 14px;
  color: #ccc;
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-box {
    width: 100%;
  }

  .logo-box {
    align-items: center;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .map-container iframe {
    width: 100%;
  }
}




.cta-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
  z-index: 1000;
}

.cta-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #007bff;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 22px;
  text-decoration: none;
  overflow: hidden;
  transition: width 0.3s ease, background-color 0.3s ease;
  padding: 0 10px;
}

.cta-btn i {
  z-index: 1;
}

.cta-btn::after {
  content: attr(data-label);
  position: absolute;
  right: 60px;
  white-space: nowrap;
  background-color: #007bff;
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  font-size: 14px;
  pointer-events: none;
}

.cta-btn:hover::after {
  opacity: 1;
  transform: translateX(0);
}


.cta-btn.whatsapp {
  background-color: #25D366;
    font-size: 32px; 
}

.cta-btn.whatsapp::after {
  background-color: #25D366;
}


.cta-btn.contacto {
  background-color: #6c63ff;
   font-size: 27px; 
}

.cta-btn.contacto::after {
  background-color: #6c63ff;
}


@keyframes popUp {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.cta-btn {
  animation: popUp 0.4s ease-out;
  transition: transform 0.3s ease, background-color 0.3s ease;
}


.cta-btn:hover {
  transform: scale(1.1); 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

 .modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.4s ease;
}

.modal-content h2 {
  color: #6a1b9a; 
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.modal-content label {
  display: block;
  margin-top: 15px;
  color: #6a1b9a;
  font-weight: 600;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus {
  border-color: #6a1b9a;
  outline: none;
}

.btn-enviar {
  background-color: #6a1b9a;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  margin-top: 20px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.btn-enviar:hover {
  background-color: #4a148c;
}

.cerrar-modal {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #6a1b9a;
}

@keyframes fadeIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    padding: 20px;
    border-radius: 12px;
  }

  .modal-content h2 {
    font-size: 20px;
  }

  .modal-content label {
    font-size: 14px;
  }

  .modal-content input,
  .modal-content select,
  .modal-content textarea {
    font-size: 13px;
    padding: 8px;
  }

  .btn-enviar {
    font-size: 14px;
    padding: 10px;
  }

  .cerrar-modal {
    font-size: 22px;
    top: 8px;
    right: 12px;
  }
}

@media (max-width: 480px) {
  .modal-content {
    padding: 15px;
    border-radius: 10px;
  }

  .modal-content h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .modal-content label {
    font-size: 13px;
    margin-top: 10px;
  }

  .modal-content input,
  .modal-content select,
  .modal-content textarea {
    font-size: 12px;
    padding: 7px;
  }

  .btn-enviar {
    font-size: 13px;
    padding: 10px;
  }

  .cerrar-modal {
    font-size: 20px;
    top: 6px;
    right: 10px;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 600px;
  margin: 0 auto;
  background: white;
  color: #f1f1f1;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  font-family: 'Montserrat', sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  z-index: 9999;
  animation: fadeInUp 0.6s ease;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
  color: black;
}

.cookie-banner button {
  background: #6c2bd9;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-banner button:hover {
  background-color: #5015b3;
}

.cookie-banner a.cookie-link {
  color: #9f8cff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-banner a.cookie-link:hover {
  color: #d1c4ff;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 12px;
  }

  .cookie-banner button {
    width: 100%;
    text-align: center;
  }
}
