/* ========================================
   FAXINA PAGE - Estilos Específicos
   ======================================== */

/* Hero Section */
.faxina-hero {
    position: relative;
    background: linear-gradient(135deg, #1a365d 0%, #0077cc 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 60px 0;
    overflow: hidden;
}

.faxina-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/hero-bg.jpg') center/cover;
    opacity: 0.15;
}

.faxina-hero .overlay {
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(0, 119, 204, 0.85) 100%);
}

.faxina-hero .container {
    position: relative;
    z-index: 2;
}

.faxina-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faxina-hero .logo-container {
    margin-bottom: 30px;
}

.faxina-hero .hero-logo {
    height: 70px;
    transition: transform 0.3s;
}

.faxina-hero .hero-logo:hover {
    transform: scale(1.05);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: #4ade80;
}

.faxina-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faxina-hero h1 span {
    color: #4ade80;
}

.faxina-hero p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.btn-pulse {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
    50% { box-shadow: 0 0 0 15px rgba(74, 222, 128, 0); }
}

.hero-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.hero-guarantee i {
    color: #4ade80;
}


/* ========================================
   Services Included Section
   ======================================== */
.services-included {
    padding: 100px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    color: #0077cc;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    color: #1a365d;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header.light h2 {
    color: #fff;
}

.section-header.light .subtitle {
    color: #4ade80;
}

.section-desc {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-item {
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0077cc, #4ade80);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 119, 204, 0.15);
    border-color: #0077cc;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0077cc, #005fa3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #4ade80, #22c55e);
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
}

.service-item h3 {
    color: #1a365d;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-item p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.services-cta {
    text-align: center;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #0077cc;
    border: 2px solid #0077cc;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #0077cc;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 119, 204, 0.3);
}

/* ========================================
   Transformation Section
   ======================================== */
.transformation {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a365d 0%, #0077cc 100%);
}

.transform-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.transform-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    transition: all 0.4s ease;
}

.transform-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.transform-card:hover {
    transform: scale(1.05);
    z-index: 2;
}

.transform-card:hover::after {
    opacity: 1;
}

.transform-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ========================================
   Why Choose Section
   ======================================== */
.why-choose {
    padding: 100px 0;
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 119, 204, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e0f2fe, #bae6fd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, #0077cc, #005fa3);
}

.benefit-icon i {
    font-size: 1.8rem;
    color: #0077cc;
    transition: color 0.4s ease;
}

.benefit-card:hover .benefit-icon i {
    color: #fff;
}

.benefit-card h3 {
    color: #1a365d;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ========================================
   How It Works Section
   ======================================== */
.how-it-works {
    padding: 100px 0;
    background: #fff;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0077cc, #005fa3);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 119, 204, 0.3);
}

.step-content h3 {
    color: #1a365d;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

.step-arrow {
    color: #0077cc;
    font-size: 1.5rem;
    opacity: 0.5;
}

.steps-cta {
    text-align: center;
}

.steps-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
    padding: 100px 0;
    background: #f8fafc;
}

.testimonials-section .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.testimonials-section .testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
}

.testimonials-section .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 119, 204, 0.1);
    border-color: #0077cc;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-stars i {
    margin-right: 3px;
}

.testimonials-section .testimonial-text {
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #64748b;
    font-size: 0.9rem;
}

.testimonial-author i {
    font-size: 1.5rem;
    color: #0077cc;
}

.google-reviews {
    text-align: center;
}

.google-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1a365d;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
}

.google-link:hover {
    color: #0077cc;
}

.google-link i {
    font-size: 1.3rem;
    color: #4285f4;
}


/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    padding: 100px 0;
    background: #fff;
}

.faq-section .faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-section .faq-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-section .faq-item:hover {
    border-color: #0077cc;
}

.faq-section .faq-question {
    padding: 25px 30px;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-section .faq-item.active .faq-question {
    background: #0077cc;
    color: #fff;
}

.faq-section .faq-question h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a365d;
    transition: color 0.3s;
}

.faq-section .faq-item.active .faq-question h3 {
    color: #fff;
}

.faq-section .faq-icon {
    transition: transform 0.3s ease;
    color: #0077cc;
}

.faq-section .faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #fff;
}

.faq-section .faq-answer {
    background: #f8fafc;
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-section .faq-item.active .faq-answer {
    max-height: 300px;
    padding: 25px 30px;
}

.faq-section .faq-answer p {
    margin: 0;
    color: #475569;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========================================
   Final CTA Section
   ======================================== */
.final-cta {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #1a365d 0%, #0077cc 100%);
    text-align: center;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.final-cta .overlay {
    background: transparent;
}

.final-cta .cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(239, 68, 68, 0.9);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 30px;
    animation: urgencyPulse 2s infinite;
}

@keyframes urgencyPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.final-cta h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.6;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #4ade80;
    color: #1a365d;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(74, 222, 128, 0.4);
}

.btn-cta:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.3);
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.cta-trust i {
    color: #4ade80;
}


/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .transform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .faxina-hero h1 {
        font-size: 2.5rem;
    }
    
    .faxina-hero p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .testimonials-section .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .step {
        max-width: 100%;
    }
    
    .final-cta h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .faxina-hero {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .faxina-hero h1 {
        font-size: 2rem;
    }
    
    .faxina-hero p {
        font-size: 1rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
    
    .services-included,
    .transformation,
    .why-choose,
    .how-it-works,
    .testimonials-section,
    .faq-section {
        padding: 70px 0;
    }
    
    .section-header h2 {
        font-size: 1.9rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-item {
        padding: 30px 25px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .transform-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .testimonials-section .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-section .testimonial-card {
        padding: 25px;
    }
    
    .faq-section .faq-question {
        padding: 20px;
    }
    
    .faq-section .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .final-cta {
        padding: 80px 0;
    }
    
    .final-cta h2 {
        font-size: 1.8rem;
    }
    
    .final-cta p {
        font-size: 1rem;
    }
    
    .btn-cta {
        padding: 16px 35px;
        font-size: 1rem;
    }
    
    .cta-trust {
        flex-direction: column;
        gap: 15px;
    }
    
    .urgency-badge {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .faxina-hero h1 {
        font-size: 1.7rem;
    }
    
    .faxina-hero .hero-logo {
        height: 50px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .service-icon {
        width: 65px;
        height: 65px;
    }
    
    .service-icon i {
        font-size: 1.6rem;
    }
    
    .service-item h3 {
        font-size: 1.15rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .transform-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}
