/* ==========================================
   SERVICE PAGE TEMPLATE
   ========================================== */


/* ==========================================
   BREADCRUMB (IMPORTADO DE CATEGORY)
   ========================================== */

.breadcrumb-section {
    background: var(--light-color);
    padding: 1.5rem 0;
    margin-top: 80px;
}

.breadcrumb-nav {
    font-size: 0.9rem;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: var(--dark-color);
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding: 0 0.5rem;
    color: #999;
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 500;
}

/* Service Hero */
.service-hero {
    position: relative;
    height: 55vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.service-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(89, 50, 2, 0.88) 0%,
        rgba(115, 55, 2, 0.78) 100%
    );
    z-index: 2;
}

.service-hero-content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 900px;
}

.service-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.service-hero-content h1 {
    color: white;
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    margin-bottom: 1.25rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.service-hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.5;
}

.service-hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Service Description Section */
.service-description-section {
    padding: 6rem 0;
    background: white;
}

.service-description-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 4rem;
}

.description-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.description-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.description-highlight {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--light-color);
    padding: 2rem;
    margin-top: 2.5rem;
}

.description-highlight i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.description-highlight h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.description-highlight p {
    margin: 0;
    font-size: 1rem;
    color: #666;
}

.description-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    border: 2px solid var(--light-color);
    padding: 2rem;
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow);
}

.info-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-card h3 i {
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.info-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

.highlight-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-color: var(--secondary-color);
}

.highlight-card h3,
.highlight-card p {
    color: white;
}

.highlight-card h3 i {
    color: white;
}

.highlight-card .btn-outline {
    margin-top: 1rem;
    border-color: white;
    color: white;
}

.highlight-card .btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

.simple-list {
    list-style: none;
    margin: 0;
}

.simple-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #666;
}

.simple-list i {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

/* What's Included Section */
.whats-included-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.included-item {
    background: white;
    padding: 2.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.included-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.included-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.included-icon i {
    font-size: 2rem;
    color: white;
}

.included-item h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.included-item p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.benefit-card {
    position: relative;
    padding: 2.5rem;
    background: var(--light-color);
    transition: var(--transition);
}

.benefit-card:hover {
    background: white;
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.benefit-number {
    position: absolute;
    top: -20px;
    left: 2.5rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

.benefit-card h3 {
    font-size: 1.375rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-item:last-child .step-line {
    display: none;
}

.step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(89, 50, 2, 0.3);
    flex-shrink: 0;
}

.step-line {
    width: 3px;
    flex: 1;
    background: #ddd;
    margin-top: 1rem;
}

.step-details {
    background: white;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.step-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.step-details p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Service CTA Section */
.service-cta-section {
    padding: 4rem 0;
    background: white;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 4rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    box-shadow: var(--shadow-hover);
}

.cta-content h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.cta-content p {
    color: white;
    font-size: 1.125rem;
    opacity: 0.95;
    margin: 0;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-actions .btn {
    width: 100%;
    justify-content: center;
}

.cta-actions .btn-outline {
    background: transparent;
    border-color: white;
    color: white;
}

.cta-actions .btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* Service FAQ Section */
.service-faq-section {
    padding: 6rem 0;
    background: var(--light-color);
}

/* Related Services */
.related-services-section {
    padding: 6rem 0;
    background: white;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.related-card {
    background: white;
    border: 2px solid var(--light-color);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
}

.related-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.related-icon {
    width: 80px;
    height: 80px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.related-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.related-card:hover .related-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.related-card:hover .related-icon i {
    color: white;
}

.related-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.related-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.btn-related {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-related:hover {
    color: var(--secondary-color);
    gap: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .service-description-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-box {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-hero {
        height: 50vh;
        min-height: 400px;
    }
    
    .service-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .included-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .cta-box {
        padding: 2.5rem;
    }
}

@media (max-width: 480px) {
    .info-card,
    .included-item,
    .benefit-card,
    .step-details {
        padding: 1.5rem;
    }
    
    .cta-box {
        padding: 2rem;
    }
}