/* Definindo as fontes principais */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora&display=swap');
/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Corpo do site */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Cabeçalhos principais */
h1, h2, h3 {
    font-family: "Oswald", serif;
    margin: 20px 0;
}
a{
    text-decoration: none;
}

/* Corpo de texto em artigos, parágrafos, etc */
p, ul, ol {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-align: left;
}


/* Botões */
button {
    font-family: 'Roboto', sans-serif;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


/* Fundo dos cartões e boxes */
.card, .box {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Seção de footer */
footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
}
h1{
    font-size: 32px;
    
}

/* Títulos em seções ou categorias */
h2 {
    font-family: "Oswald", serif;
    font-size: 32px;
    padding-bottom: 5px;
}
h3{
    font-size: 24px;
}
p{
    font-size: 18px;
    text-align: center;
}

h1, h2, h3, .cta, .menu a, .motivos span, .testimonials h4 {
    text-transform: uppercase;
}

/* ----- HEADER E MENU ----- */
header {
    background: #004aad;
    color: white;
    padding: 45px 30px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    top: 0;
    z-index: 1000;
}
li{
   list-style:none;
}
/* Menu Desktop */
.menu {
    display: flex;
    align-items: center;
    width: 100%;
}

.menu-desk {
    list-style: none;
    display: flex;
    gap: 15px;
    margin-left: auto;
}

.menu-desk li {
    display: inline;
}

.menu-desk a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    position: relative; 
    transition: color 0.3s ease;
    padding: 5px 10px;
    transition: 0.3s;
}

.menu-desk li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: #98ff00; 
    transition: width 0.3s ease;
}


.menu-desk li a:hover::after {
    width: 100%;
}


/* Botão Mobile */
.mobile-menu {
    display: none;
    font-size: 36px;
    cursor: pointer;
    position: absolute;
    right: 60px;
    top: 15px;
    z-index: 1100;
}

/* Menu Mobile */
.menu-mobile {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: #333;
    padding: 10px;
    text-align: end;
    z-index: 1050;
}

.menu-mobile li {
    padding: 10px 45px;
    text-decoration-thickness:unset;
}

.menu-mobile a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px;
}

.menu-mobile a:hover {
    background: #555;
}

/* Mostrar Menu Mobile ao Ativar */
.menu-mobile.active {
    display: flex;
}

/* ----- LOGO ----- */
.logo {
    position: absolute;
    top: 0px;
    left: 40px;
    width: 170px;
    border-radius: 100%;
    background-color: #004aad;
    border-color: #004aad;
    z-index: 1200;
}

.logo img {
    width: 170px;
    transition: transform 0.5s ease-in-out;
    border-width: 3px;
    border-radius: 100%;
    border-color: #004aad;
}

.logo img:hover {
    transform: rotate(-30deg);
}

/* ----- SEÇÕES ----- */
section {
    text-align: center;
    padding: auto;
}

/* Vídeo de Fundo */
.video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
}

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

/* Conteúdo sobre o vídeo */
.content {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    background: #004aadaa;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 900px; 
}

/* ----- IMAGENS ----- */
img.imagem {
    max-width: 100%;
    height: auto;
}

.parallax {
    background-image: url('/assets/garras.png'); /* Caminho da imagem */
    background-attachment: fixed; /* Fixa a imagem para o efeito */
    background-position: center;
    background-size: cover;
    min-height: 400px; /* Altura da seção */
    padding: 30px 20% 20px 20%;
}
#contato{
    padding: 30px 20% 20px 20%;
    background-color: #004aad;
    color: white;
}



.button {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    background: #98ff00;
    border: none;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.8s ease;
}

.button::before {
    animation: shine 2.5s infinite linear;
}
.button:hover::before {
    left: 100%;
}
/* Footer */
footer {
    background: #333;
    color: white;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    padding: 10px;
}

.footer-col h3 {
    margin-bottom: 10px;
    border-bottom: 2px solid white;
    display: inline-block;
    padding-bottom: 5px;
}
.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding: 20px 0;
}

.social-icons a {
    color: white;
    background: #004aad;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #033d91;
}
.whatsapp-float {
    text-decoration: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}

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

.whatsapp-float:hover {
    transform: scale(1.1);
}
.whatsapp-float i {
    font-size: 30px;
    color: white;
}
#motivos {
    background-image: url('/assets/galeria.png'); /* Caminho da imagem */
    background-size:cover;
    background-position: center;
    padding: 50px 20px;
    color: white; /* Para melhorar a legibilidade do texto */
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:space-around;
}

.carousel {
    position: relative;
    max-width: 30%;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-images img {
    max-width: 100%;
    flex: 1;
    object-fit: cover;
    border-radius: 10px;
}

.testimonials {
    text-align: center;
    padding: 50px 20px;
    background: #f4f4f4;
}

.testimonial-container {
    position: relative;
    max-width: 600px;
    margin: auto;
    overflow: hidden;
}

.testimonial-content {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.testimonial {
    flex: 1;
    padding: 20px;
    opacity: 0.5;
    transition: opacity 0.5s ease-in-out;
    display: none;
}

.active {
    opacity: 1; 
    display:block;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
}

.testimonial h4 {
    margin-top: 10px;
    font-weight: bold;
}

.polaroid {
    position: relative;
    display: inline-block;
    background-color: white;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: rotate(-5deg); /* Ajuste da rotação */
    transition: transform 0.3s ease; /* Animação suave */
    width: 40%;
}

.polaroid img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.polaroid:hover {
    transform: rotate(5deg); /* Rotação adicional ao passar o mouse */
}

span{
    color:#98ff00;
}
.font20{
    font-size: 20px;
}
.font25{
    font-size: 25px;
}
.font35{
    font-size: 35px;
}

/* ----- RESPONSIVIDADE ----- */
@media (max-width: 768px) {
    .menu-desk {
        display: none; /* Esconde o menu no mobile */
    }

    .mobile-menu {
        display: block; /* Exibe o botão hambúrguer */
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .carousel {
        position: relative;
        max-width: 80%;
    }
    #motivos{
        flex-direction: column;
        align-content:space-between;
    }
    .polaroid{
        width: 70%;
        margin-top: 40px;
    }
    .content{
        width: 100%;

    }
    #contato{
            padding: 30px 8px;
    }
    .parallax {
        padding: 30px auto;
    }
}

@keyframes shine {
    0% {
        left: -200%;
    }
    100% {
        left: 200%;
    }
}
