﻿/* servicos.css */
html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto; /* Permite rolagem vertical */
    /*margin: 0 auto;*/
    padding: 0;
    margin-left:auto;
    margin-right:auto;
}
.wrap.remove-marg {
    margin-bottom: 0 !important;
    padding-top: 0.5rem;
    padding-bottom: 0.2rem;
}
.breadcrumb-add-padding {
    margin-bottom: 0 !important;
}

.breadcrumb {
    margin-bottom: 0 !important;
}
/* Corpo da página */
.container-fluid {
    padding: 0;
    margin: 0;
}

.container {
    padding: 0 !important;
    margin: 0 !important;
}

.slogan {
    /*background: linear-gradient(135deg, #004040, #95AA9B);*/ /* Dourado */
    color: white; /* Texto branco */
    text-align: center;
    /* padding: 40px; */ /* Aumenta o espaçamento interno */
    width: 100vw; /* Ocupa 80% da largura da tela */
    /* max-width: 900px; */ /* Limita o tamanho máximo */
    /* margin: 20px auto; */ /* Centraliza na tela */
    /* border-radius: 10px; */
}

    .slogan h4 {
        color: #004040; /* Verde escuro */
        font-size: 2rem; /* Ajuste para manter o destaque */
        font-weight: bold;
    }

    .slogan p {
        font-size: 0rem; /* Ajuste para manter o destaque */
    }

.sidebar {
    position: fixed; /* Evita conflitos */
    /*top: 3.5rem;*/ /* Garante que não sobreponha a navbar */
    z-index: 1000;
}


/* Estilo do título */
.header {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin: 0 auto; /* Remover qualquer margem que possa ser aplicada ao título */
}

/* Subtítulo */
.header-rep {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    /*    margin-bottom: 15px;*/
}

/* Descrição */
.desc-rep {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    text-align: justify;
}

/* Estilo das imagens */
.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    /*    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);*/
}

/* Imagens dentro das colunas */
.col-md-6, .col-lg-11 {
    padding: 15px;
}

/* Organização das colunas */
.row.justify-content-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Seção com fundo colorido */
section {
    background-color: #95AA9B;
    padding: 0; /* Remover o padding para evitar espaço extra */
    margin: 0; /* Remover margem extra */
}

    /* Margens das seções */
    section + section {
        margin-top: 30px;
    }

    /* Ajuste para o título da primeira seção */
    section:first-of-type {
        background-color: #F3ECE2;
    }

.mt-5 {
    margin-top: 3rem;
}

/* Alinhar as imagens corretamente */
.text-center img {
    margin-bottom: 20px;
}

.btn.rounded-circle {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.texto-responsivo {
    font-size: 1rem;
}
/* Fonte padrão */
.desc-rep p {
    font-size: 1rem;
    text-align: justify;
}

.card-futuristic {
    background: linear-gradient(45deg, #005050, #002040);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 1.5rem;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.1), 0 0 10px rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fff;
}

    .card-futuristic:hover {
        transform: translateY(-8px);
        box-shadow: 0 0 35px rgba(0, 255, 255, 0.2), 0 0 15px rgba(255, 255, 255, 0.1);
    }

    .card-futuristic h4 {
        color: #AE8356;
        font-weight: 600;
    }

    .card-futuristic p {
        color: #e0f7f7;
    }

    .card-futuristic img {
        border-radius: 1rem;
    }

.modal-futuristic {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content-futuristic {
    background: #002040;
    border: 1px solid #AE8356;
    border-radius: 20px;
    padding: 30px;
    color: #F2EADE;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.fechar {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #F2EADE;
}

    .fechar:hover {
        color: #AE8356;
    }

.responsive-title {
    font-size: 1.5rem; /* tamanho padrão */
}

.img-container {
    width: 100%;
    max-width: 100%; /* ou o que preferir */
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

    .img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* impede esticar */
    }
img.responsive-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

/* Responsividade para colunas */
@media (max-width: 768px) {
    .col-md-6, .col-lg-11 {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .texto-responsivo {
        font-size: 0.75rem;
        text-align: center;
    }
    .responsive-title {
        font-size: 1.8rem;
    }
    /* Ajuste das imagens */
    .img-fluid {
        max-height: 180px;
        object-fit: contain;
    }

    /* Espaçamento */
    .desc-rep {
        font-size: 0.95rem;
    }

    .header-rep {
        font-size: 1.5rem;
    }

    .header {
        font-size: 1.2rem;
    }
    .desc-rep p {
        font-size: 0.85rem;
        text-align: center; /* ou justify, se preferir */
    }

    .desc-personalizada p {
        font-size: 0.75rem;
        text-align: center;
    }

    #verMaisBtn, #botaoDetalhado {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
}

/* Responsividade para telas muito pequenas */
@media (max-width: 576px) {
    .col-md-6, .col-lg-11 {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
@media (max-width: 480px) {
    .header {
        font-size: 1rem;
    }
    .responsive-title {
        font-size: 1.4rem;
    }
}
