/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #fff5f7;
    color: #333;
    line-height: 1.6;
}

/* Modales */
#ageVerificationModal, #underageModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.4s;
}

#underageModal {
    background-color: rgba(139, 0, 0, 0.9);
    display: none;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    text-align: center;
}

.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-confirm, .btn-deny {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-confirm {
    background: linear-gradient(135deg, #28a745, #218838);
    color: white;
}

.btn-deny {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    height: 50px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #d63384;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #a61e4d;
}

/* Hero */
.hero {
    text-align: center;
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #fcc2d7, #f783ac);
    color: white;
}

.cta-button {
    background: white;
    color: #d63384;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 1rem;
    cursor: pointer;
    transition: transform 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Carrusel */
.profiles-carousel {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 3rem;
}

.carousel-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.profile-card {
    flex: 0 0 250px;
    scroll-snap-align: start;
    background: white;
    border-radius: 15px;
    color: #495057; /* Un gris más oscuro */
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.profile-card:hover {
    transform: translateY(-10px);
}

.profile-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #f783ac;
    margin-bottom: 1rem;
}

.profile-button {
    background: #f783ac;
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 1rem;
    font-weight: 600;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-button:hover {
    background: #e83e8c;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    font-size: 1.2rem;
    color: #d63384;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: white;
    margin-top: 3rem;
}

footer a {
    color: #d63384;
    font-weight: 600;
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .profiles-carousel {
        padding: 0 1rem;
    }
    
    .profile-card {
        flex: 0 0 200px;
    }
}

/* Logo flotante */
.logo-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo {
    height: 50; /* Tamaño aumentado */
    width: auto;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.3));
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05); /* Efecto sutil al hover */
}

/* Ajuste para el header (elimina espacio del logo) */
.header {
    justify-content: flex-end; /* Alinea solo el menú a la derecha */
    padding-left: 100px; /* Compensa el espacio del logo */
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.logo {
    animation: float 3s ease-in-out infinite;
}

.logo-container {
    left: 20px;
    right: auto;
}


/*=================================================*/
/* Estilos para la sección de recargas */
.recharges-section {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.recharges-section h1 {
    color: #e83e8c;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.recharges-section .subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.recharges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.recharge-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid #f8c1d5;
    transition: all 0.3s ease;
}

.recharge-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: #e83e8c;
}

.recharge-card.popular {
    border: 2px solid #e83e8c;
    background: linear-gradient(to bottom, #fff9fb, white);
}

.popular-tag {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #e83e8c;
    color: white;
    padding: 0.3rem 1.2rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.hearts-amount {
    font-size: 1.4rem;
    color: #e83e8c;
    margin-bottom: 1rem;
    text-align: center;
}

.hearts-amount strong {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recharge-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.recharge-benefits {
    text-align: center;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.recharge-benefits p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #555;
}

.recharge-btn {
    background: linear-gradient(135deg, #f783ac, #e83e8c);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
    width: 95%;
    max-width: 300;
    justify-content: center;
}

.recharge-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(247, 131, 172, 0.4);
    background: linear-gradient(135deg, #e83e8c, #d63384);
}

.recharge-btn i {
    font-size: 1.1rem;
}

.payment-methods {
    margin: 3rem 0 1rem;
    text-align: center;
    color: #666;
}

.payment-methods i {
    color: #e83e8c;
    margin-right: 0.5rem;
}

.small-text {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .recharges-section {
        padding: 1.5rem;
    }
    
    .recharges-grid {
        grid-template-columns: 1fr;
    }
}

/*Terminado*/

/* Estilos específicos para términos y condiciones */
.terms-container {
    max-width: 1000px;
    margin: 2rem auto;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.terms-container h1 {
    color: #d63384;
    text-align: center;
    margin-bottom: 1.8rem;
    font-size: 2.3rem;
}

.terms-container h2 {
    color: #e83e8c;
    margin: 2.2rem 0 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid #f8c1d5;
}

.terms-container h3 {
    color: #a61e4d;
    margin: 1.6rem 0 0.8rem;
}

.last-update {
    text-align: right;
    color: #888;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.acceptance-section {
    background: #fdf2f7;
    border-left: 4px solid #f783ac;
    padding: 1.8rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.btn-accept {
    background: linear-gradient(135deg, #f783ac, #e83e8c);
    color: white;
    border: none;
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
    margin-top: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-container {
        padding: 1.8rem;
        margin: 1rem;
    }
    
    .terms-container h1 {
        font-size: 1.8rem;
    }
}


/*=====================================*/
/* Estilos para la sección de consulta de saldo */
.balance-section {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 0 1.5rem;
}

.balance-container {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 2px solid #f8c1d5;
}

.balance-container h2 {
    color: #e83e8c;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
}

.balance-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    width: 100%;
}

.country-select, .phone-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.country-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.country-select:focus, .phone-input:focus {
    outline: none;
    border-color: #f783ac;
    box-shadow: 0 0 0 3px rgba(247, 131, 172, 0.2);
}

.balance-btn {
    background: linear-gradient(135deg, #f783ac, #e83e8c);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    width: 100%;
}

.balance-btn:hover {
    background: linear-gradient(135deg, #e83e8c, #d63384);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 131, 172, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .balance-container {
        padding: 1.2rem;
    }
    
    .balance-container h2 {
        font-size: 1.4rem;
    }
}