/**
 * Pricing Page V2 - Modern Clean Design
 * 
 * Design Philosophy:
 * - Clean white hero (no video, centered title)
 * - Modern pricing cards with clear hierarchy
 * - Bags&Go brand colors (Orange FF914D, Dark 121E35)
 * - Trust indicators and guarantee section
 * - Responsive 2-column grid → 1 column mobile
 * 
 * Colors:
 * - Primary Orange: #FF914D
 * - Primary Hover: #ff7a2e
 * - Dark Navy: #121E35
 * - White: #FFFFFF
 * - Light Gray BG: #f8f9fa
 * - Border: #e9ecef
 */

/* ==========================================================================
   PRICING PAGE BASE
   ========================================================================== */

.pricing-page {
    background: #ffffff;
    min-height: 100vh;
    /* No padding-top - el body global de 120px ya aplica */
}

/* ==========================================================================
   HERO SECTION - White Centered Design
   ========================================================================== */

.pricing-hero-white {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 150px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Subtle pattern background */
.pricing-hero-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 145, 77, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(18, 30, 53, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-hero-white .hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Badge */
.pricing-hero-white .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 145, 77, 0.1);
    border: 2px solid rgba(255, 145, 77, 0.2);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #FF914D;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-hero-white .badge-icon {
    font-size: 1.2rem;
}

/* Hero Title */
.pricing-hero-white .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #121E35;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.pricing-hero-white .title-highlight {
    display: block;
    color: #FF914D;
    margin-top: 10px;
}

/* Hero Subtitle */
.pricing-hero-white .hero-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin: 0 0 40px 0;
    line-height: 1.6;
}

/* Hero Features Inline */
.pricing-hero-white .hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.pricing-hero-white .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #495057;
    font-weight: 500;
}

.pricing-hero-white .feature-icon {
    font-size: 1.2rem;
}

/* Hero CTA */
.pricing-hero-white .hero-cta {
    margin-top: 30px;
}

.pricing-hero-white .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: #FF914D;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 145, 77, 0.3);
}

.pricing-hero-white .cta-text {
    color: white;
}

.pricing-hero-white .cta-button:hover {
    background: #ff7a2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 145, 77, 0.4);
}

.pricing-hero-white .cta-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.pricing-hero-white .cta-button:hover .cta-icon {
    transform: translateX(5px);
}

/* ==========================================================================
   PRICING CARDS SECTION
   ========================================================================== */

.pricing-section-v2 {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-container-v2 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.pricing-section-v2 .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-section-v2 .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #121E35;
    margin: 0 0 15px 0;
}

.pricing-section-v2 .section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
}

/* Pricing Grid */
.pricing-grid-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Pricing Card */
.pricing-card-v2 {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Featured Card */
.pricing-card-v2.featured {
    border-color: #FF914D;
    box-shadow: 0 4px 25px rgba(255, 145, 77, 0.2);
}

.pricing-card-v2.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF914D 0%, #ff7a2e 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(255, 145, 77, 0.3);
}

/* Card Header */
.pricing-card-v2 .card-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-card-v2 .service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF914D 0%, #ff7a2e 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 145, 77, 0.3);
}

.pricing-card-v2 .service-icon svg {
    color: white;
    width: 36px;
    height: 36px;
}

.pricing-card-v2 .service-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #121E35;
    margin: 0 0 10px 0;
}

.pricing-card-v2 .service-subtitle {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
}

/* Pricing Display */
.pricing-card-v2 .price-display {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 30px;
}

.pricing-card-v2 .price-from {
    display: block;
    font-size: 0.85rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.pricing-card-v2 .price-amount {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: #FF914D;
    line-height: 1;
    margin-bottom: 5px;
}

.pricing-card-v2 .price-unit {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
}

.pricing-card-v2 .price-note {
    margin-top: 15px;
    padding: 12px;
    background: rgba(255, 145, 77, 0.05);
    border-radius: 10px;
}

.pricing-card-v2 .price-note-text {
    font-size: 0.85rem;
    color: #495057;
    margin: 0;
}

/* Features List */
.pricing-card-v2 .features-section {
    flex: 1;
    margin-bottom: 30px;
}

.pricing-card-v2 .features-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #121E35;
    margin: 0 0 20px 0;
}

.pricing-card-v2 .features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card-v2 .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #495057;
}

.pricing-card-v2 .feature-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #28a745;
    margin-top: 2px;
}

.pricing-card-v2 .feature-item.special {
    color: #FF914D;
    font-weight: 600;
}

/* Card CTA */
.pricing-card-v2 .card-cta {
    margin-top: auto;
}

.pricing-card-v2 .cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 30px;
    background: #FF914D;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #FF914D;
}

.pricing-card-v2 .cta-text {
    color: inherit;
}

.pricing-card-v2 .cta-button:hover {
    background: #ff7a2e;
    border-color: #ff7a2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 145, 77, 0.3);
}

.pricing-card-v2 .cta-arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.pricing-card-v2 .cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

/* Secondary card style */
.pricing-card-v2:not(.featured) .cta-button {
    background: white;
    color: #FF914D;
}

.pricing-card-v2:not(.featured) .cta-button:hover {
    background: #FF914D;
    color: white;
}

/* ==========================================================================
   GUARANTEE SECTION
   ========================================================================== */

.guarantee-section-v2 {
    padding: 80px 0;
    background: white;
}

.guarantee-section-v2 .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.guarantee-section-v2 .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #121E35;
    margin: 0 0 15px 0;
}

.guarantee-section-v2 .section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
}

/* Guarantee Grid */
.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.guarantee-item {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.guarantee-item .guarantee-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF914D 0%, #ff7a2e 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 145, 77, 0.3);
}

.guarantee-item .guarantee-icon svg {
    color: white;
    width: 35px;
    height: 35px;
}

.guarantee-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #121E35;
    margin: 0 0 15px 0;
}

.guarantee-item p {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   FAQ SECTION (Compact)
   ========================================================================== */

.pricing-faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-faq-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-faq-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #121E35;
    margin: 0 0 15px 0;
}

.pricing-faq-section .section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
}

/* FAQ Container */
.pricing-faq-section .faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ Items */
.pricing-faq-section .faq-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-faq-section .faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.pricing-faq-section .faq-item:hover {
    border-color: #FF914D;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.pricing-faq-section .faq-item.active {
    border-color: #FF914D;
    box-shadow: 0 4px 20px rgba(255, 145, 77, 0.15);
}

/* FAQ Question Button */
.pricing-faq-section .faq-question {
    width: 100%;
    padding: 25px 60px 25px 25px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: #121E35;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: inherit;
    position: relative;
}

.pricing-faq-section .faq-question:hover {
    background: rgba(255, 145, 77, 0.05);
}

.pricing-faq-section .faq-item.active .faq-question {
    background: rgba(255, 145, 77, 0.1);
    color: #FF914D;
}

/* FAQ Toggle Icon */
.pricing-faq-section .faq-toggle {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    font-weight: 300;
    color: #FF914D;
    transition: transform 0.3s ease;
    line-height: 1;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-faq-section .faq-item.active .faq-toggle {
    transform: translateY(-50%) rotate(45deg);
}

/* FAQ Answer */
.pricing-faq-section .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f8f9fa;
}

.pricing-faq-section .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 25px;
    border-top: 1px solid #e9ecef;
}

.pricing-faq-section .faq-answer p {
    margin: 0;
    line-height: 1.7;
    color: #495057;
    font-size: 0.95rem;
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */

.pricing-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #121E35 0%, #1a2d4d 100%);
    color: white;
    text-align: center;
}

.pricing-cta-section .cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-cta-section .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
}

.pricing-cta-section .cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 40px 0;
}

/* CTA Buttons */
.pricing-cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pricing-cta-section .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pricing-cta-section .cta-text {
    color: inherit;
}

.pricing-cta-section .cta-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.pricing-cta-section .cta-btn:hover .cta-icon {
    transform: translateX(5px);
}

.pricing-cta-section .cta-btn-primary {
    background: #FF914D;
    color: white;
    border-color: #FF914D;
}

.pricing-cta-section .cta-btn-primary:hover {
    background: #ff7a2e;
    border-color: #ff7a2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 145, 77, 0.4);
}

.pricing-cta-section .cta-btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.pricing-cta-section .cta-btn-secondary:hover {
    background: white;
    color: #121E35;
    transform: translateY(-2px);
}

.pricing-cta-section .cta-price {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 3px;
}

/* Contact Options */
.pricing-cta-section .contact-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pricing-cta-section .contact-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 15px 0;
}

.pricing-cta-section .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pricing-cta-section .contact-link:hover {
    color: #FF914D;
    transform: translateY(-2px);
}

.pricing-cta-section .contact-icon {
    font-size: 1.3rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Tablet (992px and below) */
@media (max-width: 992px) {
    /* Hero */
    .pricing-hero-white .hero-title {
        font-size: 2.8rem;
    }

    .pricing-hero-white .hero-subtitle {
        font-size: 1.1rem;
    }

    /* Pricing Grid: 2 columns → 1 column */
    .pricing-grid-v2 {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    /* Guarantee Grid: 3 columns → 2 columns */
    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    /* Sections */
    .pricing-section-v2,
    .guarantee-section-v2,
    .pricing-faq-section,
    .pricing-cta-section {
        padding: 60px 0;
    }

    .pricing-section-v2 .section-title,
    .guarantee-section-v2 .section-title,
    .pricing-faq-section .section-title,
    .pricing-cta-section .cta-title {
        font-size: 2rem;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    /* Hero */
    .pricing-hero-white {
        padding: 105px 0; /* Aumentado para mobile */
    }

    .pricing-hero-white .hero-title {
        font-size: 2.2rem;
    }

    .pricing-hero-white .hero-subtitle {
        font-size: 1rem;
    }

    .pricing-hero-white .hero-cta {
        display: flex;
        justify-content: center; /* Centrar el botón */
    }

    .pricing-hero-white .hero-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    /* Cards */
    .pricing-card-v2 {
        padding: 30px 25px;
    }

    .pricing-card-v2 .service-title {
        font-size: 1.5rem;
    }

    .pricing-card-v2 .price-amount {
        font-size: 3rem;
    }

    /* Guarantee Grid: 2 columns → 1 column */
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .guarantee-item {
        padding: 30px 25px;
    }

    /* CTA Section */
    .pricing-cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .pricing-cta-section .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center; /* Centrar contenido */
    }
    
    .pricing-cta-section .cta-title {
        font-size: 2rem;
    }
    
    .pricing-cta-section .cta-subtitle {
        font-size: 1rem;
    }

    .pricing-cta-section .contact-options {
        flex-direction: column;
        gap: 15px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .pricing-hero-white .hero-title {
        font-size: 1.8rem;
    }

    .pricing-hero-white .hero-subtitle {
        font-size: 0.95rem;
    }

    .pricing-hero-white .hero-cta {
        display: flex;
        justify-content: center; /* Centrar el botón */
    }

    .pricing-hero-white .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center; /* Centrar contenido del botón */
    }

    .pricing-card-v2 .price-amount {
        font-size: 2.5rem;
    }
    
    .pricing-card-v2 .cta-button {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .pricing-cta-section .cta-btn {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .pricing-section-v2 .section-title,
    .guarantee-section-v2 .section-title,
    .pricing-faq-section .section-title {
        font-size: 1.8rem;
    }

    .pricing-cta-section .cta-title {
        font-size: 1.8rem;
    }
}
