@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;300&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Titillium Web', sans-serif;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.container-footer {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    display: flex;
    align-items: center;
    color: #930c0c;
}

header {
    background-color: black;
    width: 100%;
    padding: 15px 4%;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.logo {
    width: 25%;
}

.logo img {
    width: 200px;
    cursor: pointer;
}

.menu {
    width: 50%;
}

.menu nav a {
    color: #c4c4c4;
    text-decoration: none;
    font-size: 18px;
    padding-right: 30px;
    padding-bottom: 8px;
    position: relative;
}

.menu nav a::after {
    content: " ";
    width: 0px;
    height: 4px;
    background-image: linear-gradient(45deg , #7eb82f, #8bc53d);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.5s;
}

.menu nav a:hover::after {
    width: 30px;
}

.menu nav a:hover {
    color: #ffffff;
}

.social {
    width: 25%;
}

.social button {
    width: 40px;
    height: 40px;
    margin-right: 20px;
    border: 0;
    cursor: pointer;
    background-image: linear-gradient(45deg , #7eb82f, #8bc53d);
    border-radius: 5px;
    transition: transform 0.5s;
}

.social button i {
    font-size: 20px;
    text-align: center;
    color: #ffffff;
}

.social button:hover {
    transform: scale(0.9);
}

.btn-social button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    background-color: #8bc53d;
    font-size: 22px;
    cursor: pointer;
    margin: 0 5px;
    transition: .2s;
}


h2.titulo {
    color: #000;
    font-size: 38px;
    text-align: center;
}

h2.titulo span {
    color: #FF2500;
}

section {
    padding: 70px 4%;
    border-bottom: 1px solid #ccc;
}

section h2 {
    font-size: 2em;
    margin-bottom: 25px;
}

section p {
    font-size: 20px;
}

#menu-mobile {
    background-color: #1111119f;
    backdrop-filter: blur(10px);
    position: absolute;
    top: 77px;
    right: 0;
    width: 100%;
    height: 0;
    visibility: hidden;
    z-index: 1000;
    transition: 0.5s;
    overflow: hidden;
}

#menu-mobile nav a {
    display: block;
    color: #ffffff;
    padding: 20px 30px;
    font-size: 20px;
    text-decoration: none;
}

#menu-mobile nav a:hover {
    background-color: #383838;
}

#btn-menu,
#btn-menu-close {
    color: #ffffff;
    font-size: 30px;
    cursor: pointer;
    display: none;
}

@media screen and (max-width: 1110px) {
    .menu,
    .social {
        display: none;
    }

    .logo {
        width: 100%;
    }

    #btn-menu,
    #menu-mobile {
        display: block;
    }

    #menu-mobile.active {
        height: calc(100vh - 77px);
        visibility: visible;
    }
}
/* Ajustes Titulo Index */
#especialidades{
    width: 100%;
    margin-top: 60px;
}


.produtos {
    width: 100%;
    padding: 2px;
}

/* Ajustes para os cards da seção de produtos */
.album .card {
    width: 300px;
    height: 350px;
    padding: 20px;
    margin: 40px;
    border-radius: 30px;
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    justify-content: space-between;
    flex-direction: column;
    background-image: linear-gradient(45deg, #00EFA9, #1f84b6); /* Background com gradiente */
    position: relative;
    transition: transform 0.5s;
}

.album .card h2 {
    color: rgb(255, 253, 253);
    text-align: center; /* Centraliza o texto */
}

.album .card img.produtos {
    height: 250px;
    transition: .5s;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.album .card:hover img.produtos,
.album .card:hover button {
    transform: translate3d(0, 0, 100px); /* Efeito de elevação ao passar o mouse */
}

.album .card button {
    padding: 10px;
    background-color: rgb(54, 184, 31);
    border: 0;
    border-radius: 15px;
    font-size: 16px;
    color: aliceblue;
    cursor: pointer;
    transition: .5s;
    text-align: center;
}

/* Imagens Titulo */
.image-titulo {
    width: 100%;
    position: relative; /* Permite posicionamento absoluto da imagem */
}

.image-titulo img {
    width: 100vw; /* Ocupa toda a largura da viewport */
    height: auto;
    position: absolute; /* Posicionamento absoluto */
    left: 50%; /* Centraliza horizontalmente */
    transform: translateX(-50%); /* Ajusta a centralização */
}
/* Titulo Fourmuralio  */
.titulo-form{
    margin-top: 20px;
    padding: 20px;
}

.titulo-formulario h2{
    margin-top: 20px;
    padding: 20px;
}

/* Imagens Titulo */
.image-titulo {
    width: 100%;
    position: relative;
    overflow: hidden; /* Adiciona overflow hidden para cortar qualquer excesso de imagem */
}

.image-titulo img {
    width: 100vw; /* Ocupa toda a largura da viewport */
    height: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%); /* Ajusta a centralização */
    max-width: none; /* Garante que a imagem não seja limitada ao tamanho do contêiner */
}


/* Contato Formulário */
.contato-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.titulo-formulario h2 {
    margin-bottom: 20px;
    text-align: center;
}

.contact-form {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    text-align: center;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: calc(100% - 12px);
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.form-group textarea {
    height: 100px;
}

.form-group input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    width: 100%;
}

.image-container img {
    width: 80px; /* Ajuste o tamanho da imagem para 60px */
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


/* Ajuste para o rodapé (footer-bottom) */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    background: #42403f;
    border-top: 1px solid #232520;
    color: #fff;
}


/* Ajuste para o rodapé (footer-bottom) */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    background: #42403f;
    border-top: 1px solid #232520;
    color: #fff;
}

/* Rodapé */
footer {
    background: linear-gradient(45deg, #a3a0a0, #f1f1f1);
    color: #fff;
    padding: 20px 0;
}

.container-footer {

    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    

.footer-logo img {
    width: 150px;
}

.footer-links,
.footer-social,
.footer-contact {
    flex: 1;
    margin: 20px;
}

.footer-links h4,
.footer-social h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 1.2em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a,
.footer-social a {
    display: block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-social a:hover {
    color: #ffdd57;
}

.footer-social a {
    display: inline-block;
    margin-right: 10px;
    font-size: 3.5em;
}

.footer-contact p {
    margin: 10px 0;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    background: #42403f;
    border-top: 1px solid #232520;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9em;
}

footer a i {
    transition: transform 0.3s;
}

footer a:hover i {
    transform: scale(1.1);
}

.footer-social a i {
    transition: color 0.3s, transform 0.3s;
}

.footer-social a:hover i {
    color: #ffdd57;
    transform: scale(1.2);
}

.footer-social a:hover {
    transform: rotate(10deg);
}
.footer-links{
color: #1f1c1c;
font-weight: bold
}
.footer-links h4{
    font-weight: bold

}

.footer-contact h4{
    color: #1f1c1c;
    font-weight: bold
}
.footer-contact{
 color: #1f1c1c;
}

.footer-social h4{
    color: #1f1c1c;
    font-weight: bold
}
.footer-bottom p{
    text-align: center;

}

 }