* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    min-height: 100vh;
    background-color: #f5f5f7;
    font-family: 'Inter', sans-serif;
}

.container {
    display: flex;
    width: 100%;
}

.payment-section {
    flex: 2;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
}

.header-image {
    max-width: 600px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.logo {
    width: 180px;
    margin-right: 20px;
}

.illustration {
    width: 320px;
}

.payment-form {
    width: 100%;
    max-width: 600px;
}

h2 {
    font-size: 18px;
    margin-bottom: 25px;
    color: #202020;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #333;
}

.select-container {
    position: relative;
}

select,
input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    color: #555;
    appearance: none;
}

.select-container::after {
    content: "×";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #999;
    pointer-events: none;
}

.terms {
    text-align: justify;
    color: #666;
    margin-bottom: 25px;
    font-size: .875rem;
    line-height: 1.25rem;
}

.terms a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.btn-submit {
    background-color: #78c2c5;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: block;
    margin: 0 auto;
}

.info-section {
    /* flex: 1; */
    width: 33.33333%;
    background-color: #f0f0f2;
    padding: 2rem;
    padding-top: .5rem;
    display: flex;
    flex-direction: column;
}

.info-content {
    padding-top: 3rem;
}

h3 {

    margin-bottom: 20px;
    color: #202020;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
}

.info-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.footer {
    margin-top: auto;
    text-align: right;
    display: flex;
    /* justify-content: flex-end; */
    align-items: center;
}

.footer-text {
    margin-right: 10px;
    font-size: 12px;
}

.language-selector {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.language-selector img {
    margin-right: 5px;
    width: 20px;
}

#footer3 {
    display: flex;
}

#footer1 {
    display: none;
}
#noti{
    display: none;
    width: 125%;
}

#logoimg{
    display: none;
}

@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        
    }

    .info-section {
        padding: 30px;
    }

    .info-content {
        padding-top: 30px;
    }

    #footer1 {
        display: none;
    }

    #footer2 {
        display: none;
    }

    #footer3 {
        display: none;
    }

    #footer4 {
        display: none;
    }
    .info-section{
        
        height: 4rem;
        padding: 1rem;
    }
    #noti{
        width: 100%;
    }
    .payment-section{
        padding-bottom: 15vh;
    }
    #logoimg{
        display: flex;
    }
}

@media (min-width: 1024px) {
    .lg\:w-1\/2 {
        width: 50%;
    }

    #footer3 {
        display: flex;
    }

    
   
}

@media (min-width: 768px) {
    .md\:w-7\/12 {
        width: 80%;
    }
}
input:focus,
select:focus,
textarea:focus {
  outline: none;        /* Quita el borde de enfoque */
  box-shadow: none;     /* Quita cualquier sombra de enfoque */
  border-color: none; /* Mantiene el color original del borde */
}
  

.notification {
    position: relative;
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    max-width: 400px;
    width: 100%;
    animation: slideIn 0.3s ease-out forwards;
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.notification-icon {
    margin-right: 15px;
    min-width: 24px;
}

.notification-icon .circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ffefef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-icon .exclamation {
    color: #ff6b6b;
    font-size: 14px;
    font-weight: bold;
}

.notification-content {
    flex: 1;
}

.notification-message {
    font-size: 14px;
    color: #333;
}

.notification-close {
    margin-left: 15px;
    cursor: pointer;
    color: #999;
    font-size: 18px;
    font-weight: lighter;
    background: none;
    border: none;
    padding: 5px;
}

.border-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #ff6b6b;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.custom-select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
  }
  
  .custom-select-wrapper select {
    width: 100%;
    appearance: none; /* Oculta la flecha nativa */
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2rem; /* deja espacio para el ícono */
  }
  
  .select-arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: transform 0.3s ease;
  }
.custom-select-wrapper {
  position: relative;
}

.custom-select-wrapper select {
  width: 100%;
  appearance: none;
  padding-right: 2rem; /* espacio para la flecha */
}

.select-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
  pointer-events: none;
}
  

/* -------- */
.language-selector {
    position: relative;
    display: inline-block;
    margin-left: 3rem;
    cursor: pointer;
  }
  
  .current-lang {
    display: flex;
    align-items: center;
    font-weight: 500;
    user-select: none;
  }
  
  .lang-icon {
    width: 20px;
    height: 20px;
    stroke: #333;
  }
  
  .chevron {
    margin-left: 6px;
    transition: transform 0.3s ease;
    stroke: #333;
  }
  
  .lang-modal {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 1rem;
    margin-top: 0.5rem;
    min-width: 120px;
    z-index: 1000;
  
    /* Animación inicial */
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
  }
  
  .lang-modal.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  
  .lang-option {
    display: flex;
    align-items: center;
    padding: 0.3rem 0;
    cursor: pointer;
  }
  
  .lang-option:hover {
    background-color: #f2f2f2;
    border-radius: 0.3rem;
  }
  