/* ==================== */
/* 1. GERAL             */
/* ==================== */

body {
    background-color: var(--color-light);
    color: var(--color-black);
    font-family: var(--font-primary);
}

.site-wrapper {
    overflow: hidden;
    position: relative;
}

main {
    padding-bottom: 50px;
    padding-top: 50px;
}

h2 {
    line-height: 1.5;
}

h1{
    color:var(--color-primary)
}

.container p{
    font-style: italic;
}

/* ==================== */
/* 2. HEADER            */
/* ==================== */

#clientName {
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    overflow: visible;
    width: fit-content;
}

#clientName::after {
    background-color: var(--color-primary);
    border-radius: 2px;
    bottom: -1px;
    content: '';
    height: 4px;
    left: 0;
    position: absolute;
    width: 100%;
}

/* ==================== */
/* 3. SERVIÇOS             */
/* ==================== */

.card-img-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-icon-circle {
    width: 60px;
    height: 60px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -30px auto 15px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: var(--color-primary);
    font-size: var(--fs-h3);
}

.card-body h3 {
    font-size: var(--fs-h3);
    font-weight: 700;
    margin-bottom: 15px;
}

.card-body p {
    color: var(--color-text-muted);
    font-size: var(--fs-body-sm);
    padding: 0 20px;
}

.view-service {
    text-decoration: none;
    font-weight: 600;
    color: var(--color-primary);
    font-size: var(--fs-body-sm);
    transition: 0.3s;
}

.view-service:hover {
    text-decoration: underline;
}

.cta-banner {
    background-color: var(--color-primary);
    padding: 60px 0;
    position: relative;
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%);
    background-size: 20px 20px;
}

.service-card {
    background-color: var(--color-white);
    border: 1px solid #eee;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    position: relative;
    padding: 0 0 30px 0;
    /* Espaçamento inferior */
}

.service-card h3 {
    color: var(--color-primary);
}

/* ==================== */
/* 4. DESTAQUE          */
/* ==================== */

.highlights-section {
    margin: 0 auto;
    max-width: 1200px;
    opacity: 0;
    text-align: center;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.highlight-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.4rem !important;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.highlights-section h2 {
    color: #333;
    font-size: var(--fs-h2);
}
.icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(13, 110, 253, 0.08);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-h3);
    transition: 0.3s ease;
}

.highlight-card:hover .icon-box {
    background-color: var(--color-primary);
    color: #fff;
}

.highlight-text h3 {
    margin-top: 10px;
    color: #222;
}

.highlight-text p {
    font-size: var(--fs-body-sm);
    line-height: 1.6;
}
/* ==================== */
/* 5. ANIMAÇÕES            */
/* ==================== */

.scroll-effect {
    opacity: 0;
    transform: translateY(30px);
}

.scroll-effect.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-fade-in {
    transform: scale(0.9);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

/* ==================== */
/* 6. RESPONSIVIDADE       */
/* ==================== */

@media (max-width: 768px) {
    .services-section {
        flex-direction: column;
        margin-top: 40px;
        padding: 40px 15px;
    }

    .highlights-section {
        padding: 0 15px;
    }

    h2{
        line-height: 1.5;
    }
}