/* Estilos para telas menores (smartphones) */
@media only screen and (max-width: 768px) {

    html, body {
        margin: 0; /* Remove margens padrão do corpo */
        padding: 0; /* Remove preenchimento padrão do corpo */
        width: 100%; /* Faça a largura da página igual à largura da viewport */
        overflow-x: hidden; /* Remova a barra de rolagem horizontal, se necessário */
    }

    .container-header {
        height: auto;
        background: linear-gradient(to right, #ffffff 30%, #723636fd 70%);
        padding: 10px 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logo-header {
        margin-left: 0;
        max-width: 500px !important;
    }

    .menu {
        display:none;
        /* margin-right: 0;
        margin-top: 10px;
        flex-direction: column; */
    }

    .menu li {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .menu li a {
        color: #fff;
    }

    .title-banner {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 36px;
    }

    .video-banner {
        width: 100vw;
    }

    .icon-arrow {
        top: 70%;
        font-size: 48px;
    }

    .icon-arrow img {
        width: 30px;
    }

    .whatsapp-icon {
        display: none;
    }

    .whatsapp-icon img {
        display: none;
    }

    .section-about-thema {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        padding: 20px;
        text-align: center;
        flex-direction: column;
    }

    .column-themes {
        padding: 5px 20px;
    }

    .text-about {
        padding: 10px 0 4px;
        font-size: 16px;
    }

    .info-about {
        padding: 20px;
        flex-direction: column;
        background: none;
       
        
    }

    .container-text-info-about {
        padding: 20px;
        font-size: 16px;
       
    }

    .container-img-Info-about img {
        width: 100%;
    }

    .title-team {
        padding: 19px 0 20px 0;
        font-size: 24px;
    }

    .team-adv {
        flex-direction: column;
        display: flex;
        justify-content: center; /* Centraliza horizontalmente */
        align-items: center; /* Centraliza verticalmente */

    }

    .profile-img {
        width: 100px;
        height: 100px;
        margin: 0 auto 10px;
    }

    .column {
        width: 80vw;
        margin-bottom: 20px;
    }

    .resume h2 {
        font-size: 16px;
    }

    .client-section h2 {
        font-size: 24px;
        padding: 10px 0 20px 0;
    }

    .carousel-clients {
        flex-direction: column;
        align-items: center;
    }
    .carousel-clients img {
        max-width: 200px; /* Define o tamanho máximo desejado */
        height: auto; /* Mantém a proporção de aspecto original */
        padding-left: 110px;
    }

    .carousel img {
        padding-left: 0;
    }

    .publications-section h1 {
        font-size: 24px;
    }

    .publication-master img {
        width: 100%;
    }

    .publication-master h2 {
        display: none;
    }

    .publication-master p {
        display: none;
    }

    .contact-section {
        flex-direction: column;
    }

    .contact-form {
        width: 100%;
        padding: 20px;
    }

    .contact-form h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .contact-form label {
        display: block;
        margin-bottom: 10px;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form textarea {
        width: 100%;
        padding: 10px;
        margin-bottom: 20px;
        border: none;
        border-radius: 5px;
    }

    .contact-form textarea {
        height: 100px;
    }

    .contact-form button {
        background-color: #f0f0f0;
        color: #723636;
        border: none;
        border-radius: 5px;
        padding: 10px 20px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .contact-form button:hover {
        background-color: #555;
    }

    .left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo img {
        max-width: 100px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info p {
        margin: 5px 0;
    }

    .center {
        text-align: center;
    }
    .footer-content {
        display: flex;
        justify-content: center; /* Centraliza horizontalmente */
        align-items: center; /* Centraliza verticalmente */
    }
    
}
