@import url('https://fonts.googleapis.com/css2?family=Lilita+One&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 60px 0 0 0;
    /* Espaço para navbar topo fixo */
    background-color: #f0f4f8;
    /* Cor de fundo leve e profissional */
}

/* NAVBAR topo fixo */
.navbar {
    position: fixed;
    margin-top: -40px;
    left: 0;
    width: 100%;
    background-color: #003366;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);

    height: 10px;

}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
    z-index: 1001;
}

.nav-links {
    height: 0;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(20, 20, 20, 0.95);
    overflow-y: hidden;
    transition: 0.4s;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    margin-left: 12%;
    font-family: "Lilita One", sans-serif;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 220px;
    margin-left: -80px;


}

.nav-links :hover {
    background-color: #0059b3;

}


.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-left: -370px;
}

.li-top {

    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    padding: 8px 12px;

    transition: background-color 0.3s ease;
    border-radius: 6px;

}

/* CARROSSEL */
.carousel-wrapper {
    overflow: hidden;
    width: 95%;
    max-width: 1200px;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.8s ease-in-out;
    will-change: transform;
}

.carousel-card {
    flex: 0 0 25%;
    box-sizing: border-box;
    border-radius: 8px;
    overflow: hidden;
}

.carousel-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    transition: transform 0.3s ease;
}

.carousel-card img:hover {
    transform: scale(1.10);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 100%;
    transition: left 2s ease-in-out;
    opacity: 0;
}

.slide.active {
    left: 0;
    opacity: 1;
}

/* TÍTULO PRINCIPAL */
.main-title {
    text-align: center;
    margin: 40px 0 20px;
    color: #003366;
    font-size: 38px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

h5 {
    text-align: center;
    font-size: 50px;
    margin-top: 100px;
}



p {
    text-align: center;
    font-size: 25px;
    width: 50%;
    margin-left: 25%;
    margin-top: -50px;
}

/* CARDS */

.card-container {
    display: flex;
    justify-content: center;
    gap: 70px;
    padding: 20px;
    flex-wrap: wrap;


    background: #003366;
}

/* Card limpo: sem sombra, borda ou fundo */
.card {
    width: 350px;
    text-align: center;
    /* removi box-shadow, borda e background */
    transition: none;
    margin-left: 60px;

    padding-left: 60px;
    padding-right: 50px;


}

.card2 {
    width: 350px;
    text-align: center;
    /* removi box-shadow, borda e background */
    transition: none;
    margin-left: 60px;

    padding-left: 60px;
    padding-right: 50px;


}

/* Efeito hover apenas na imagem */
.card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
    cursor: pointer;
    display: block;
    border-radius: 6px;

    padding-right: 200px;
    object-fit: contain;

}

.card img:hover {
    transform: scale(1.05);
}

/* Título e texto fixos e separados da imagem, sem fundo ou borda */
.card h3,
.card p {
    margin: 10px 0 0 0;
    padding: 0 10px 15px 10px;
    color: white;
    font-family: Arial, sans-serif;
    background: transparent;
    text-align: center;
    pointer-events: none;
    /* texto não interfere no hover da imagem */
}

.card h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 6px;
}

.card p {
    font-size: 0.95em;
    line-height: 1.3;
    color: white;
    margin-bottom: 15px;
}

h4 {
    color: black;
    font-size: 40px;
    margin-top: -200px;
    text-align: center;

}

.p3 {

    font-size: 28px;
    border: solid red 1px;
    width: 130%;
    color: black;
}

.relatos {
    color: black;
    font-size: 25px;
    width: 120%;
    margin-left: -130px;
    /* ajuste específico do seu layout */
    padding: 10px;
    border: 3px solid transparent;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.relatos:hover {
    border-color: #0059b3;
}

/* Nav Bottom fixa, inicialmente oculta */
.nav-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-color: #003366;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-bottom.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-bottom ul {
    display: flex;
    justify-content: center;
    /* centraliza todos os botões */
    gap: 80px;
    /* reduz o espaço entre os botões */
    margin: 0;
    padding: 10px 0;
    list-style: none;
}

.nav-bottom ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    padding: 8px 12px;
    display: block;
    transition: background-color 0.3s ease;
    border-radius: 6px;
}

.nav-bottom ul li a:hover {
    background-color: #0059b3;
}

/* WhatsApp fixo no canto inferior esquerdo */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    /* acima da nav-bottom */
    right: 70px;
    /* mudou de left para right */
    width: 60px;
    height: 60px;
    z-index: 1100;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/*codico le mais*/
.texto-curto {
    overflow: hidden;
    max-height: 80px;
    /* altura visível do texto antes de expandir */
    transition: max-height 0.4s ease;
}

.texto-completo {
    max-height: 1000px;
    /* altura grande para mostrar tudo */
}

.btn-ver-mais {
    color: red;
    cursor: pointer;
    text-decoration: underline;
    font-size: 14px;
    margin-top: 5px;
    display: inline-block;
}

.rodape {
    margin-top: 10px;
    color: white;
    font-size: 30px;
}