/* CSS Document */
.imgx {
    position: relative;
    display: block;
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
}

.imgy {
    position: relative;
    display: block;
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
}



/* Modern Services Layout */

/* Intro Section */
.servicos-intro {
    padding-top: 20px;
}

.servicos-intro h1 {
    text-align: center;
    color: #ff3d00;
}

.intro-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.intro-text {
    flex: 1;
    min-width: 300px;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

.intro-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.intro-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-divider {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
    margin: 20px 0;
}

/* Services Grid */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #ff3d00;
}

.service-card-highlight {
    background: linear-gradient(135deg, #fffcfb 0%, #ffffff 100%);
    border-color: #ffaa90;
    position: relative;
    overflow: hidden;
}

.service-card-highlight::before {
    content: "BREVE";
    position: absolute;
    top: 15px;
    right: -30px;
    background: #ff3d00;
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 5px 30px;
    transform: rotate(45deg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-card-highlight h2 {
    color: #ff3d00;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #fff0eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card h2 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card ul li {
    font-size: 13px;
    color: #555;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-card ul li:last-child {
    border-bottom: none;
}

.service-card ul li:before {
    content: "•";
    color: #ff3d00;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Mobile Adjustments */
@media screen and (max-width: 1000px) {
    .intro-flex {
        flex-direction: column-reverse;
    }

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

    .conteudo img {
        width: 100%;
    }
}