/* ESTILO SOMENTE CORPO DO SITE */
body {
    max-width: 98%;
    padding: 0;
    margin: 0 auto !important;
    background-color: #ffffff;
}
.titulomenu {
    margin-top: 10px;
    padding: 10px;
    background-color: #4682b4;
    text-align: right;
    color: #fff;
    font-size: 20px;
    border-radius: 50px 50px 50px 50px;
}

/* ///////////////////////////////////*/
/* ///////////////////////////////////*/
/* ///////////////////////////////////*/
/* ///////////////////////////////////*/

/* ESTILO MENU E RODAPE*/
/* Container do menu */
.menu-container {
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1000;
    border-color: #fff;
}

/* Botão do Menu */
.menu-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    background-color: #5a9bd6;
    ;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.menu-btn.active {
    background-color: tomato;
    transform: rotate(90deg);
}

.menu-btn div {
    width: 30px;
    height: 3px;
    background-color: #fff;
    transition: 0.4s;
}

.menu-btn div:nth-child(2) {
    margin: 6px 0;
}

/* Menu */
.menu, .submenu {
    position: absolute;
    top: 60px;
    left: 0;
    width: 250px;
    max-height: 90vh;
    overflow-y: auto;
    background-color: #4682b4;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    transition: transform 0.3s ease;
    z-index: 10;
    display: none;
}

.menu.show, .submenu.show {
    display: block;
}

/* Itens do Menu */
.menu ul li, .submenu ul li {
    list-style: none;
    padding: 15px;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    color: #fff;
    cursor: pointer;
    position: relative;
}

.menu ul li:hover, .submenu ul li:hover {
    background-color: #87CEEB;
}

/* Botão Voltar no Submenu */
.back-btn {
    display: flex;
    align-items: center;
    font-size: 14px;
    padding: 10px;
    color: #fff;
    background-color: #005f7f; /* Cor de fundo para o botão voltar */
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.back-btn:hover {
    background-color: #007f99; /* Cor ao passar o mouse */
}

.back-btn::before {
    content: '←';
    margin-right: 8px;
    font-size: 18px;
}
.linkmenu{
    color: #fff;
    text-decoration: none;
}
.linkmenu:hover{
    color: #fff;
    text-decoration: none;
}

/* Estilo para rodapé */
footer{
    background-color: #4682b4;
}
footer p{
    font-size: 10px;
    text-align: center;
    color: #fff;
    position: relative;
}

/* ////////////////////////////*/
/* ////////////////////////////*/
/* ////////////////////////////*/
/* ////////////////////////////*/
/* ////////////////////////////*/
/* ////////////////////////////*/

/* ESTILOS PARA FONTE DE TEXTO */
* {
    font-family: 'Trebuchet MS', sans-serif;
    color: #333; /* Ajuste a cor conforme necessário */
}

/* Estilos de título */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Calibri', sans-serif;
    text-align: center;
    font-weight: bold;
}

/* Parágrafos */
p {
    font-family: 'Calibri', sans-serif;
    line-height: 1.6;
    text-align: justify;
}

/* Links */
a {
    font-family: 'Calibri', sans-serif;
    color: #0056b3;
    text-decoration: none;
}

a:hover {
    color: #004494; /* Ajuste a cor do hover conforme necessário */
}

/* ///////////////////////////////////*/
/* ///////////////////////////////////*/
/* ///////////////////////////////////*/
/* ///////////////////////////////////*/

/* ESTILO PARA SLIDE DE FOTOS DA PRIMEIRA PAGINA */
section.slideshow {
    position: relative;
    width: 100%;
    max-width: 1080px;
    aspect-ratio: 3 / 2;
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;
}

section.slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

section.slideshow img.active {
    opacity: 1;
}

/* Esconde as setas de direção */
section.slideshow .prev,
section.slideshow .next {
    display: none;
}


/* ///////////////////////////////////*/
/* ///////////////////////////////////*/
/* ///////////////////////////////////*/
/* ///////////////////////////////////*/

/* ESTILO PARA INCORPORACAO DE VIDEOS */
iframe{
    position: relative;
    width: 100%;                  /* Largura responsiva */
    margin: 20px auto;
    overflow: hidden;
    border-radius: 10px;         /* Bordas arredondadas */
}

/* ///////////////////////////////////*/
/* ///////////////////////////////////*/
/* ///////////////////////////////////*/
/* ///////////////////////////////////*/

/* ESTILO SOMENTE PARA AGENDA DE LOCAÇÕES */
            .agenda-container {
                margin: 0 auto;
                max-width: 1200px;
            }

            .mes-container {
                margin-bottom: 40px;
            }

            table {
                width: 100%;
                border-collapse: collapse;
                margin-top: 10px;
                background-color: #fff;
                box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            }

            th, td {
                padding: 10px;
                text-align: center;
                border: 1px solid #ddd;
            }

            th {
                background-color: #f4f4f4;
            }

            .status {
                display: inline-block;
                padding: 5px 10px;
                border-radius: 4px;
                color: #fff;
                font-weight: bold;
            }

            .tomato {
                background-color: tomato;
            }
            .verde {
                background-color: #4caf50;
            }
            .azul {
                background-color: #2196f3;
            }
            .cinza {
                background-color: #9e9e9e;
            }
            .rosa {
                background-color: pink;
                color: black;
            }
            .marrom {
                background-color: #8b4513;
            }

            @media (max-width: 600px) {
                th, td {
                    font-size: 0.65rem;
                }
            }
/* ///////////////////////////////////*/
/* ///////////////////////////////////*/
/* ///////////////////////////////////*/
/* ///////////////////////////////////*/

/* ESTILO SOMENTE DA CALCULADORA DE DIARIAS */
/* estilo da nova calculadora */
#precos {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#precos h1 {
    font-size: 24px;
    text-align: center;
    color: #333;
}

#precos form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#precos label {
    font-weight: bold;
    margin-top: 10px;
}

#precos select,
#precos input[type="date"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#precos button {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background-color: #28a745;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
}

#precos button:hover {
    background-color: #218838;
}

#precos #animalTypeDiv.hidden {
    display: none;
}

#precos #result {
    margin-top: 20px;
    font-size: 18px;
    color: #333;
}


/* ///////////////////////////////////*/
/* ///////////////////////////////////*/
/* ///////////////////////////////////*/
/* ///////////////////////////////////*/

/* ESTILO PARA IMAGENS QUE ILUSTRAM TEXTO SIMPLES */

#imgmgg{
    max-width: 98%;
    top: 0;
    left: 0;
    padding: 0;
    margin: 20px auto;
    border-radius: 10px;
    width: 100%;
    height: 100%;
}

/* ///////////////////////////////////*/
/* ///////////////////////////////////*/
/* ///////////////////////////////////*/
/* ///////////////////////////////////*/

/* ESTILO SOMENTE PARA GALERIA DE FOTOS*/

.pmosaic{
    color: #0056b3;
}
#galeriasite {
    padding: 10px;
    background-color: #fff;
}

/* Contêiner em grade para o layout de mosaico */
.galeria-container {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-auto-rows: 150px;
}

/* Estilo para as imagens */
.galeria-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Efeito de zoom ao passar o mouse */
.galeria-container img:hover {
    transform: scale(1.05);
}

/* Modal para imagem em tela cheia */
#imagemTelaCheia {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Imagem ampliada no modal */
#imagemTelaCheia img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* ///////////////////////////////////*/
/* ///////////////////////////////////*/
/* ///////////////////////////////////*/
/* ///////////////////////////////////*/
/* ESTILO SOMENTE PARA A PAGINA DE REGRAS DA CASA */
.text-section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    color: #333;
}

/* Estilo para os cabeçalhos */
.text-section h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #0056b3;
    text-align: center;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.text-section h2 {
    font-size: 1.5rem;
    color: #007bff;
    margin-top: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

/* Estilo para parágrafos */
.text-section p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 10px 0;
}

/* Estilo para texto em negrito */
.text-section p b {
    color: #444;
}

/* Estilo para links */
.text-section a {
    color: #0056b3;
    text-decoration: none;
}

.text-section a:hover {
    text-decoration: underline;
}

/* Espaçamento entre os itens */
.text-section p + h2 {
    margin-top: 25px;
}

/* Responsividade para dispositivos menores */
@media (max-width: 600px) {
    .text-section {
        padding: 15px;
        margin: 10px;
    }

    .text-section h1 {
        font-size: 1.8rem;
    }

    .text-section h2 {
        font-size: 1.3rem;
    }

    .text-section p {
        font-size: 0.9rem;
    }
}
