/* Estilos específicos para la página de tarifas */

.back-link {
    display: inline-block;
    margin: 20px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #970066, #ec4899);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.back-link:hover {
    transform: translateY(-2px);
}

.tarifas-hero {
    background: linear-gradient(135deg, #970066, #ec4899);
    color: white;
    padding: 80px 20px 60px;
    text-align: center;
}

.tarifas-hero h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.tarifas-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.tarifas-detalladas {
    padding: 60px 20px;
}

.tarifa-section {
    max-width: 1200px;
    margin: 0 auto 60px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tarifa-section h2 {
    font-family: 'Fredoka', sans-serif;
    color: #970066;
    font-size: 2rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tarifa-section .emoji {
    font-size: 2.5rem;
}

.tarifa-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.tarifa-info {
    background: #FFEBDE;
    padding: 25px;
    border-radius: 15px;
}

.tarifa-info h3 {
    color: #970066;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.tarifa-info .precio-grande {
    font-size: 3rem;
    font-weight: 700;
    color: #ec4899;
    margin: 15px 0;
}

.tarifa-info .precio-grande span {
    font-size: 1.2rem;
    color: #666;
}

.caracteristicas {
    list-style: none;
    padding: 0;
}

.caracteristicas li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.caracteristicas li:last-child {
    border-bottom: none;
}

.caracteristicas li::before {
    content: "✓";
    color: #970066;
    font-weight: bold;
    font-size: 1.2rem;
}

.nota-importante {
    background: linear-gradient(135deg, #fef3c7, #fed7aa);
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid #f59e0b;
    margin-top: 30px;
}

.nota-importante strong {
    color: #f59e0b;
}

.descuentos {
    background: linear-gradient(135deg, #dcfce7, #d1fae5);
    padding: 30px;
    border-radius: 15px;
    margin: 40px auto;
    max-width: 1200px;
}

.descuentos h2 {
    color: #16a34a;
    font-family: 'Fredoka', sans-serif;
    margin-bottom: 20px;
}

.descuentos ul {
    list-style: none;
    padding: 0;
}

.descuentos li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.descuentos li::before {
    content: "🧽";
    font-size: 1.5rem;
}

.contacto-cta {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #FFEBDE, #fce7f3);
}

.contacto-cta h2 {
    font-family: 'Fredoka', sans-serif;
    color: #970066;
    margin-bottom: 20px;
}

.contacto-cta .btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #970066, #ec4899);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.contacto-cta .btn-primary:hover {
    transform: translateY(-2px);
}

/* Estilos inline del HTML */
.tarifa-section-gradient {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
    border: 2px solid #ec4899;
}

.tarifa-section-badge {
    position: relative;
}

.tarifa-section-badge .badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #ec4899, #970066);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(236, 72, 153, 0.3);
}

.descuentos-yellow {
    background: linear-gradient(135deg, #fff3cd, #ffe69c);
}

.descuentos-yellow h2 {
    color: #f59e0b;
}

.footer-dark {
    background: linear-gradient(135deg, #6b21a8, #970066);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.footer-dark p {
    margin: 0;
}

.footer-dark p:nth-child(3) {
    margin-top: 15px;
}

.contacto-cta p {
    margin-bottom: 30px;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets grandes */
@media (max-width: 1024px) {
    .tarifas-detalladas {
        padding: 40px 15px;
    }

    .tarifa-section {
        padding: 30px;
        margin: 0 auto 40px;
    }

    .tarifa-section h2 {
        font-size: 1.8rem;
    }

    .tarifa-info .precio-grande {
        font-size: 2.5rem;
    }

    .descuentos {
        padding: 25px;
        margin: 30px auto;
    }
}

/* Tablets y móviles */
@media (max-width: 768px) {
    .tarifas-hero {
        padding: 60px 20px 40px;
        margin-top: 70px;
    }

    .tarifas-hero h1 {
        font-size: 2rem;
    }

    .tarifas-hero p {
        font-size: 1rem;
    }

    .tarifas-detalladas {
        padding: 30px 15px;
    }

    .tarifa-section {
        padding: 20px;
        margin: 0 auto 30px;
    }

    .tarifa-section h2 {
        font-size: 1.5rem;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .tarifa-section .emoji {
        font-size: 2rem;
    }

    .tarifa-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tarifa-info {
        padding: 20px;
    }

    .tarifa-info h3 {
        font-size: 1.3rem;
    }

    .tarifa-info .precio-grande {
        font-size: 2.2rem;
    }

    .tarifa-info .precio-grande span {
        font-size: 1rem;
    }

    .caracteristicas li {
        padding: 8px 0;
        font-size: 0.95rem;
    }

    .nota-importante {
        padding: 15px;
        margin-top: 20px;
    }

    .descuentos {
        padding: 20px;
        margin: 25px 15px;
    }

    .descuentos h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .descuentos li {
        padding: 8px 0;
        font-size: 0.95rem;
    }

    .contacto-cta {
        padding: 40px 20px;
    }

    .contacto-cta h2 {
        font-size: 1.5rem;
    }

    .contacto-cta .btn-primary {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .back-link {
        margin: 15px;
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Móviles pequeños */
@media (max-width: 480px) {
    .tarifas-hero {
        padding: 50px 15px 35px;
    }

    .tarifas-hero h1 {
        font-size: 1.6rem;
    }

    .tarifas-hero p {
        font-size: 0.9rem;
    }

    .tarifas-detalladas {
        padding: 20px 10px;
    }

    .tarifa-section {
        padding: 15px;
        margin: 0 auto 20px;
        border-radius: 15px;
    }

    .tarifa-section h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .tarifa-section .emoji {
        font-size: 1.8rem;
    }

    .tarifa-info {
        padding: 15px;
    }

    .tarifa-info h3 {
        font-size: 1.2rem;
    }

    .tarifa-info .precio-grande {
        font-size: 1.8rem;
        margin: 10px 0;
    }

    .tarifa-info .precio-grande span {
        font-size: 0.9rem;
    }

    .caracteristicas li {
        padding: 6px 0;
        font-size: 0.9rem;
    }

    .caracteristicas li::before {
        font-size: 1rem;
    }

    .nota-importante {
        padding: 12px;
        font-size: 0.9rem;
    }

    .descuentos {
        padding: 15px;
        margin: 20px 10px;
        border-radius: 12px;
    }

    .descuentos h2 {
        font-size: 1.2rem;
    }

    .descuentos li {
        padding: 6px 0;
        font-size: 0.9rem;
    }

    .descuentos li::before {
        font-size: 1.2rem;
    }

    .contacto-cta {
        padding: 30px 15px;
    }

    .contacto-cta h2 {
        font-size: 1.3rem;
    }

    .contacto-cta p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .contacto-cta .btn-primary {
        padding: 10px 25px;
        font-size: 0.95rem;
        border-radius: 25px;
    }

    .tarifa-section-badge .badge {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
        top: -12px;
        right: 15px;
    }

    .footer-dark {
        padding: 20px 15px;
    }

    .footer-dark p {
        font-size: 0.9rem;
    }
}

/* Móviles muy pequeños */
@media (max-width: 360px) {
    .tarifas-hero h1 {
        font-size: 1.4rem;
    }

    .tarifa-section h2 {
        font-size: 1.2rem;
    }

    .tarifa-info .precio-grande {
        font-size: 1.6rem;
    }

    .caracteristicas li {
        font-size: 0.85rem;
    }

    .contacto-cta h2 {
        font-size: 1.2rem;
    }
}
