/* Estilos específicos para a página de serviço */
.service-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-hero-content {
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.service-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.service-hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.service-hero .btn {
    background: #c41e3a;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.service-hero .btn:hover {
    background: #9b1c2e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px #00000033;
}

.breadcrumb {
    padding: 20px;
    background: #f8f8f8;
}

.breadcrumb-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #c41e3a;
}

.breadcrumb .separator {
    color: #999;
}

.service-intro {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-intro-text h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
}

.service-intro-text h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 5px;
    background: #c41e3a;
    border-radius: 3px;
}

.service-intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.service-intro-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 30px #0000001A;
}

.service-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.service-intro-image:hover img {
    transform: scale(1.05);
}

.benefits-section {
    padding: 80px 20px;
    background: #f8f8f8;
}

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

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

.section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #c41e3a;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

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

.benefit-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px #0000000D;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #c41e3a, #e63946);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px #0000001A;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #c41e3a, #e63946);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 25px;
}

.benefit-title {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
}

.benefit-description {
    color: #666;
    line-height: 1.6;
}

.why-choose-section {
    padding: 80px 20px;
}

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

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px #0000000D;
    transition: all 0.3s ease;
    border-left: 5px solid #c41e3a;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px #0000001A;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: #c41e3a1A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #c41e3a;
    margin-bottom: 20px;
}

.why-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.why-description {
    color: #666;
    line-height: 1.6;
}

.plans-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f8f8, #fff);
}

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

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

.plan-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px #0000000D;
    transition: all 0.3s ease;
    position: relative;
}

.plan-card.featured {
    transform: scale(1.05);
    box-shadow: 0 20px 40px #00000026;
}

.plan-card.featured::before {
    content: 'MAIS ESCOLHIDO';
    position: absolute;
    top: 15px;
    right: -30px;
    background: #c41e3a;
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 1;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px #00000026;
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-header {
    background: linear-gradient(135deg, #c41e3a, #e63946);
    padding: 30px;
    text-align: center;
    color: white;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.plan-hours {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.plan-description {
    font-size: 0.9rem;
    opacity: 0.9;
}

.plan-body {
    padding: 30px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #555;
}

.plan-features i {
    color: #c41e3a;
    font-size: 0.9rem;
}

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

.plan-button {
    background: linear-gradient(135deg, #c41e3a, #e63946);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.plan-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px #c41e3a4D;
}

.custom-plan {
    background: #c41e3a0D;
    border: 2px dashed #c41e3a;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 30px;
}

.custom-plan h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.custom-plan p {
    color: #666;
    margin-bottom: 25px;
}

.custom-button {
    background: transparent;
    color: #c41e3a;
    border: 2px solid #c41e3a;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.custom-button:hover {
    background: #c41e3a;
    color: white;
}

.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #c41e3a, #e63946);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://picsum.photos/seed/cta-pattern/1920/600.jpg') center/cover;
    opacity: 0.1;
}

.final-cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.btn-primary {
    background: white;
    color: #c41e3a;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px #00000033;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-secondary:hover {
    background: white;
    color: #c41e3a;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2.5rem;
    }

    .service-intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.featured {
        transform: scale(1);
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .final-cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}