html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.field-validation-error {
    color: #ff0000;
}

.close-alert {
    position:absolute;
    right: -10px;
    top: -15px;
    border-radius: 15px;
    width: 30px;
    height: 31px;
}

/*
Preguiasda*/

body {
    background-color: #fbf3e4;
    max-width: auto;
}

.titulo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    text-align: center;
    color: #825435;
}

    .titulo h1 {
        font-size: 6rem;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .titulo p {
        font-size: 2rem;
        margin-top: 0;
        font-weight: bold;
    }






.conteudo {
    display: flex;
    align-items: center;
    padding: 20px;
}

.texto, .imagem-container {
    flex-grow: 1;
    flex-basis: 0;
    box-sizing: border-box;
    padding: 0 10px;
}

.imagem {
    max-width: 100%;
    height: auto;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}

.destaque {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.subtitulo {
    font-size: 1.2rem;
    margin-bottom: 0;
}





.section-funcionalidades {
    padding: 50px 0;
}

.titulo-secao {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
}

.linha {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.cartao-servico {
    width: 250px;
    height: 250px;
    background-color: #e1c7b1;
    margin: 10px;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
    max-height: auto;
}

    .cartao-servico:hover {
        transform: scale(0.9);
    }

    .cartao-servico .icone {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }

    .cartao-servico h6 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .cartao-servico p {
        font-size: 14px;
    }





.container-quem-somos {
    padding: 50px 0;
}

.cartao-depoimento {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 2px solid #000;
    border-radius: 20px;
    margin-bottom: 10px;
}

    .cartao-depoimento img {
        width: 40px;
        height: auto;
        border-radius: 50%;
        margin-right: 20px;
    }

.corpo-depoimento h6 {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
}

.corpo-depoimento p {
    font-size: 14px;
    margin-bottom: 10px;
}

/* Media queries para dispositivos móveis */
@media screen and (max-width: 768px) {
    .titulo h1 {
        font-size: 4rem;
    }

    .titulo p {
        font-size: 1.5rem;
    }

    .conteudo {
        flex-direction: row;
        align-items: center;
        text-align: justify;
    }

    .texto {
        padding: 10px;
        text-align: left;
        text-align: center;
    }

    .imagem-container {
        display: none;
    }

    .linha {
        display: flex;
        flex-wrap: wrap; /* Permite que os cartões sejam envoltos em várias linhas */
        justify-content: center; /* Centraliza os cartões horizontalmente */
    }

    .cartao-servico {
        width: 140px; /* Define o tamanho para 50% menos o espaçamento */
        height: 300px; /* Define uma altura fixa para os cartões */
        margin: 10px; /* Espaçamento entre os cartões */
        display: flex; /* Torna os cartões flexíveis para alinhar conteúdo verticalmente */
        flex-direction: column; /* Alinha o conteúdo verticalmente dentro dos cartões */
        justify-content: center; /* Centraliza o conteúdo verticalmente */
        text-align: center; /* Centraliza o conteúdo horizontalmente */
    }
}

