body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
}

.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(74, 71, 128, 1), rgba(45, 45, 45, 1));
    padding: 0 20px
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1
}

.page-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(128, 125, 194, .1) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(128, 125, 194, .05) 0%, transparent 50%);
    background-size: 100px 100px
}

.page-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(128, 125, 194, .1) 0%, transparent 100%)
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(128, 125, 194, .2);
    border: 1px solid rgba(128, 125, 194, .3);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px)
}

.page-hero-badge-icon {
    font-size: 16px
}

.page-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2
}

.page-hero-highlight {
    color: var(--bronze);
    position: relative
}

.page-hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: .9
}

.page-hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap
}

.page-hero-stat {
    text-align: center
}

.page-hero-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--bronze);
    margin-bottom: 5px
}

.page-hero-stat-label {
    font-size: .9rem;
    opacity: .8
}

.services-grid-section {
    padding: 80px 0;
    background: var(--cream-light);
}

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

.services-grid-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 15px
}

.services-grid-subtitle {
    font-size: 1.1rem;
    color: var(--brown-dark-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px var(--shadow-strong);
    transition: all .3s ease;
    border: 1px solid var(--gray-light);
    position: relative;
    overflow: hidden
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-strong);
}

.service-card.featured {
    border: 2px solid var(--bronze-light);
    background: linear-gradient(135deg, var(--white), var(--cream-light-hover));
}

.service-card.featured:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bronze), var(--bronze-light));
}

.service-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--bronze), var(--bronze-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px
}

.service-card-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.service-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 15px;
    line-height: 1.3
}

.service-card-description {
    color: var(--brown-dark-light);
    line-height: 1.6;
    margin-bottom: 20px
}

.service-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px
}

.service-card-features li {
    color: var(--brown-dark-light);
    position: relative;
    padding: 8px 0 8px 20px
}

.service-card-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--bronze);
    font-weight: 700
}

.service-card-price {
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
    text-align: center
}

.service-card-price-label {
    display: block;
    font-size: .9rem;
    color: var(--brown-dark-light);
    margin-bottom: 5px
}

.service-card-price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bronze);
}

/* Service Card com Imagem */
.service-card-image {
    padding: 0;
    position: relative;
    min-height: 350px;
    overflow: hidden;
}

.service-card-image .service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.service-card-image:hover .service-image {
    transform: scale(1.1);
}

.service-card-image .service-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px;
    z-index: 2;
}

.service-card-image .service-image-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.services-process-section {
    padding: 80px 0;
    background: var(--white);
}

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

.services-process-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 15px
}

.services-process-subtitle {
    font-size: 1.1rem;
    color: var(--brown-dark-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6
}

.services-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto
}

.process-step {
    text-align: center;
    position: relative
}

.process-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--bronze), var(--bronze-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(128, 125, 194, .3);
}

.process-step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 15px
}

.process-step-description {
    color: var(--brown-dark-light);
    line-height: 1.6
}

.services-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(74, 71, 128, 1), rgba(45, 45, 45, 1));
    color: var(--white);
    text-align: center
}

.services-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px
}

.services-cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: .9
}

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

.services-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all .3s ease;
    border: 2px solid transparent
}

.services-cta-btn.primary {
    background: linear-gradient(135deg, var(--bronze), var(--bronze-light));
    color: var(--white);
}

.services-cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(128, 125, 194, .3);
}

.services-cta-btn.secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, .3);
}

.services-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .5);
}

.services-cta-btn svg {
    width: 20px;
    height: 20px
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 50vh;
        padding: 40px 0
    }

    .page-hero-stats {
        gap: 20px
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .service-card {
        padding: 25px
    }

    .services-process-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .services-cta-buttons {
        flex-direction: column;
        align-items: center
    }

    .services-cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center
    }
}

@media (max-width: 480px) {

    .page-hero-title,
    .services-grid-title,
    .services-process-title,
    .services-cta-title {
        font-size: 2rem
    }

    .service-card {
        padding: 20px
    }
}