.services-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: #2196F3;
    margin: 20px 0 10px;
    position: relative;
    text-align: left;
    /* título alinhado à esquerda */
}

.services-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, #64b5f6, #2196F3);
    margin-left: 0;
    /* mantém a linha alinhada com o título */
}

.services-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
    /* textos justificados */
}

.services-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
    color: #333;
    text-align: left;
    /* tópicos alinhados à esquerda */
}

.services-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
}

.services-list li::marker {
    color: #2196F3;
    font-size: 1.2rem;
}



/* FEATURES ABOUT */
.container-services {
    max-width: 1200px;
    margin: 35px auto;
    padding: 0 20px;
    margin-top: 5rem;
}

.features-services {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;


}

.feature-services {
    background: #fff;
    margin: 15px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

    flex: 1 1 100%;
    /* ocupa toda a largura disponível */
    width: 100%;
    /* garante largura total */
    max-width: 100%;
    /* não deixa limitar */
}

.feature-services h3 {
    color: #2196F3;
}

.feature-services img {
    float: left;
    /* coloca a imagem à esquerda */
    margin: 0 20px 15px 0;
    /* espaço entre imagem e texto */
    max-width: 30%;
    /* controla a largura da imagem */
    height: auto;
    /* mantém proporção */
    object-fit: contain;
    /* evita distorções */
}

.services-carousel {
    flex: 0 0 auto;
    position: relative;
    overflow: hidden;
    height: 500px;
    margin-top: 20px;
    border: 3px solid #2196F3;
}

.services-carousel .slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.services-carousel .slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
}

.services-carousel .slide::before {
    content: "";
    position: absolute;
    inset: 0;
}

.services-carousel .content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.services-carousel h2 {
    font-size: 4rem;
    font-family: 'Exo 2', sans-serif;
    margin-bottom: 0rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
}

.services-carousel p {
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 18px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

/* CTA (evita conflito com botões do carrossel) */
.services-carousel .cta {
    background: #007bff;
    border: none;
    padding: 12px 26px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    font-size: 1rem;
}

.services-carousel .cta:hover {
    background: #0056b3;
}

/* setas */
.services-carousel .prev,
.services-carousel .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    border: none;
    color: white;
    font-size: 22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
}

.services-carousel .prev {
    left: 16px;
}

.services-carousel .next {
    right: 16px;
}

/* DOTS - centralizadas embaixo */
.services-carousel .dots {
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 25;
}

.services-carousel .dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform .12s ease, background .12s ease;
}

.services-carousel .dots button.active {
    background: black;
    transform: scale(1.25);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.35);
}

.image-content-left img {
    float: left;
}

.image-content-right img {
    float: right;
}

.text-content-right {
    width: 60%;
    float: right;
}

.text-content-left {
    width: 60%;
    float: left;
}


/* MODAL */
.modal-video {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
}

.modal-video .modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 10px;
    width: 80%;
    max-width: 900px;
    position: relative;
}

.close-modal {
    color: #333;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: #2196F3;
}

/* BOTÃO DE ABRIR VÍDEO */
.btn-open-video {
    background-color: #2196F3;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
}

.btn-open-video:hover {
    background-color: #1976D2;
}
