/* Estilos para páginas de servicios */

.service-hero {
    position: relative;
    padding: 160px 40px 80px;
    min-height: 70vh;
    background: linear-gradient(135deg, #0a1628 0%, #162d4a 100%);
    overflow: hidden;
}

.service-hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(42, 71, 143, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 168, 83, 0.1) 0%, transparent 40%);
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 60px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.service-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    flex-shrink: 0;
}

.service-hero-image {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    width: 100%;
    flex-shrink: 0;
    z-index: 1;
}

.service-hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.service-hero-image .hero-image-accent {
    position: absolute;
    top: 30px;
    left: -30px;
    right: 0;
    bottom: 0;
    border: 3px solid var(--gold);
    border-radius: 20px;
    z-index: -1;
    pointer-events: none;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 0.9rem;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--gold);
}

.service-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(212, 168, 83, 0.15);
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
}

.service-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.service-hero .highlight {
    color: var(--gold);
}

.service-hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 500px;
}

.service-hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.service-hero-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-hero:hover {
    background: var(--gold);
    color: var(--green-dark);
}

/* Problem Section */
.service-problem {
    padding: 100px 40px;
    background: var(--cream);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.problem-header h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 15px;
}

.problem-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

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

.problem-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 12px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Solution Section */
.service-solution {
    padding: 100px 40px;
    background: linear-gradient(135deg, #0a1628 0%, #162d4a 100%);
}

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

.solution-header h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.solution-header p {
    font-size: 1.1rem;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
}

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

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s ease;
}

.solution-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.solution-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #0a1628;
    border-radius: 14px;
    margin-bottom: 25px;
}

.solution-card h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 12px;
}

.solution-card > p {
    font-size: 0.95rem;
    color: var(--gray-400);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.solution-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--gray-300);
    font-size: 0.9rem;
}

.solution-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* Benefits Section */
.service-benefits {
    padding: 80px 40px;
    background: var(--cream);
    text-align: center;
}

.service-benefits h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 50px;
}

.benefits-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.benefit-item {
    text-align: center;
}

.benefit-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.benefit-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-top: 8px;
}

/* CTA Section */
.service-cta {
    padding: 100px 40px;
    background: linear-gradient(135deg, #1a365d 0%, #0f2744 100%);
    text-align: center;
}

.service-cta h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 20px;
}

.service-cta p {
    font-size: 1.15rem;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto 40px;
}

.service-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* FAQ Section */
.service-faq {
    padding: 100px 40px;
    background: linear-gradient(180deg, #051515 0%, #081f1f 100%);
}

.service-faq h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 50px;
}

.service-faq .faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-faq .faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 168, 83, 0.15);
    border-radius: 12px;
    overflow: hidden;
}

.service-faq .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    list-style: none;
}

.service-faq .faq-question::-webkit-details-marker {
    display: none;
}

.service-faq .faq-question::after {
    content: '';
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23d4a853' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.service-faq details[open] .faq-question::after {
    transform: rotate(180deg);
}

.service-faq .faq-answer {
    padding: 0 30px 24px;
    color: var(--gray-300);
    line-height: 1.7;
}

/* Contact Section */
.service-contact {
    padding: 100px 40px;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.service-contact .contact-info {
    max-width: 500px;
}

.service-contact .contact-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 40px;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-contact .contact-option {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-contact .contact-option:hover {
    border-color: var(--gold);
    transform: translateX(8px);
}

.service-contact .option-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--navy);
    border-radius: 10px;
    flex-shrink: 0;
}

.service-contact .option-content {
    flex: 1;
}

.service-contact .option-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.service-contact .option-value {
    font-weight: 600;
    color: var(--navy);
}

.service-contact .contact-form-wrapper {
    padding: 40px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
}

.service-contact .contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-contact .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-contact .form-group label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--navy);
}

.service-contact .form-group input,
.service-contact .form-group select,
.service-contact .form-group textarea {
    padding: 14px 18px;
    background: var(--cream);
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    color: var(--navy);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-contact .form-group input:focus,
.service-contact .form-group select:focus,
.service-contact .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15);
}

.service-contact .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.service-contact .btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 150px 20px 60px;
    }
    
    .service-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-hero-image {
        order: -1;
    }
    
    .service-hero-image img {
        height: 220px;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-hero-subtitle {
        font-size: 1rem;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        gap: 30px;
    }
    
    .benefit-number {
        font-size: 2.2rem;
    }
    
    .service-problem,
    .service-solution,
    .service-cta,
    .service-faq {
        padding: 60px 20px;
    }
    
    .problem-header h2,
    .solution-header h2,
    .service-cta h2,
    .service-faq h2 {
        font-size: 1.6rem;
    }
}