*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    text-decoration: none;
}
.clear {
    clear: both;
}
:root {
    --cor-primaria: #d9ad26;
    --cor-secundaria: #000;
    --cor-texto: #fff;
    --cor-fundo: #bebebe;
    --espacamento: clamp(1rem, 2vw, 2rem);
    --fonte-titulo: clamp(2rem, 5vw, 3rem);
    --fonte-texto: clamp(1rem, 2vw, 1.25rem);
}
html {
    scroll-behavior:smooth;
}

/* Layout base */
.interface {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2%;
}
header .btn-contato button, .hero-site button, .txt-prazer button, .atendimentos-chamada button, .saibamais button{
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
    transition:.5s;
}
.btn-contato button:hover, .hero-site button:hover, .txt-prazer button:hover, .atendimentos-chamada button:hover, .saibamais button:hover{
    background-color: #fff;
    color: #000;
}

/* Estilo do header */
/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 10;
    background-color: transparent;
    transition: 0.6s;
}
header .interface{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.logo img {
    max-width: 100px;
    margin: 0 2%;
}

/* estilo menu dinâmico */
header .logo img.logo-preta{
    display: none;
}
header.rolar{
    background-color: #fff;
    box-shadow: 0 0 20px #00000062;

}
header.rolar .menu-desktop nav ul li a{
    color: #000;
}
header.rolar .btn-contato button{
    border: 1px solid #000;
    color: #000;
}
header.rolar .btn-contato button:hover{
    background-color: #000;
    color: #fff;
}
header.rolar .logo .logo-branca{
    display: none;
}
header.rolar .logo .logo-preta{
    display: block;
}
/* -------------------- */
.menu-desktop {
    width: 100%;
}
.menu-desktop nav ul {
    display: flex;
    gap: 5rem;
    list-style: none;
    justify-content: center;
}
.menu-mobile {
    display: none;
}
header .menu-desktop nav ul li{
    display: flex;
    justify-content: space-around;
    font-size: 20px;
}
header .menu-desktop nav ul li a{
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: .3s;
}
.menu-desktop nav a:hover{
    transform: scale(1.5);
}
header .btn-contato button{
    height: 50px;
    font-size: 18px;
    padding: 0px 10px;
}

/* estilo do botão do menu mobile */
.btn-menu-mob{
    display: none;
    position: relative;
    z-index: 15;
}
.btn-menu-mob div{
    background-color: var(--cor-texto);
    height: 3px;
    margin: 10px 0;
    transition: .2s;
}
.btn-menu-mob .line-menumob-1{
width: 30px;
}
.btn-menu-mob .line-menumob-2{
width: 20px;
}
.rolar .btn-menu-mob div{
    background-color: #000000;
}
.btn-menu-mob .line-menumob-1.ativo1{
    transform: rotate(45deg) translate(30%);
    background-color: #000000;
}
.btn-menu-mob .line-menumob-2.ativo2{
    transform: rotate(-45deg) translate(30%);
    width: 30px;
    background-color: #000000;
}

/* estilo do menu mobile */
.menu-mobile{
    width: 0;
    height: 0;
    background-color: #000;
    position: absolute;
    top: 110px;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    transition: .5s;
}
.menu-mobile nav{
    width: 100%;
}
.menu-mobile nav ul{
    list-style-type: none;
}
.menu-mobile nav a{
    font-size: 30px;
    text-decoration: none;
    color: #fff;
    padding: 8px 0;
    border-bottom: 1px solid #fff;
    display: block;
}
.menu-mobile nav a:hover{
    background-color: var(--cor-primaria);
    color: #000;
    box-shadow: 0 0 20px #fff;
}
.menu-mobile.abrir{
    width: 100%;
    height: 250px;
}
body.no-overflow{
    overflow: hidden;
}

/* Estilo do hero */
.hero-site {
    height: 100vh;
    background: url('../image/bgprinc.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: var(--cor-texto);
text-shadow: 8px 2px 11px #D9AD26, 8px 2px 11px #D9AD26, 8px 2px 11px #D9AD26;}
.hero-site .interface{
    display: flex;
    align-items: center;
    height: 100%;
}
.txt-hero {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    max-width: 600px;
}
.txt-hero.ativo{
    transform: translate(-50%, -50%) scale(1);
}
.txt-hero h1 {
    font-size: 3rem;
    line-height: 1.2;
}
.hero-site .txt-hero h1 span{
    display: block;
    font-weight: 800;
}
.hero-site .txt-hero span {
    text-decoration: underline;
}
.hero-site button{
    width: 200px;
    height: 50px;
    font-size: 20px;
    color: #d9ad26;
    text-shadow: 2px 2px #ffffff;
    margin-top: 20px;
}

/* estilo chamada prazer */
/* Prazer */
.prazer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: var(--cor-secundaria);
    color: var(--cor-texto);
    padding: var(--espacamento);
}
div.txt-prazer {
    display: flex;
    align-items: center;
}
.txt-prazer h1 {
    font-size: 35px;
    color: #d9ad26;
}
.txt-prazer button {
    width: 200px;
    height: 50px;
    font-size: 20px;
    margin-left: 40px;
    color: #d9ad26;
}
.chamada h2 {
    font-size: 35px;
    text-decoration: underline;
    color: #d9ad26;
}
.chamada h1 span {
    font-size: 50px;
    color: #d9ad26;
}

/* Estilo fotos expanding  */
section.fotos{
    scroll-margin-top: 114px;
}
.container {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
}
.panel {
    flex: 1;
    height: 85vh;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    transition: flex 0.7s ease-in;
}
.panel h3 {
    font-size: 24px;
    position: absolute;
    bottom: 20px;
    left: 20px;
    margin: 0;
    opacity: 0;
    color: var(--cor-texto);
}
.panel.active {
    flex: 5;
}
.panel.active h3 {
    opacity: 1;
    transition: opacity 0.3s ease-in 0.4s;
}

/* Estilo Anuncio1 */
.center-anuncio {
    padding: 5px;
}
.center-anuncio::after {
    content: '';
    display: block;
    clear: both;
}
.center-anuncio .col {
    width: 33.33%;
    height: 400px;
    float: left;
    padding: 10px;
}
.center-anuncio .col-content {
    width: 100%;
    height: 100%;
    background: #d9ad26;
    
}

/* Estilo Nossos Atentimentos*/
section.atendimentos{
    scroll-margin-top: 114px;
}
section.atendimentos h2{
    font-size: 50px;
    background-color: #bebebe;
    text-align: left;
    width: 100%;
    height: 150px;
    position: relative;
    justify-content: center;
    display: flex;
}
section.atendimentos h4 {
    font-size: 22px;
    background-color: #bebebe;
    justify-content: center;
    width: 100%;
    height: 50px;
    position: relative;
    padding-right: 235px;
    padding-top: 15px;    
    
    display: flex;
}
.atendimentos-chamada {
    width: 100%;
    height: 100%;
    background-color: #bebebe;
    justify-content: center;
    display: flex;
    text-decoration: none;
    
}
.atendimentos-chamada button {
    background-color: #d9ad26;
    width: 250px;
    height: 50px;
    justify-content: center;
    text-align: center;
    align-items: center;
    position: relative;
    display: flex;
    margin-top: 20px;
    margin-bottom: 15px;
    text-decoration: none;
    font-size: 20px;
}
.wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    background-color: var(--cor-fundo);
    padding: var(--espacamento);
}
.card {
    background-color: var(--cor-secundaria);
    color: var(--cor-texto);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    height: 500px;

}
.card span:first-of-type {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, #d9ad26);
    animation: animar1 2s linear infinite;
}
.container-content {
    overflow:  hidden;
    width: 100%;
    height: 190%;
}
.container-content img {
    width: 100%;
    height: 280px;
}
.container-subtitle {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    padding: 10px;
    color: #f9f9f9;
    margin-top: 10px;

}
.container-subtitle h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: center;
    margin-top: 15px;
}
.container-subtitle p {
    font-size: 1.1rem;
    margin-top: 30px;
    padding: 1rem;
}
@keyframes animar1 {
    0% {
        transform: translateX(-100%);
    }
    100%{
        transform: translateX(100%);
    }
}
.card span:nth-of-type(2) {
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #d9ad26);
    animation: animar2 2s linear infinite;
    animation-delay: 1s;
}
@keyframes animar2 {
    0% {
        transform: translatey(-100%);
    }
    100%{
        transform: translatey(100%);
    }
}
.card span:nth-of-type(3) {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to left, transparent, #d9ad26);
    animation: animar3 2s linear infinite;
}
@keyframes animar3 {
    0% {
        transform: translatex(100%);
    }
    100%{
        transform: translatex(-100%);
    }
}
.card span:last-of-type {
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to top, transparent, #d9ad26);
    animation: animar4 2s linear infinite;
    animation-delay: 1s;
}
@keyframes animar4 {
    0% {
        transform: translatey(100%);
    }
    100%{
        transform: translatey(-100%);
    }
}

/* Estilo Anuncio2 */
.center-anuncio-dois {
    padding: 5px;
}
.center-anuncio-dois::after {
    content: '';
    display: block;
    clear: both;
}
.center-anuncio-dois .col {
    width: 33.33%;
    height: 400px;
    float: left;
    padding: 10px;
}
.center-anuncio-dois .col-content {
    width: 100%;
    height: 100%;
    background: #d9ad26;
    
}

/* Estilo Depoimento */
section.depoimento{
    scroll-margin-top: 114px;
}
.testimonial-container {
    background-color: var(--cor-secundaria);
    color: var(--cor-texto);
    border-radius: 15px;
    margin: 2rem auto;
    padding: 3.125rem 5rem;
    max-width: 768px;
    position: relative;
}
.fa-quote {
    color: rgba(255, 255, 255, 0.3);
    font-size: 28px;
    position: absolute;
    top: 70px;
}
.fa-quote-right {
    left: 40px;
}
.fa-quote-left {
    right: 40px;
}
.testimonial {
    line-height: 28px;
    text-align: justify;
}
.user {
    display: flex;
    align-items: center;
    justify-content: center;
}
.user .user-image {
    border-radius: 50%;
    height: 75px;
    width: 75px;
    object-fit: cover;
}
.user .user-details {
    margin-left: 10px;
}
.user .username {
    margin: 0;
}
.user .role {
    font-weight: normal;
    margin: 10px 0;
}
.progress-bar {
    background-color: var(--cor-primaria);
    height: 4px;
    width: 100%;
    animation: grow 10s linear infinite;
    transform-origin: left;
}
@keyframes grow {
    0% {
    transform: scaleX(0);
}
}

/* Estilo saiba mais */
.saibamais{
    height: 700px;
    background: url(../image/saibamais.jpg) center/cover no-repeat fixed;
    position: relative;
    color: var(--cor-texto);
    text-align: center;
}
.overlay{
    position: absolute;
    top: 0;
    left: 0;
    background-color: #0000005c;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.interface-saibamais {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.saibamais h2{
    font-size: 3em;
    line-height: 50px;
    font-weight: 200;
}
.saibamais h2 span{
    display: block;
    font-weight: 600;
}
.saibamais p{
    margin: 20px 0;
    font-size: 20px;
    font-weight: 300;
}
.saibamais button{
    width: 220px;
    height: 60px;
    font-size: 22px;
}

/* Estilo Anuncio3 */
.center-anuncio-tres {
    padding: 5px;
}
.center-anuncio-tres::after {
    content: '';
    display: block;
    clear: both;
}
.center-anuncio-tres .col {
    width: 33.33%;
    height: 400px;
    float: left;
    padding: 10px;
}
.center-anuncio-tres .col-content {
    width: 100%;
    height: 100%;
    background: #d9ad26;
    
}

/* Estilo galeria de fotos */
section.galeria-fotos {
    padding: 3px 2%;
}
.container-galeria {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1400px;
    margin: 5px auto;
    padding: 20px 2px;
    border: 1px solid rgb(0, 0, 0);

}
.img-wraper {
    width: 32%;
    aspect-ratio: 4 / 3; /* Mantém proporção para imagens horizontais e verticais */
    position: relative;
    margin-bottom: 10px;
    border: 1px solid white;
    background: radial-gradient(circle farthest-corner at center center, #000000 0%, #d9ad36 80%);

}
.img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover; /* Preenche melhor o espaço */
    background-repeat: no-repeat;

    
}

/* Estilo formulario */
/* Contato */
.contato {
    background-color: var(--cor-primaria);
    padding: var(--espacamento);
}
.contato .center {
    width: 100%;
    position: relative;
    margin: 20px auto;
    
}
.contato-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.fale-conosco,
.form {
    background-color: #fff;
    border-radius: 20px;
    padding: 1rem;
    flex: 1 1 300px;
}
.fale-conosco h1 {
    padding: 10px 0;
    font-size: 30px;
}
.fale-conosco p {
    padding: 20px 0;
    font-size: 22;
    line-height: 2.0;
}
.form h1 {
    padding: 10px 0;
    font-size: 30px;
}
.form p {
    padding: 10px 0;
}
.input-single {
    position: relative;
    margin: 25px 0;
}
.input-single label{
    position: absolute;
    left: 0;
    bottom: 5px;
    transition: all 0.3s;
    cursor: text;
}
.input {
    width: 100%;
    border: 0;
    border-bottom: 2px solid #000;
    padding: 5px;
    font-size: 17px;
    outline: none;
}
form .input-single .input:focus ~ label,
form .input-single .input:valid ~ label{
    transform: translateY(-24px);
    font-size: 12px;
    color: #d9ad26;
}
.input-tex{
    width: 100%;
    height: 100px;
    padding: 5px;
    font-size: 17px;
    outline: none;
    margin-top: 2px;
    
}
form .input-single .input-tex:focus ~ label,
form .input-single .input-tex:valid ~ label{
    transform: translateY(-40px);
    font-size: 12px;
    color: #d9ad26;
}
.tex-label{
    padding: 3px 5px;
    position: absolute;
    top: 20px !important;
    bottom: 10px;
    transition: all 0.3s;
    cursor: text;
}
.btn-input{
    text-align: center;
    width: 100%;
}
form input[type=submit]{
    background-color: transparent;
    border: 1px solid #000000;
    color: #000000;
    cursor: pointer;
    transition:.5s;
    padding: 10px 10px;
    height: 100%;
}
form input[type=submit]:hover{
background-color: #000000;
    color: #ffffff;
}

/* Rodapé */
footer {
    background-color: var(--cor-secundaria);
    text-align: center;
    padding: 2rem 0;
}
footer p {
    color: var(--cor-primaria);
    font-size: var(--fonte-texto);
}
.fa-heart {
    color: red;
}


/* Responsivo */
/* Responsivo para tablets */

@media screen and (max-width: 768px) {
    .menu-desktop,  .btn-contato{
    display: none;
    }
    .btn-menu-mob{
        display: block;
        position: relative;
        color: var(--cor-secundaria);
    }
    .hero-site {
    text-align: center;
    justify-content: center;
    }
    .txt-hero {
    margin: 0 auto;
    }
    .prazer {
    flex-direction: column;
    text-align: center;
    }
    .container {
    flex-direction: column;
    }
    .panel {
    height: 300px;
    }
    .saibamais h2 {
    font-size: 2rem;
    }
    .img-wraper {
    width: 48%;
    aspect-ratio: 4 / 3;
    }
}
/* Responsivo para celulares */
@media screen and (max-width: 480px) {
  .img-wraper {
    width: 100%;
    aspect-ratio: 4 / 3;
  }
}