/* ========================================
   PÓS-OBRA PAGE - Estilos Específicos
   ======================================== */

:root {
    --obra-primary: #f59e0b;
    --obra-secondary: #d97706;
    --obra-dark: #78350f;
    --obra-light: #fef3c7;
}

/* Hero Section */
.posobra-hero {
    position: relative;
    background: linear-gradient(135deg, #78350f 0%, #d97706 50%, #f59e0b 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 60px 0;
    overflow: hidden;
}

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

.posobra-hero .overlay {
    background: linear-gradient(135deg, rgba(120, 53, 15, 0.92) 0%, rgba(217, 119, 6, 0.88) 100%);
}

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

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

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

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

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

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

.posobra-hero .hero-badge i {
    color: #fef3c7;
}

.posobra-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);
}

.posobra-hero h1 span {
    color: #fef3c7;
}

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

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

.posobra-hero .btn-primary {
    background: #fff;
    color: var(--obra-dark);
    font-weight: 700;
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
}

.posobra-hero .btn-primary:hover {
    background: #fef3c7;
    transform: translateY(-3px);
}

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

.posobra-hero .hero-guarantee i {
    color: #fef3c7;
}


/* ========================================
   The Problem Section
   ======================================== */
.the-problem {
    padding: 100px 0;
    background: #fff;
}

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

.section-header .subtitle {
    color: var(--obra-primary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

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

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

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

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

.section-header.light .section-desc {
    color: rgba(255, 255, 255, 0.9);
}

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

.problem-item {
    background: #fef3c7;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.problem-item:hover {
    transform: translateY(-10px);
    border-color: var(--obra-primary);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
}

.problem-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--obra-primary), var(--obra-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.problem-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.problem-item h3 {
    color: var(--obra-dark);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.problem-item p {
    color: #78350f;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
}

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

.problem-cta p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

.btn-secondary:hover {
    background: var(--obra-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

/* ========================================
   Our Solution Section
   ======================================== */
.our-solution {
    padding: 100px 0;
    background: linear-gradient(135deg, #78350f 0%, #d97706 100%);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.solution-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.solution-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.solution-card:hover .solution-icon {
    background: #fff;
}

.solution-icon i {
    font-size: 1.8rem;
    color: #fff;
    transition: color 0.4s ease;
}

.solution-card:hover .solution-icon i {
    color: var(--obra-primary);
}

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

.solution-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
}


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

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.comparison-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.comparison-card .card-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--obra-primary);
    color: #fff;
    padding: 8px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
}

.comparison-card .card-header {
    text-align: center;
    margin-bottom: 30px;
}

.comparison-card .card-header i {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.pro-card .card-header i {
    color: var(--obra-primary);
}

.basic-card .card-header i {
    color: #94a3b8;
}

.comparison-card .card-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
    color: #475569;
}

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

.feature-list li i {
    margin-top: 3px;
    flex-shrink: 0;
}

.pro-card .feature-list li i {
    color: #22c55e;
}

.feature-list.negative li i {
    color: #ef4444;
}

.comparison-warning {
    background: #fef3c7;
    border-left: 4px solid var(--obra-primary);
    padding: 20px 25px;
    border-radius: 0 10px 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-warning i {
    color: var(--obra-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.comparison-warning p {
    margin: 0;
    color: var(--obra-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   Our Process Section
   ======================================== */
.our-process {
    padding: 100px 0;
    background: #fff;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--obra-primary), var(--obra-secondary));
    border-radius: 3px;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--obra-primary), var(--obra-secondary));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
    position: relative;
    z-index: 1;
}

.step-content {
    background: #f8fafc;
    padding: 25px 30px;
    border-radius: 15px;
    flex: 1;
    transition: all 0.3s ease;
}

.step-content:hover {
    background: #fef3c7;
}

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

.step-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

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

.process-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--obra-primary);
    color: #fff;
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
}

.process-cta .btn-primary:hover {
    background: var(--obra-secondary);
}


/* ========================================
   Work Types Section
   ======================================== */
.work-types {
    padding: 100px 0;
    background: #f8fafc;
}

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

.type-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.type-card:hover {
    border-color: var(--obra-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.15);
}

.type-card i {
    font-size: 2.5rem;
    color: var(--obra-primary);
    margin-bottom: 15px;
    display: block;
}

.type-card h3 {
    color: #1a1a2e;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.type-card p {
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
}

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

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

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(120, 53, 15, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ========================================
   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(245, 158, 11, 0.15);
    border-color: var(--obra-primary);
}

.testimonial-stars {
    color: var(--obra-primary);
    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: var(--obra-primary);
}

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

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

.google-link:hover {
    color: var(--obra-primary);
}

.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: var(--obra-primary);
}

.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: var(--obra-primary);
    color: #fff;
}

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

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

.faq-section .faq-icon {
    transition: transform 0.3s ease;
    color: var(--obra-primary);
}

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

.faq-section .faq-answer {
    background: #fef3c7;
    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: var(--obra-dark);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========================================
   Final CTA Section
   ======================================== */
.final-cta {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #78350f 0%, #d97706 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;
}

.final-cta .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: #fff;
    color: var(--obra-dark);
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    background: #fef3c7;
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 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: #fef3c7;
}


/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1200px) {
    .problems-grid,
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .types-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .posobra-hero h1 {
        font-size: 2.5rem;
    }
    
    .posobra-hero p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-section .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
    
    .final-cta h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .posobra-hero {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .posobra-hero h1 {
        font-size: 2rem;
    }
    
    .posobra-hero p {
        font-size: 1rem;
    }
    
    .posobra-hero .hero-badge {
        font-size: 0.8rem;
        padding: 10px 18px;
    }
    
    .the-problem,
    .our-solution,
    .comparison-section,
    .our-process,
    .work-types,
    .gallery-section,
    .testimonials-section,
    .faq-section {
        padding: 70px 0;
    }
    
    .section-header h2 {
        font-size: 1.9rem;
    }
    
    .problems-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .problem-item,
    .solution-card {
        padding: 30px 20px;
    }
    
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .type-card {
        padding: 25px 15px;
    }
    
    .type-card i {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .testimonials-section .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-section .testimonial-card {
        padding: 25px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-content {
        width: 100%;
    }
    
    .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;
    }
    
    .final-cta .urgency-badge {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
    
    .comparison-warning {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .posobra-hero h1 {
        font-size: 1.7rem;
    }
    
    .posobra-hero .hero-logo {
        height: 50px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .problem-icon,
    .solution-icon {
        width: 60px;
        height: 60px;
    }
    
    .problem-icon i,
    .solution-icon i {
        font-size: 1.5rem;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .comparison-card {
        padding: 30px 20px;
    }
    
    .comparison-card .card-badge {
        font-size: 0.65rem;
        padding: 6px 35px;
    }
}
