/**
 * Service Pages Stylesheet
 * 
 * Estilos específicos para páginas de serviços
 * Alinhado com o design do index2.php
 * 
 * @version 1.0
 * @date 2025-10-03
 */

/* =========================================================
   SERVICE HERO SECTION
   ========================================================= */

.service-hero {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern-overlay.png') repeat;
    opacity: 0.03;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    z-index: 2;
}

.hero-title {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #F0D71A;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-description {
    font-family: 'Red Hat Text', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    max-width: 600px;
}

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

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* =========================================================
   GUARANTEE SECTION
   ========================================================= */

.guarantee-section {
    padding: 80px 0;
    background: #fff;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.guarantee-item {
    background: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.guarantee-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #11284B, #344966, #F0D71A);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.guarantee-item:hover {
    border-color: #F0D71A;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.guarantee-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #11284B, #1a3b5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #F0D71A;
    transition: all 0.3s ease;
}

.guarantee-item:hover .guarantee-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #F0D71A, #e6c617);
    color: #11284B;
}

.guarantee-title {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #11284B;
    margin-bottom: 12px;
}

.guarantee-description {
    font-family: 'Red Hat Text', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* =========================================================
   WHY CHOOSE US SECTION
   ========================================================= */

.why-choose-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern-overlay.png') repeat;
    opacity: 0.03;
    pointer-events: none;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.why-choose-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #F0D71A;
    transform: translateY(-5px);
}

.why-choose-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    background: #F0D71A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: #11284B;
    transition: all 0.3s ease;
}

.why-choose-item:hover .why-choose-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(240, 215, 26, 0.4);
}

.why-choose-title {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.why-choose-description {
    font-family: 'Red Hat Text', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* =========================================================
   HIGHLIGHTS SECTION
   ========================================================= */

.highlights-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.highlights-list {
    display: grid;
    gap: 25px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-item {
    display: flex;
    gap: 25px;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    border-left: 4px solid #F0D71A;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.highlight-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #11284B, #1a3b5c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #F0D71A;
}

.highlight-content {
    flex: 1;
}

.highlight-title {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #11284B;
    margin-bottom: 8px;
}

.highlight-description {
    font-family: 'Red Hat Text', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* =========================================================
   CTA SECTION
   ========================================================= */

.cta-section {
    padding: 70px 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #11284B;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-subtitle {
    font-family: 'Red Hat Text', sans-serif;
    font-size: 1.2rem;
    color: #344966;
    margin-bottom: 35px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: #F0D71A;
    color: #11284B;
}

.btn-primary:hover {
    background: #e6c617;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(240, 215, 26, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #11284B;
}

.btn-dark {
    background: #11284B;
    color: #F0D71A;
}

.btn-dark:hover {
    background: #1a3b5c;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(12, 36, 65, 0.3);
}

.btn-outline-dark {
    background: transparent;
    color: #11284B;
    border-color: #11284B;
}

.btn-outline-dark:hover {
    background: #11284B;
    color: #F0D71A;
}

/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .guarantee-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================================
   RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 480px) {
    .service-hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .guarantee-section,
    .why-choose-section,
    .highlights-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
    }
    
    .highlight-number {
        margin: 0 auto;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
}
