.notification-container {
    position: fixed;
    top: 25px;  /* Adjusted from 10% */
    left: 50%;
    transform: translateX(-50%);
    width: 50%; /* Adjust width based on your design */
    z-index: 9999; /* Ensure it stays on top */
}

.show-notification {
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

.alert-danger {
    background-color: #f8d7da !important; /* Light red background */
    color: #721c24 !important; /* Dark red text */
    border: 1px solid #f5c6cb !important;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}


/* Close button styling */
.show-notification .close {
    color: #212421;
    opacity: 0.7;
}

/* Ensure it does not affect navbar expansion */
.navbar {
    position: relative;
    z-index: 1000;
}

/* Quitar números automáticos en los botones del FAQ */
.faq .btn-link::before,
.faq .btn-link::after {
    content: none !important;
}

/* .faq button.btn.btn-link {
    list-style-type: none;
    counter-increment: none;
} */

.revolutionize .section-title p {
    font-size: 18px;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
}

#pix-tabs-content .content {
    position: relative;
}

#pix-tabs-content .tab-description {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
}

#pix-tabs-content .tab-description h3 {
    font-size: 22px;
    color: #2b2350;
}

#pix-tabs-content .tab-description p {
    font-size: 16px;
    color: #4a4a4a;
    margin-top: 10px;
}

@media (max-width: 1000px) {
    #pix-tabs-content .tab-description {
        position: static;
        background: rgba(255, 255, 255, 0.95);
        margin-top: 10px;
        max-width: 100%;
        border-radius: 8px;
    }
    #pix-tabs-content .content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}


.image-two-inner img {
    max-width: 320px;
    max-height: 280px;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    margin-top: 20px; /* separarla un poco si lo deseas */
}

.banner.banner-one {
    /* height: auto !important; */
    overflow-y: hidden !important;
}

.footer-brand {
    display: flex;
    align-items: flex-end; /* Alinea parte inferior */
    gap: 10px;
}

/* .footer-brand p {
    margin-bottom: 2px; 
} */

/* Ajuste para la sección de notebook access */
.notebook-access-wrapper {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  align-items: center;
}

/* Columna izquierda */
.notebook-access-form {
  flex: 1 1 50%;
  padding: 4rem;
  background-color: #72df98;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Columna derecha */
.notebook-access-info {
  flex: 1 1 50%;
  padding: 4rem;
  background-color: #33b560;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Mobile - columnas apiladas */
@media (max-width: 768px) {
  .notebook-access-wrapper {
    flex-direction: column;
  }

  .notebook-access-form,
  .notebook-access-info {
    flex: 1 1 100%;
    padding: 2rem 1rem;
    text-align: center;
  }

  .notebook-access-info img {
    max-width: 80%;
    height: auto;
  }
}
.access-section .left-pane {
  background-color: #72df98;
}

.access-section .right-pane {
  background-color: #33b560;
}

/* Evitar que el contenido se pegue a los bordes en móviles */
@media (max-width: 767px) {
  .access-section .left-pane,
  .access-section .right-pane {
    padding: 3rem 1.5rem !important;
  }
}
.access-section {
  margin: 0;
  padding: 0;
}

.access-section .row {
  margin: 0;
  padding: 0;
}

.banner.banner-two .animate-promo-mockup {
      width: 100%;
      max-width: 550px;
      aspect-ratio: 1 / 1; /* o 16 / 9 si prefieres horizontal */
      position: relative;
      margin: 0 auto;
      margin-top: 75px !important;
      margin-bottom: -100px !important;
  }