/* Estilos específicos para la página de Precios */

/* Pricing Hero Section */
.pricing-hero {
    background: var(--gradient-primary);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.pricing-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.pricing-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pricing-hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.pricing-hero-features {
    margin-bottom: 2rem;
}

.pricing-hero-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.pricing-hero-features .feature-item i {
    margin-right: 1rem;
    font-size: 1.2rem;
}

.pricing-hero-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.pricing-hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

/* Pricing Plans Section */
.pricing-plans {
    background: var(--white);
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: 35px;
    right: -35px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: var(--white);
    padding: 8px 40px;
    font-size: 0.9rem;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    vertical-align: top;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1;
}

.period {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.price-description {
    color: var(--secondary-color);
    font-size: 1rem;
    margin: 0;
}

.pricing-features {
    padding: 2rem;
    flex-grow: 1;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--dark-color);
    position: relative;
    padding-left: 2rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: var(--success-color);
    font-size: 1rem;
}

.pricing-footer {
    padding: 2rem;
    text-align: center;
    margin-top: auto;
}

/* Additional Services */
.additional-services {
    background: var(--light-color);
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--white);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card p:last-child {
    color: var(--secondary-color);
    margin: 0;
}

/* Why Choose Us */
.why-choose-us {
    background: var(--white);
}

.advantage-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--white);
    transition: var(--transition);
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
}

.advantage-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.advantage-card p {
    color: var(--secondary-color);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    * {
        max-width: 100vw !important;
        box-sizing: border-box;
    }
    .pricing-card, .service-card, .advantage-card, .payment-option, .service-price-card, .payment-method-compact {
        min-width: 0 !important;
        max-width: 100vw !important;
        overflow-x: auto !important;
    }
    body, html {
        overflow-x: hidden !important;
    }
    .pricing-hero-title {
        font-size: 2.5rem;
    }
    
    .pricing-hero-subtitle {
        font-size: 1rem;
    }
    
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .pricing-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .pricing-features {
        padding: 1.5rem;
    }
    
    .pricing-footer {
        padding: 1.5rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .advantage-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .pricing-hero-title {
        font-size: 2rem;
    }
    
    .pricing-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .pricing-features {
        padding: 1rem;
    }
    
    .pricing-features li {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
    }
    
    .pricing-footer {
        padding: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .advantage-card {
        padding: 1.5rem;
    }
    
    .cta-section .btn {
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .cta-section .btn:last-child {
        margin-bottom: 0;
    }
}

/* Efectos adicionales */
.pricing-card {
    position: relative;
    overflow: hidden;
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.pricing-card:hover::after {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Partículas flotantes */
.pricing-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

/* Dark mode */
.dark-mode .pricing-card {
    background: #2d3748;
    color: #e2e8f0;
}

.dark-mode .pricing-header {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
}

.dark-mode .pricing-features li {
    color: #e2e8f0;
}

.dark-mode .service-card {
    background: #2d3748;
    color: #e2e8f0;
}

.dark-mode .advantage-card {
    background: #2d3748;
    color: #e2e8f0;
}

/* Estilos específicos para el plan destacado */
.pricing-card.featured {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.pricing-card.featured .pricing-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.pricing-card.featured .pricing-header h3,
.pricing-card.featured .pricing-header .price-description {
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured .pricing-header .price-description {
    opacity: 0.95;
}

.pricing-card.featured .currency {
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured .amount {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured .price-usd {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured .price-from {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Animación de contador para precios */
.price {
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos para "Desde" en precios */
.price-from {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
}

/* Estilos para precio en USD */
.price-usd {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 400;
    margin-top: 0.25rem;
    opacity: 0.8;
}

/* Cuota de activación */
.activation-fee {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 12px;
    margin-top: 10px;
    text-align: center;
}

.activation-fee small {
    display: block;
    color: var(--secondary-color);
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.activation-fee strong {
    color: var(--primary-color);
    font-size: 1rem;
}

.activation-fee em {
    color: var(--success-color);
    font-style: normal;
    font-weight: 600;
}

/* Información de opciones de pago */
.payment-options-info {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 12px;
    margin-top: 10px;
    text-align: center;
}

.payment-options-info small {
    display: block;
    color: var(--secondary-color);
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.payment-options-info i {
    color: var(--success-color);
    margin-right: 5px;
}

/* Opciones de pago */
.payment-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.payment-option {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 80px;
}

.payment-option:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.payment-option i {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.payment-option h4 {
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0;
}

.payment-option p {
    font-size: 0.7rem;
    margin: 0;
    opacity: 0.8;
}

/* Beneficios de pago */
.payment-benefits {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 12px;
    margin-top: 10px;
    text-align: center;
}

.payment-benefits small {
    display: block;
    color: var(--secondary-color);
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.payment-benefits i {
    color: var(--success-color);
    margin-right: 5px;
}

/* Tarjetas de precio de servicios */
.service-price-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.service-price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
    transition: var(--transition);
}

.service-price-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    color: var(--white);
}

.service-price-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-price {
    margin-bottom: 0.5rem;
}

.service-price .price-from {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
}

.service-price .currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    vertical-align: top;
}

.service-price .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1;
}

.service-price .period {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.service-price-card .price-usd {
    font-size: 0.75rem;
    color: var(--secondary-color);
    font-weight: 400;
    margin-top: 0.25rem;
    opacity: 0.8;
}

.service-price-card p {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.service-details {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 8px;
    margin-bottom: 1rem;
}

.service-details small {
    color: var(--secondary-color);
    font-size: 0.75rem;
}

.service-price-card .btn {
    width: 100%;
    margin-top: auto;
}

/* Responsive para tarjetas de servicios */
@media (max-width: 768px) {
    .payment-options {
        gap: 0.5rem;
    }
    
    .payment-option {
        min-width: 70px;
        padding: 6px 10px;
    }
    
    .service-price-card {
        margin-bottom: 2rem;
    }
    
    .service-price .amount {
        font-size: 1.5rem;
    }
    
    .payment-methods {
        gap: 0.5rem;
    }
    
    .payment-method {
        min-width: 60px;
    }
    
    .payment-logo,
    .payment-icon {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .payment-option {
        min-width: 60px;
        padding: 5px 8px;
    }
    
    .service-price-card {
        padding: 1.5rem 1rem;
    }
    
    .service-price .amount {
        font-size: 1.3rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .payment-methods {
        gap: 0.25rem;
    }
    
    .payment-method {
        min-width: 50px;
        padding: 4px 6px;
    }
    
    .payment-logo,
    .payment-icon {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .payment-method span {
        font-size: 0.6rem;
    }
}

/* Contenedor de métodos de pago */
.payment-methods-container {
    margin-top: 2rem;
}

.payment-category {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.payment-category h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.payment-method {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.payment-method:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.payment-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.payment-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.payment-method:hover .payment-logo,
.payment-method:hover .payment-icon {
    transform: scale(1.1);
}

/* Logos específicos para métodos chilenos */
.webpay-logo {
    width: 30px;
    height: 30px;
    background: #0066cc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
}

.flow-logo {
    width: 30px;
    height: 30px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

.payment-method span {
    font-size: 0.7rem;
    font-weight: 500;
    color: inherit;
    text-align: center;
}

/* Responsive para métodos de pago */
@media (max-width: 768px) {
    .payment-category {
        padding: 1rem;
    }
    
    .payment-methods {
        gap: 0.5rem;
    }
    
    .payment-method {
        min-width: 70px;
        padding: 6px 10px;
    }
    
    .payment-logo,
    .payment-icon {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .payment-category {
        padding: 0.75rem;
    }
    
    .payment-category h4 {
        font-size: 1rem;
    }
    
    .payment-methods {
        gap: 0.25rem;
    }
    
    .payment-method {
        min-width: 60px;
        padding: 4px 6px;
    }
    
    .payment-logo,
    .payment-icon {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .payment-method span {
        font-size: 0.6rem;
    }
}

/* Opciones Mensuales y Anuales */
.monthly-annual-options {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 12px;
    margin-top: 10px;
    text-align: center;
}

.monthly-option {
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.monthly-option strong {
    color: #333;
    font-size: 0.95rem;
}

.annual-option strong {
    color: #28a745;
    font-size: 0.95rem;
}

.discount {
    color: #dc3545;
    font-weight: 600;
    margin-left: 5px;
}

.annual-total {
    color: #6c757d;
    font-size: 0.8rem;
    display: block;
    margin-top: 2px;
}

/* Métodos de Pago Compactos */
.payment-methods-compact {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.payment-method-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 70px;
}

.payment-method-compact:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.payment-logo-compact {
    width: 35px;
    height: 35px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.payment-icon-compact {
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.payment-method-compact:hover .payment-logo-compact,
.payment-method-compact:hover .payment-icon-compact {
    transform: scale(1.1);
}

.webpay-compact {
    width: 35px;
    height: 35px;
    background: #0066cc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.flow-compact {
    width: 35px;
    height: 35px;
    background: #ff6b35;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    font-weight: bold;
}

.payment-method-compact span {
    font-size: 0.7rem;
    font-weight: 500;
    color: inherit;
    text-align: center;
}

/* Responsive para métodos de pago compactos */
@media (max-width: 768px) {
    .payment-methods-compact {
        gap: 1rem;
        padding: 1rem;
    }
    
    .payment-method-compact {
        min-width: 60px;
        padding: 6px 8px;
    }
    
    .payment-logo-compact,
    .payment-icon-compact {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .payment-methods-compact {
        gap: 0.75rem;
        padding: 0.75rem;
    }
    
    .payment-method-compact {
        min-width: 50px;
        padding: 4px 6px;
    }
    
    .payment-logo-compact,
    .payment-icon-compact {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .payment-method-compact span {
        font-size: 0.65rem;
    }
}

/* Tarjetas de Servicios Mejoradas */
.service-price-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-price-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
    transition: var(--transition);
}

.service-price-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    color: var(--white);
}

.service-price-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-price {
    margin-bottom: 0.5rem;
}

.service-price .price-from {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 500;
    display: block;
    margin-bottom: 0.25rem;
}

.service-price .currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    vertical-align: top;
}

.service-price .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1;
}

.service-price .period {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.service-price-card .price-usd {
    font-size: 0.75rem;
    color: var(--secondary-color);
    font-weight: 400;
    margin-top: 0.25rem;
    opacity: 0.8;
}

.service-price-card p {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.service-details {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 8px;
    margin-bottom: 1rem;
}

.service-details small {
    color: var(--secondary-color);
    font-size: 0.75rem;
}

.service-card-footer {
    margin-top: auto;
    padding-top: 1rem;
}

.service-card-footer .btn {
    width: 100%;
    transition: all 0.3s ease;
}

.service-card-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Responsive para tarjetas de servicios */
@media (max-width: 768px) {
    .service-price-card {
        margin-bottom: 2rem;
    }
    
    .service-price .amount {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .service-price-card {
        padding: 1.5rem 1rem;
    }
    
    .service-price .amount {
        font-size: 1.3rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Mejorar contrastes del plan Pyme (featured) */
.pricing-card.featured {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.pricing-card.featured .pricing-header h3 {
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured .price-description {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured .currency {
    color: #00d4ff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured .amount {
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured .price-usd {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured .activation-fee {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-card.featured .activation-fee small {
    color: #1e3c72;
    font-weight: 500;
}

.pricing-card.featured .activation-fee strong {
    color: #1e3c72;
    font-weight: 600;
}

.pricing-card.featured .activation-fee em {
    color: #28a745;
    font-weight: 600;
}

.pricing-card.featured .payment-note {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-card.featured .payment-note small {
    color: #1e3c72;
    font-weight: 500;
}

.pricing-card.featured .payment-note i {
    color: #1e3c72;
}

.pricing-card.featured .monthly-option strong {
    color: #1e3c72;
    text-shadow: none;
}

.pricing-card.featured .annual-option strong {
    color: #1e3c72;
    text-shadow: none;
}

.pricing-card.featured .discount {
    color: #28a745;
    text-shadow: none;
    font-weight: 600;
}

.pricing-card.featured .annual-total {
    color: #6c757d;
    text-shadow: none;
    font-weight: 500;
}

.pricing-card.featured .pricing-features ul li {
    color: rgba(255, 255, 255, 0.95);
}

.pricing-card.featured .pricing-features ul li i {
    color: #00d4ff;
}

.pricing-card.featured .pricing-features ul li strong {
    color: #00d4ff;
}

/* Nota de pago */
.payment-note {
    background: rgba(0, 123, 255, 0.1);
    border: 1px solid rgba(0, 123, 255, 0.2);
    border-radius: 6px;
    padding: 8px 12px;
    margin: 10px 0;
    text-align: center;
}

.payment-note small {
    color: #007bff;
    font-size: 0.8rem;
    font-weight: 500;
}

.payment-note i {
    margin-right: 5px;
    color: #007bff;
}

/* Sección "Por qué elegirnos" - cambiar gradientes púrpura */
.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--white);
    transition: var(--transition);
}

@media (max-width: 768px) {
  .rotating-rectangle {
    width: 70vw !important;
    height: 70vw !important;
    max-width: 270px !important;
    max-height: 270px !important;
  }
  .rotating-rectangle::before {
    top: -2px !important;
    left: -2px !important;
    right: -2px !important;
    bottom: -2px !important;
  }
  .rotating-rectangle::after {
    top: 15px !important;
    left: 15px !important;
    right: 15px !important;
    bottom: 15px !important;
  }
}

@media (max-width: 480px) {
  .rotating-rectangle {
    width: 80vw !important;
    height: 80vw !important;
    max-width: 160px !important;
    max-height: 160px !important;
  }
  .rotating-rectangle::after {
    top: 7px !important;
    left: 7px !important;
    right: 7px !important;
    bottom: 7px !important;
  }
} 