* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
}
main {
    flex: 1;
}
h1 {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: center;
    color: #FFD700;
}

p {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 20px;
    color: white;
}
h2 {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: center;
    color: #FFD700;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 70vh; 
    overflow: hidden; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-fundo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transform: translate(-50%, -50%);
    z-index: 1; 
}

.conteudo-hero {
    position: relative;
    z-index: 2; 
    text-align: center;
    color: white; 
}


#header {
    position: absolute;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    z-index: 2;
    width: 100%;
}

#menu {
    display: flex;
    justify-content: flex-start; 
    align-items: center;
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

.nav-lista {
    list-style: none;
    display: flex;
    gap: 30px; 
    align-items: center;
    border-radius: 5px;
}

.nav-lista li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-family: sans-serif;
    transition: color 0.3s ease;
   
}

.nav-lista li a:hover {
    color: #d4af37; 
}
.divisor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.divisor hr {
    flex: 1;
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #FFD700, transparent); 
    max-width: 200px;
}
.perfil {
    overflow: hidden;
    cursor: pointer;
}

.foto-corte {
    transition: transform 0.3s ease;
    display: block;
    width: 100%;
    height: auto;
}


.perfil.com-zoom .foto-corte {
    transform: scale(1.50); 
}


.contentor, .apresent, .contentor-texto, .preços, .contato-container {
    background-image: url('../background03.png'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-radius: 12px;
    border: 1px solid rgba(22, 22, 22);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7); 
    margin: 60px auto; 
    padding: 40px; 
    width: 90%; 
    align-items: center;
    text-align: center;
    
}
#sobre {
    text-align: center;
    padding: 60px 20px;
    color: #ffffff;
    max-width: 1000px;
    margin: 0 auto;
}

#sobre h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700; 
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}


#sobre h1::before,
#sobre h1::after {
    content: "";
    flex: 1;
    height: 1px; 
    background: linear-gradient(to var(--direcao, right), transparent, #FFD700); 
    margin: 0 20px; 
    max-width: 150px; 
}


#sobre h1::after {
    --direcao: left;
}


#sobre p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 20px auto;
}


#marcar {
    margin-top: 35px;
}
.apresent-texto h2 {
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; 
}


.apresent-texto h2::before,
.apresent-texto h2::after {
    content: '';
    height: 1px;
    flex-grow: 1; 
    max-width: 80px; 
}


.apresent-texto h2::before {
    background: linear-gradient(to right, transparent, #FFD700);
}


.apresent-texto h2::after {
    background: linear-gradient(to left, transparent, #FFD700);
}
.contentor {
    max-width: 1100px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px; 
}

.contentor img {
    width: 190px;
    height: 190px;
    object-fit: cover;
    border-radius: 5px;
    border: 3px solid transparent;
    transition: border 0.3s ease; 
}

.perfil {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer; 
}

.perfil span {
    color:rgb(211, 211, 211);
    font-size: 20px;
    margin-top: 10px;
    font-family: Arial, Helvetica, sans-serif;
    transition: color 0.3s ease; 
}

.perfil:hover span {
    color:#FFD700;
}

.perfil:hover img {
    border: 3px solid white; 
}

.apresent {
    max-width: 1000px; 
    display: flex; 
    align-items: center;
    justify-content: space-around;
    gap: 30px;
}

.apresent img {
    width: 400px;
    height: 600px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid transparent;
    transition: border 0.3s ease; 
}

.apresent h2 {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: center;
    color: #FFD700;
}

#content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; 
    text-align: center;
    padding: 10px;
}
.secao-espaco {
    padding: 5px 20px;
    text-align: center;
}
.secao-espaco h1 {
    color: #FFD700;
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.secao-espaco h1::before,
.secao-espaco h1::after {
    content: '';
    height: 2px;
    flex-grow: 1;
    max-width: 120px; 
}

.secao-espaco h1::before {
    background: linear-gradient(to right, transparent, #FFD700);
}

.secao-espaco h1::after {
    background: linear-gradient(to left, transparent, #FFD700);
}
.container-fotos-horizontal {
    display: flex;
    justify-content: center; 
    gap: 15px;               
    overflow-x: auto;        
    padding-bottom: 20px;
}

.foto-item {
    min-width: 200px; 
    height: 250px;
}

.foto-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 3px solid #d4af37; 
    border-radius: 5px;
    transition: transform 0.3s;
}

.foto-item img:hover {
    transform: scale(1.05); 
}
.texto-ambiente {
    text-align: center;
    font-size: 1.1rem;
    color:#ffffff; 
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-style: italic;
}

.preços h1 {
    color: #FFD700;
    font-size: 2.2rem;
    margin-bottom: 40px;
    text-align: center;
    
    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.preços h1::before,
.preços h1::after {
    content: '';
    height: 2px;
    flex-grow: 1;
    max-width: 120px; 
}

.preços h1::before {
    background: linear-gradient(to right, transparent, #FFD700);
}

.preços h1::after {
    background: linear-gradient(to left, transparent, #FFD700);
}

.lista-precos {
    max-width: 500px;
    margin: 0 auto;    
    text-align: center; 
    padding: 20px;
}

.lista-precos p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 18px; 
    font-weight: 500;
    letter-spacing: 0.5px;
}


.lista-precos p {
    transition: color 0.3s ease;
}


.lista-precos p:hover {
    color: #e5c158;
}


#marcar {
    margin-top: 20px;
}

.btn-nav, .botao-agendar, .botao-abrir {
    display: inline-block;
    padding: 12px 25px;
    background-color: #d4af37;
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-family: sans-serif;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-nav:hover, .botao-agendar:hover {
    background-color: white;
    transform: translateY(-3px); 
}


.carousel-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    perspective: 1000px; 
    padding: 0px 0;
}

.carousel-container {
    position: relative;
    width: 300px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.titulo-linhas {
    color: #d4af37; 
    font-size: 2.2rem;
    margin-bottom: 5px; 
    text-align: center;
    
    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; 
}


.titulo-linhas::before,
.titulo-linhas::after {
    content: '';
    height: 2px;
    flex-grow: 1;
    max-width: 120px; 
}


.titulo-linhas::before {
    background: linear-gradient(to right, transparent, #b89743);
}


.titulo-linhas::after {
    background: linear-gradient(to left, transparent, #b89743);
}

.card {
    position: absolute;
    width: 350px;
    height: 190px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    border: 3px solid #d4af37; 
    transition: all 0.5s ease-in-out;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.card.centro {
    transform: translateX(0) scale(1) rotate(0deg);
    z-index: 3;
    opacity: 1;
}

.card.atras-esquerda {
    transform: translateX(-120px) scale(0.85) rotate(-10deg);
    z-index: 1;
    opacity: 0.5;
}

.card.atras-direita {
    transform: translateX(120px) scale(0.85) rotate(10deg);
    z-index: 1;
    opacity: 0.5;
}
.card.escondido {
    opacity: 0;
    pointer-events: none; 
    transform: scale(0);   
}


.modal-sobreposicao {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); 
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; 
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.modal-sobreposicao.ativo {
    opacity: 1;
    pointer-events: auto;
}

.modal-caixa {
    background-image: url('../background03.png'); 
    background-size: cover;
    background-position: center;
    max-width: 800px;
    width: 90%;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(22, 22, 22);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    position: relative; 
}

.botao-fechar {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 35px;
    color: #d4af37;
    cursor: pointer;
    transition: color 0.3s;
}

.campo-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: white; 
}

.campo-form input, .campo-form select, .campo-form textarea {
    width: 100%;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.05); 
    border: 1px solid rgba(212, 175, 55, 0.3); 
    border-radius: 5px;
    color: white;
    font-family: sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

.campo-form input:focus, .campo-form select:focus, .campo-form textarea:focus {
    border-color: #d4af37;
}

.campo-form select option {
    background-color: #1a1a1a;
    color: white;
}


.contato-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px; 
    max-width: 1000px; 
}

.info-contato {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-contato p {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: center;
    color: white;
}

.info-contato h2 {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-align: center;
    color: #d4af37;
}

.mapa-quadrado iframe {
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); 
    max-width: 100%; 
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}
footer.rodape-site {
    position: relative !important;
    margin-top: 50px !important;
    background-image: none !important;
    background-color: #111111 !important;
    height: auto !important;
    display: block !important;
    z-index: 100 !important;
    width: 100% !important;
    padding: 40px 0 !important;
}
.rodape-site {

    background-color: #111111;

    color: #ffffff;

    font-family: Arial, sans-serif;

    padding-top: 50px;

    border-top: 2px solid #c5a880;
   display: block !important;
    margin-top: auto;
    clear: both !important;

}



.rodape-conteudo {

    max-width: 1200px;

    margin: 0 auto;

    display: flex;

    flex-wrap: wrap;

    justify-content: space-between;

    padding: 0 20px 40px 20px;

}



.rodape-coluna {

    flex: 1;

    min-width: 250px;

    margin-bottom: 30px;

}



.rodape-coluna h3 {

    color: #c5a880;

    font-size: 1.2rem;

    margin-bottom: 20px;

    text-transform: uppercase;

    letter-spacing: 1px;

}





.rodape-coluna ul {

    list-style: none;

    padding: 0;

    margin: 0;

}



.rodape-coluna ul li {

    margin-bottom: 12px;

}



.rodape-coluna ul li a {

    color: #b3b3b3;

    text-decoration: none;

    transition: color 0.3s ease;

}



.rodape-coluna ul li a:hover {

    color: #c5a880;

}





.redes-sociais {

    display: flex;

    flex-direction: column;

    gap: 12px;

}



.link-social {

    color: #b3b3b3;

    text-decoration: none;

    transition: color 0.3s ease;

}



.link-social:hover {

    color: #c5a880;

}





.col-appbarber p {

    color: #b3b3b3;

    font-size: 0.95rem;

    margin-bottom: 15px;

}



.link-appbarber img {

    max-width: 150px;

    height: auto;

    display: block;

    transition: transform 0.3s ease;

}



.link-appbarber img:hover {

    transform: scale(1.05);

}





.txt-fallback-appbarber {

    display: inline-block;

    background-color: #0d47a1;

    color: white;

    padding: 8px 16px;

    border-radius: 4px;

    font-weight: bold;

    text-decoration: none;

}





.rodape-inferior {

    background-color: #090909;

    padding: 20px 0;

    font-size: 0.85rem;

    color: #666666;

    border-top: 1px solid #1f1f1f;

}



.rodape-inferior-conteudo {

    max-width: 1200px;

    margin: 0 auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    padding: 0 20px;

}



.rodape-inferior-conteudo p {

    margin: 5px 0;

}



.rodape-inferior .creditos a {

    color: #888888;

    text-decoration: none;

    transition: color 0.3s ease;

}



.rodape-inferior .creditos a:hover {

    color: #c5a880;

}
.whatsapp-float {
    position: fixed;
    bottom: 25px; /* Distância do fundo */
    right: 25px;  /* Distância da direita */
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 9999; /* Garante que fique por cima de tudo */
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    transform: scale(1.1); /* Efeito de zoom ao passar o mouse */
    background-color: #128c7e;
}



@media (max-width: 768px) {
    
    
  
    
  html {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        overflow: hidden !important;
    }

    
    body {
        margin: 0 !important;
        padding: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        overflow-y: auto !important; 
        overflow-x: hidden !important;
        background-color: #121212 !important; 
        background-image: url('../backgroundmobile05.png') !important;
        background-size: auto 100% !important; 
        background-repeat: no-repeat !important;
        background-attachment: scroll !important; 
        background-position: center top !important;
        overscroll-behavior-y: none !important; 
        -webkit-overflow-scrolling: auto !important;
        -webkit-overflow-scrolling: touch !important;
        padding-top:env(safe-area-inset-top) !important;
    }
    
   


    .contentor, .apresent, .contentor-texto, .preços, .contato-container {
        background-image: none !important;
        -webkit-backdrop-filter: blur(4px) !important;
        backdrop-filter: blur(4px) !important;
        border: 1px solid rgba(212, 175, 55, 0.15) !important;
        border-radius: 8px !important;
        
    }

    main, .main-container, #wrapper, .container-principal {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        
    }
   
   .hero-container {
        position: relative!important;
        width: 100vw !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        height: 70vw !important;
        min-height: 200px !important;
        max-height: 400px !important;
        margin-top: 0 !important;
        margin-bottom: 25px !important;
        padding: 0 !important;
        overflow: hidden !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6) !important;
        contain: layout paint !important;
    }

    .video-fundo {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        transform: none !important;
        z-index: 1 !important;
       
    }

   
    #header {
        position: fixed !important; 
        top: 0 !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 100vw !important;
        z-index: 10 !important;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.3) 100%) !important;
        padding: 10px 0 !important;
        margin: 0 !important;
    }

    #menu {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .nav-lista {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-around !important;
        align-items: center !important;
        gap: 5px !important;
        padding: 0 10px !important;
        margin: 0 !important;
        list-style: none !important;
    }

    .nav-lista li a {
        font-size: 11px !important;
        font-weight: bold !important;
        color: #ffffff !important;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9) !important;
        text-decoration: none !important;
        padding: 6px 8px !important;
        
        border-radius: 4px !important;
    }

   
    h1, .titulo-secao {
        font-size: 1.4rem !important;
        text-align: center !important;
        padding: 0 10px !important;
        margin-top: 0 !important;
        margin-bottom: 20px !important;
        color: #d4af37 !important;
        
    }

  
    .contentor {
        display: flex !important;
        flex-direction: row !important; 
        overflow-x: auto !important;    
        scroll-behavior: smooth !important;
        white-space: nowrap !important; 
        gap: 15px !important;           
        width: 95% !important;   
        height: auto !important;      
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 10px !important;
        border-radius: 8px !important;
        -webkit-overflow-scrolling: touch !important;
        min-height: 500px !important;
        margin-top: 0px !important;
        

    }
    
    .contentor::-webkit-scrollbar {
        display: none !important; 
    }

    .perfil {
        display: inline-flex !important;
        flex-direction: column !important;
        align-items: center !important;
        flex-shrink: 0 !important; 
        width: 140px !important;   
    }

    .contentor img {
        width: 120px !important;  
        height: 120px !important;
        border-radius: 6px !important;
        object-fit: cover !important;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5) !important;
    }

    .perfil span {
        margin-top: 8px !important;
        font-size: 12px !important;
        color: #ffffff !important;
        font-weight: bold !important;
        white-space: normal !important; 
        text-align: center !important;
    }

   
    .apresent {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 15px !important;
        width: 80% !important;
        max-width: 290px !important;
        margin: 20px auto !important;
        padding: 15px !important;
        border-radius: 8px !important;
    }

    .apresent img {
        width: 110px !important; 
        height: auto !important;
        border-radius: 6px !important;
    }

    .apresent-texto h2 {
        color: #d4af37 !important;
        font-size: 1.15rem !important;
        margin-top: 0 !important;
        margin-bottom: 5px !important;
    }

    .apresent-texto p {
        font-size: 12px !important; 
        line-height: 1.4 !important;
        color: white!important;
        padding: 0 !important;
        margin: 0 !important;
    }

    
    .contentor-texto, .preços {
        width: 80% !important;
        max-width: 290px !important;
        margin: 20px auto !important;
        padding: 15px !important;
        border-radius: 8px !important;
        text-align: center !important;
    }

    .contentor-texto p {
        font-size: 12px !important;
        color: #ffffff !important;
        line-height: 1.4 !important;
        margin: 0 !important;
    }
    .secao-espaco {
        padding: 10px 5px !important;
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .secao-espaco h1 {
        font-size: 1.4rem !important; 
        margin-bottom: 20px !important;
        gap: 10px !important;
    }

    .secao-espaco h1::before,
    .secao-espaco h1::after {
        max-width: 50px !important; 
    }

    .container-fotos-horizontal {
        gap: 10px !important;
        padding-bottom: 10px !important;
        
        justify-content: flex-start !important; 
    }

   .container-fotos-horizontal {
        display: flex;
        justify-content: center;
        gap: 10px !important;
        overflow-x: auto;
        padding-bottom: 10px !important;
        width: 100% !important;
    }

    

    .secao-espaco .container-fotos-horizontal {
        display: flex !important;
        flex-direction: row !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        padding-bottom: 20px !important;
        width: 100% !important;
        gap: 10px !important;
        -webkit-overflow-scrolling: touch !important;
    }

    
    .secao-espaco .foto-item {
        min-width: 140px !important;
        width: 140px !important;
        height: 140px !important;
        flex-shrink: 0 !important;
        position: relative !important;
    }

    .secao-espaco .foto-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important; 
        object-position: center center !important; 
        border: 2px solid #d4af37 !important;
        border-radius: 5px !important;
        display: block !important;
    }
    .preços h1 {
        margin-top: 0 !important;
        margin-bottom: 10px !important;
        font-size: 1.2rem !important;
    }

    .preços p {
        font-size: 12px !important;
        margin: 5px 0 !important;
    }

    
  

.carousel-wrapper {
    padding: 0 !important;
    margin: 0 auto !important;
    width: 100% !important;
}

.carousel-container {
    width: 92% !important; 
    max-width: 360px !important;    
    height: 250px !important;  
    margin: 0 auto !important;
    display: flex !important;
    align-items: flex-start !important;
    position: relative !important; 
}

.titulo-linhas {
    font-size: 1.2rem !important;
    margin-top: 25px !important;   
    margin-bottom: 15px !important; 
    padding: 0 !important; 
}

.secao-carousel {
    padding-top: 0 !important; 
    padding-bottom: 0 !important; 
    margin-top: 0 !important;
    margin-bottom: 35px !important; 
}

.card {
    width: 100% !important;
    
  
    min-height: 190px !important; 
    height: auto !important;
    
    
    padding: 15px 12px 25px 12px !important;     
    
    position: absolute !important;
    top: 0 !important; 
    left: 50% !important;
    transform: translateX(-50%) !important; 
    
   
    white-space: normal !important; 
    word-wrap: break-word !important;
    word-break: normal !important; 
    box-sizing: border-box !important;
    
    
    overflow: visible !important; 
}


.card * {
    white-space: normal !important;
}


.carousel-container button, 
.carousel-container .setas, 
.carousel-container span {
    margin-top: 210px !important; 
}



.card.centro {
    transform: translateX(-50%) scale(1) !important;
    z-index: 3 !important;
    opacity: 1 !important;
}

.card.atras-esquerda {
    transform: translateX(-160%) scale(0.85) !important; 
    opacity: 0.5 !important;
    z-index: 1 !important;
}


.card.atras-direita {
    transform: translateX(60%) scale(0.85) !important; 
    opacity: 0.5 !important;
    z-index: 1 !important;
}


.card.escondido {
    display: none !important;
}
    .contato-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
        width: 80% !important;
        max-width: 290px !important;
        margin: 20px auto !important;
        padding: 15px !important;
    }

    .info-contato, .mapa-quadrado {
        width: 100% !important;
        text-align: center !important;
    }

    .mapa-quadrado iframe {
        width: 100% !important;
        height: 160px !important; 
        border-radius: 6px !important;
    }
.rodape-conteudo {
        flex-direction: column;
        text-align: center;
        
    }

    .rodape-coluna {
        margin-bottom: 40px;
    }

    .redes-sociais {
        align-items: center;
    }

    .link-appbarber img {
        margin: 0 auto;
    }

   .rodape-inferior-conteudo {
        flex-direction: column; 
        text-align: center;     
        justify-content: center;
        gap: 10px;              
        padding: 20px;          
    }
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float img {
        width: 30px;
        height: 30px;
    }
}