* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.container {
    width: 100%;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
}

header {
    background-color: #fff;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 40px;
}
.header2{
    background-color: #049BF3 !important;
    color: white;
    margin-bottom: -10px;
    margin-top: -50px;
    width: 112%;
    margin-left: -1.4rem;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 50px;
}

.tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
}

.tab {
    padding: 10px 15px;
    border: 1px solid transparent;
    border-radius: 20px;
    background-color: rgb(240, 240, 240);
    cursor: pointer;
    color: rgb(1, 157, 244);
    transition: background-color 0.3s;
}

.tab.active {
    background-color: rgb(1, 157, 244);
    color: #fff;
    border-color: rgb(1, 157, 244);
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #0a2738;
    font-weight: 300; /* Puedes probar también 200 o 100 */
      
}

.options {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.option {
    padding: 10px 20px;
    border: 1px solid #0a2738;
    border-radius: 20px;
    background-color: white;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 0 5px;
    font-size: 16px;

}

.option.active {
    background-color: rgb(11, 39, 57);
    color: #fff;
    border-color: #007bff;
}


.new-payment-methods {
    text-align: center;
    margin: 20px 0;
}

.new-payment-methods h3 {
    margin-bottom: 10px;
    color: #333;
}

.new-payment-methods img {
    width: 50px;
    margin: 0 10px;
}

.note {
    text-align: center;
    color: #888;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.promo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promo img {
    width: 112%;
    margin-top: 10px;
}

#lineaInput {
    width: 95%;
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-bottom: 2px solid rgb(11, 39, 57);
    outline: none;
    font-size: 1.3rem;
    text-align: center;
margin-left: 0.5rem;
}

#lineaInput:focus {
    border-color: #019DF4;
}

::placeholder{
    font-size: 1rem;
    text-align: center;
}


#consultaBtn {
    width: 100%;
    height: 50px;
    padding: 10px;
    margin-bottom: 20px;
    margin-top: 20px;
    border: 1px solid #ccc;
    border-radius: 20px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    background-color: rgb(211, 212, 211);
    color: white;
    font-size: 1.2rem;
}

#consultaBtn.active {
    background-color: rgb(11, 39, 57);
    cursor: pointer;
}
 
#consultaBt {
    width: 100%;
    height: 50px;
    padding: 10px;
    margin-bottom: 20px;
    margin-top: 0px;
    border: 1px solid #ccc;
    border-radius: 20px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    background-color: white;
    color:rgb(211, 212, 211);
    font-size: 1.2rem;
}

#consultaBt.active {
    background-color: rgb(11, 39, 57);
    cursor: pointer;
    color: white;
}






    .info-factura {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .device-img {
        margin-bottom: 20px;
    }
    
    .info-factura h3 {
        color: #007bff;
        margin-bottom: 5px;
    }
    
    .info-factura p {
        margin-bottom: 5px;
        color: #333;
    }
    #numero{
        color: #0a2738;
        font-weight: bold;
    }
    .btn-agregar {
        width: 100%;
        padding: 10px;
        background-color: #007bff;
        color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        margin-bottom: 20px;
        box-shadow: 0 4px 6px rgba(0, 123, 255, 0.1);
        transition: background-color 0.3s;
    }
    
    .btn-agregar:hover {
        background-color: #0056b3;
    }
    
    .total-pagar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        border-bottom: 1px solid #0a2738;;
    }
    
    .total-label {
        display: flex;
        align-items: center;
    }
    
    .total-label i {
        color: #007bff;
        margin-right: 10px;
    }
    
    .total-amount {
        font-size: 1.2em;
        font-weight: bold;
    }
    
    .detalle-factura {
        margin-bottom: 20px;
    }
    
    table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 10px;
    }
    
    th, td {
        border: 1px solid #ccc;
        padding: 10px;
        text-align: left;
    }
    
    th {
        background-color: #f4f4f4;
    }
    
    .btn-group {
        margin-top: 1rem;
        display: flex;
        justify-content: space-between;
    }
    
    .btn-cancelar, .btn-pagar {
        width: 50%;
        padding: 10px;
        border: 1px solid rgb(11, 39, 57);
        border-radius: 30px;
        cursor: pointer;
        font-weight: bold;
        margin: 10px;
        font-size: 16px;
    height: 50px;    }
    
    .btn-cancelar {
        color: #0a2738;
        background-color: transparent;

    }
    
    .btn-pagar {
        background-color: #0a2738;
        color: #fff;
    }
    
    .btn-cancelar:hover {
        background-color: #999;
    }
    
    .btn-pagar:hover {
        background-color: #0056b3;
    }
    
    footer {
        text-align: center;
        color: #0a2738;
        margin: auto;
        margin-top: 100px;
        margin-bottom: ;
        width: 100%;
    }
    
    footer p {
        margin-bottom: 0;
    }
    
    /* Media Queries for Responsive Design */
    @media (max-width: 600px) {
        .header-content {
            flex-direction: column;
        }
    
        .header-content p {
            margin-top: 10px;
        }
    }
    .section2{
        width: 80%;
        margin: auto;
        margin-top: -30px;
    }
    
    .cajadeuda{
        border: 1px solid #0a2738;;
        border-radius:15px;
        border-bottom: 1px solid transparent;
    }













    .header-info {
        flex: 1;
        margin-left: 10px;
    }
    
    .header-info h1 {
        font-size: 1.2em;
        margin-bottom: 5px;
    }
    
    .header-info p {
        font-size: 0.9em;
        margin-bottom: 5px;
    }
    
    .header-info span {
        font-size: 1em;
        font-weight: bold;
    }
    
    .close-btn {
        background: none;
        border: none;
        color: #fff;
        font-size: 1.2em;
        cursor: pointer;
    }
    
    .header-bottom {
        margin-top: 10px;
        text-align: center;
    }
    
    .email-input {
        display: flex;
        align-items: center;
        margin-top: 20px;
        border-bottom: 1px solid #ccc;
        padding-bottom: 10px;
    }
    
    .email-input label {
        margin-right: 115px;
        margin-left: 10px;
    }
    
    .email-input input {
        width: 100%;
        border: none;
        outline: none;
        padding: 5px;
        font-size: 1em;
    }
    
    .email-input input::placeholder {
        color: #aaa;
    }
    
    h3 {
        text-align: center;
        margin: 20px 0;
        font-size: 1em;
    }
    
    .payment-methods {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .payment-method {
        width: 100%;
        height: 4rem;
        padding: 15px;
        margin: 5px 0;
        border: none;
        border-radius: 5px;
        background-color: white;
        font-size: 1em;
        text-align: left;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        cursor: pointer;
        transition: background-color 0.3s;
        border: 1px solid #049BF3;
    }
    
    .payment-method i {
        margin-right: 10px;
        color: #007bff;
    }
    
    .payment-method.disabled {
        cursor: not-allowed;
        border: 1px solid black;

    }
    
    .payment-method span {
        font-size: 0.8em;
    }
    
    .payment-method img {
        width: 50%;
    }
    
    .payment-method:hover {
        background-color: #e9e9e9;
    }

    
#espera {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
}

.overlay-content {
    text-align: center;
}

.rotating-image {
    width: 100px;
    animation: rotate 5s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.strongg{
    font-weight: 600;
}

.factur{
    padding: 1rem;
    border: 1px solid #0a2738;
    border-radius: 20px;
}

#section3{
    width: 100%;
}

.select-box {
    position: relative;
    width: 100%; 
    border: 1px solid #b4b4b4;
    cursor: pointer;
    user-select: none;
    padding: 10px;
    margin-bottom: 2rem;
    border-radius: 7px;    
}

.select-box {
    position: relative;
    width: 100%; 
    border: 1px solid #b4b4b4;
    cursor: pointer;
    user-select: none;
    padding: 10px;
    margin-bottom: 2rem;
    margin-top: 0.5rem;
    border-radius: 7px;    
}

header.pes{
    display: flex;
    width: 100%;
    box-shadow: none;
    margin-bottom: 20px;
    margin-top: -2.5rem;
    margin-left: -1.5rem;
}


.izq{
    width: 80%;
}
.lola{
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 3.5rem;
    text-align: center;
}

.der{
    width: 30%;

}
.desvane{
    border-bottom: 1px solid rgba(0, 0, 0, 0.08); /* Gris desvanecido */
    width: 100vw;
    margin-top: -1rem;
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.2); /* sombreado */
}

.cajagif{
        text-align: center;
    align-items: center;
    align-content: center;
}
.gif{
    margin-top: 3rem;
    margin-bottom: 2rem;
    width:5rem ;
    height: 5rem;
}

  .container{
    width: 100%;
  }

  /* Estilo personalizado para la barra de progreso */
.progress-bar-custom {
    background-color: rgba(66, 139, 202, 1); /* Color de fondo de la barra de progreso */
    color: #fff; /* Color del texto dentro de la barra de progreso */
    height: 2rem;
    width: 120%;
    border-radius: 5px;
    margin-left: -1rem;
  }
  
  /* Estilo para la animación de la barra de progreso */
  @keyframes progress-bar-stripes2 {
    from {
      background-position: 1rem 0;
    }
    to {
      background-position: 0 0;
    }
  }
  
  /* Estilo para las rayas animadas de la barra de progreso */
  .progress-bar-striped {
    animation: progress-bar-stripes2 1s linear infinite;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 3rem 3rem; /* Tamaño de las rayas animadas */
  }

  .cajavig{
    display: flex;
    width: 100vw;
    align-items: flex-start; /* Alinea la imagen al inicio (izquierda) */

}
.vig{
    width: 5rem;
    height: 20rem;
}


#pes{

}
