body {
    font-family: 'Dancing Script', cursive;
    font-family: 'Montserrat', sans-serif;
}

/* CONFIGURAÇÕES GERAIS DO SITE*/
:root {
    --azul: rgb(0, 34, 129);
    --rosa: rgb(226, 189, 186);
    --branco: rgb(255, 255, 255);
    --preto: rgb(0, 0, 0);
    --marrom: rgb(114, 74, 45);
}

.fonte_branca {
    color: #ffffff;
}

/*ALINHAMENTOS HORIZONTAIS*/
.centro {
    text-align: center;
}

.esquerda {
    text-align: left;
}

.direita {
    text-align: right;
}

/*TAMANHOS E LARGURAS*/
.t5p100 {
    width: 5%;
}

.t10p100 {
    width: 10%;
}

.t20p100 {
    width: 20%;
}

.t30p100 {
    width: 30%;
}

.t33p100 {
    width: 33%;
}

.t40p100 {
    width: 40%;
}

.t50p100 {
    width: 50%;
}

.t60p100 {
    width: 60%;
}

.t70p100 {
    width: 70%;
}

.t80p100 {
    width: 80%;
}

.t90p100 {
    width: 90%;
}

.t100p100 {
    width: 100%;
}

/* CONFIGURAÇÕES GERAIS DO SITE*/
.eixoY {
    display: flex;
    align-items: center;
}


/* ============================================== HEADER INÍCIO ============================================== */

header {
    background-color: var(--rosa);
}

.altura_header {
    height: 45px;
}

/* REDES SOCIAIS DA HEADER */
.social_a {
    text-decoration: none;
    color: #555;
    display: inline-block;
    width: 35px;
    /* Largura fixa de 35 pixels */
    height: 35px;
    /* Altura fixa de 35 pixels */
    border: 1px solid #ccc;
    border-radius: 10%;
    /* Para criar um botão circular */
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, color 0.3s;
    text-align: center;
    line-height: 35px;
    /* Centralizar o conteúdo verticalmente */
}

.social_a:hover {
    background-color: #f5f5f5;
    color: #333;
}

.social_i {
    font-size: 18px;
}

/* REDES SOCIAIS DA HEADER */

/* CARRINHO DE PRODUTOS */
.cart-icon {
    position: relative;
    display: inline-block;
}

.cart-icon .fa-shopping-basket:before {
    font-size: 24px;
}

.cor_carrinho {
    color: #3f3f3f;
    /* Cor do ícone do carrinho */
}


.botao_remover {
    background-color: transparent;
    border: 0px solid transparent;
    color: red;
}

.tamanho_produto {

    width: 90%;

}

.tamanho_lixeira {

    width: 10%;

}


.item-count {
    position: absolute;
    top: 0px;
    right: -5px;
    background-color: #ff5733;
    /* Cor de fundo do círculo */
    color: white;
    border-radius: 50%;
    padding: 2px 4px;
    font-size: 10px;
    /* Tamanho da fonte do contador */
    width: 19px;
    height: 19px;
    text-align: right;
}

.menu-canvas {
    border: 2px solid Gainsboro;
    border-radius: 10px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
    transition: all 0.3s;

}

.menu-canvas:hover {
    border: 2px solid Gainsboro;
    border-radius: 10px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
    background-color: var(--rosa);
    color: var(--branco);
    transition: all 0.3s;


}

.link-menu-canvas {
    text-decoration: none;
    color: #414141;
    transition: all 0.3s;

}

/* ============================================== HEADER FIM ============================================== */



/* ============================================== MENU NAV - INÍCIO ============================================== */

nav {
    height: 85px;
    width: 100%;
    background-color: var(--branco);
    /* Cor de fundo inicial */
    transition: background-color 0.3s;
    /* Efeito de transição suave */

}

.nav-fixed {
    position: fixed;
    top: 0;
    background-color: var(--branco);
    /* Cor de fundo após rolar 50px */
    color: var(--preto);
    z-index: 999;
}

.fonte-nav {
    font-size: 20px;
    font-weight: 400;
    white-space: nowrap;
}

.topo-nav {
    margin-top: 20px;
    width: 50px;
}

.topo-nav a {
    text-decoration: none;
    color: #545454;
}

.link_menu{
    text-decoration:none; 
    color: gray; 
    font-size:20px;
    -webkit-transition: 0.5s ease-out;
    -moz-transition: 0.5s ease-out;
    -o-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
}

.link_menu:hover{
    text-decoration: none;
    color: var(--rosa); 
    font-size:20px;
    -webkit-transition: 0.5s ease-out;
    -moz-transition: 0.5s ease-out;
    -o-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
}


/* LINHA UNDERLINE */

h3.underline-transition {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #A9A9A9;
    /* Cor do texto */
    font-size: 20px;
    /* Tamanho da fonte */
    padding-bottom: 8px;
    /* Espaço entre o texto e o sublinhado */
}

h3.underline-transition::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 3px;
    background-color: rgb(226, 189, 186);
    /* Cor do sublinhado */
    transition: width 0.8s ease, background-color 0.4s ease;
    /* Transição suave */
}

h3.underline-transition:hover::after {
    width: 100%;
    /* Amplia o sublinhado ao passar o mouse */
    background-color: rgb(226, 189, 187);
    /* Nova cor ao passar o mouse */
}

/* ============================================== MENU NAV - FIM ============================================== */

/* ============================================== BANNER DE BEM VINDO ============================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


#banner {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

#banner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

#banner:hover img {
    transform: scale(1.1);
}

#content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    /* Alinhar à esquerda */
    color: #fff;
    z-index: 2;
}

#content h1 {
    font-size: 3em;
    margin-bottom: 10px;
    color: rgb(255, 255, 255);
    animation: fadeInUp 1.5s ease-out;
    font-family: 'Dancing Script', cursive;
}

#content p {
    font-size: 1.0em;
    margin-bottom: 20px;
    animation: fadeInUp 2s ease-out;
}


#banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
    z-index: 1;
    border-radius: 10px;
}

.botao_banner{
    background-color: var(--rosa); 
    color: #ffffff;
    -webkit-transition: 0.5s ease-out;
    -moz-transition: 0.5s ease-out;
    -o-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
}

.botao_banner:hover{
    background-color: rgb(187, 151, 148); 
    color: #ffffff;
    -webkit-transition: 0.5s ease-out;
    -moz-transition: 0.5s ease-out;
    -o-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
}

/* Media queries para ajustar o tamanho das fontes em dispositivos móveis */
@media only screen and (max-width: 768px) {
    #content h1 {
        font-size: 18px;
    }

    #content p {
        font-size: 10px;
    }
}

/* ============================================== FIM DO BANNER DE BEM VINDO ============================================== */


/* ============================================== SECTION EXPLORE ============================================== */

.explore {
    background-color: #f8f8f8;
}

.ferias {
    margin-top: 40px;
}

/* ============================================== SECTION EXPLORE ============================================== */



/*============================================= PRODUTOS ===========================================*/

/*PRODUTOS*/

/* CSS personalizado */
.owl-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
}

.card {
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    margin: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.card-text {
    color: #777;
}

.botao-card {
    background-color: var(--rosa);
    color: var(--branco);
    width: 100%;
    -webkit-transition: 0.5s ease-out;
    -moz-transition: 0.5s ease-out;
    -o-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
}

.botao-card:hover {
    background-color: var(--marrom);
    color: var(--branco);
    width: 100%;
    -webkit-transition: 0.5s ease-out;
    -moz-transition: 0.5s ease-out;
    -o-transition: 0.5s ease-out;
    transition: 0.5s ease-out;
}

.card-img-top {
    width: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.legenda-imagem {
    border-radius: 0px 0px 10px 10px;
    background-color: var(--rosa);
    color: var(--branco);

    font-size: 22px;
    text-align: center;
}

/*============================================= FOOTER ===========================================*/



/*============================================= Botão Ver Mais ===========================================*/
.ver_mais_session {
    margin-top: 40px;
}

.botao_ver_mais {
    width: 300px;
    background-color: transparent;
    color: #797979;
    text-align: center;
}


/*============================================= Inicio Faixa Footer ===========================================*/


.faixa-footer {
    background-color: var(--rosa);
    width: 100%;
    height: 70px;
    margin-top: 40px;
}

/* DEPOISMENTO */
/* Estilo da seção de depoimentos */
.testimonial-section {
    background-color: #FAF4F4;
    /* Cor de fundo */
    padding: 40px 0;
    /* Espaçamento interno superior e inferior */
}

/* Estilo dos itens do Owl Carousel */
.testimonial-item {
    background-color: #ffffff;
    /* Cor de fundo dos depoimentos */
    border: 1px solid rgb(226, 189, 186);
    /* Borda ao redor dos depoimentos */
    padding: 20px;
    /* Espaçamento interno dos depoimentos */
    text-align: center;
    /* Centraliza o texto */
}

/* Estilo do texto do depoimento */
.testimonial-item p {
    font-size: 16px;
    /* Tamanho da fonte do depoimento */
    color: #333;
    /* Cor do texto do depoimento */
}

/* Estilo do nome do cliente */
.testimonial-item p.client-name {
    font-size: 14px;
    /* Tamanho da fonte do nome do cliente */
    color: #777;
    /* Cor do nome do cliente */
}

/* Estilo das aspas duplas */
.custom-quotes {
    font-size: 25px;
    /* Tamanho da fonte das aspas */
    color: #555;
    /* Cor das aspas */
    display: inline-block;
    /* Garante que as aspas não quebrem a linha */
    margin: 0 5px;
    /* Espaçamento entre as aspas e o texto */
}

.stars {
    color: yellow;
}

/*============================================= Inicio Faixa Footer ===========================================*/

.footer_mobile {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 80px;
    background-image: linear-gradient(rgb(226, 189, 186), rgb(226, 189, 187));
    display: flex;
    border-top: 1px solid rgba(155, 113, 113, 0.445);
    z-index: 999;
}

.column {
    width: 33%;
    height: 100%;
}

.link_footer_m {
    text-decoration: none;
}

/*============================================= Inicio Footer ===========================================*/



.a_footer {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
}


.form-control {
    background: transparent;
    border-color: #545454;
}

.form-control:focus {
    background: transparent;
}

/* Defina a cor do footer com um pouco de transparência */
footer {
    position: relative;
    width: 100%;
    background-image: url('https://i.pinimg.com/originals/11/82/22/118222111d00f289e1a979d0fb153349.jpg');
    background-size: cover;
    background-position: center;
    color: white; /* Define a cor do texto para branco ou uma cor visível */
    z-index: 1; /* Coloca o footer na frente do conteúdo pseudo-elemento */
  }
  
  /* Crie um pseudo-elemento para a cor sobreposta */
  footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(226, 189, 186, 0.89); /* Cor e transparência da sobreposição */
    z-index: -1; /* Coloca a sobreposição atrás do footer */
  }
  


/*============================================= Inicio itens ===========================================*/


/*Itens*/

.checkbox_termo {
    -webkit-box-shadow: 0px 0px 22px -6px rgba(0, 0, 0, 0.6);
    -moz-box-shadow: 0px 0px 22px -6px rgba(0, 0, 0, 0.6);
    box-shadow: 0px 0px 22px -6px rgba(0, 0, 0, 0.6);
    background-color: var(--rosa);
    color: var(--branco);
    border-radius: 10px;
}

/*============================================= Inicio itens ===========================================*/



/* RESPONSIVIDADE - MEDIA QUERY */
/* Ocultar no mobile (tela menor que 500px) */
@media screen and (max-width: 699px) {

    .desktop,
    .tablet {
        display: none;
    }
}



/* Ocultar no desktop (tela maior que 1000px) */
@media screen and (min-width: 700px) {

    .celular,
    .tablet {
        display: none;
    }
}