*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
     font-family: 'Poppins', 'Segoe UI', sans-serif;
}

.w100{
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 0px 10px ;
}

.separateDiv{
    padding-top:10px;
    padding-bottom:15px;
    color:var(--ColorTexto);
}




/*Tarifa*/


.product-pricing {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;    margin: auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width:80%
}

.pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;    justify-content: center;
}

.regular-price {
    font-size: 18px;
    font-weight: 500;
    color: var(--blanco);
    text-decoration: line-through;
    opacity: 0.8;
}

.promotional-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--blanco);
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.expert-text {
   font-size: 16px;
    color: var(--blanco);
    margin: 0;
    line-height: 1.4;
    text-align: center;
    padding-top: 10px;
    opacity: 0.9;
}

/* Efectos hover para mejor interactividad */
.promotional-price:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .product-pricing {
        padding: 15px;
        gap: 10px;
    }

    .regular-price {
        font-size: 16px;
    }

    .promotional-price {
        font-size: 20px;
        padding: 6px 12px;
    }

    .expert-text {
        font-size: 13px;
    }
}

.divdd{
    display:flex;
    justify-content:center;
}
.add-to-cart-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--blanco);
    color: var(--principal);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-top: 8px;
    width: fit-content;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .add-to-cart-btn {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}


/* Estilos específicos para los inputs dentro de FlexInput */
.FlexInput .inputs label {
    position: relative;
    display: block;
}

.FlexInput .inputs input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.FlexInput .inputs input.error {
    border-color: #ff3860;
}

.FlexInput .inputs input.success {
    border-color: #23d160;
}

.FlexInput .inputs .error-message {
    color: #ff3860;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

.aceptoCondiciones.error {
    color: #ff3860;
}

.aceptoCondiciones.success {
    color: #23d160;
}

/* Loader y Overlay */
.form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.form-loader {
    background: var(--blanco);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.loader-spinner {
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--principal);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    font-size: 16px;
    color: #333;
}

  .whatsapp-highlight {
    color: #01BC62 !important;
    text-decoration: underline;
    cursor: pointer;
    transition: all 0.3s ease;
}


@media(max-width:500px){
    .product-pricing{
        max-width:100%;
    }
    .textoElegirnos{
        font-size:32px;
        line-height:1.2;
    }
}
