* {
    
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
body {
    overflow-x: hidden;
    margin: 0;
    height: 100vh;
    background-color: #2ea1dbff;
   /* background: radial-gradient(circle at 30% 40%,
            rgb(0, 173, 239) 40%,
            rgb(7, 38, 74) 100%);*/
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
header {
    padding: 40px 20px;
    color: white;
    text-align: center;
}
header img {
    height: 75px;
    margin-bottom: 10px;
}
.hero {
    color: white;
    padding: 60px 20px;
    text-align: center;
}
.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}
header,
.hero,
footer {
    background: transparent;
}
.btns {
    background-color: #2ea1dbff;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1em;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}
.btn {
    background-color: #0a2c52;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1em;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}
.btn:hover{
    font-size: 2em;
}
.section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}
.feature {
    flex: 1 1 250px;
    padding: 20px;
    background-color: #eef6fc;
    border-radius: 10px;
}
.testimonials {
    background-color: rgba(241, 247, 253, 0.6); /* 70% opaco, 30% transparente */
    border-radius: 20px;
    width: 350px;
    height: 250px;
}
.carousel {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 40px auto 0;
    overflow: hidden;
    min-height: 180px;
}
#carlogo{
    width: 350px;
    height: auto;
}
.testimonial {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
    position: absolute;
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
}
.testimonial.active {
    opacity: 1;
    transform: scale(1);
    position: relative;
}
#sobre-nos{
    text-align: center;
    padding: 30px;
}
.testimonial p {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 15px;
    font-style: italic;
}
.testimonial h4 {
    font-weight: 700;
    color: #0a2c52;
}
footer {
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 1000;
}
.instagram {
    position: fixed;
    bottom: 160px;
    right: 30px;
    z-index: 1000;
}
.facebook {
    position: fixed;
    bottom: 90px;
    right: 30px;
    z-index: 1000;
}
.whatsapp button,
.facebook button,
.instagram button {
    background-color: transparent;
    border: none;
    border-radius: 50%;
    padding: 15px;
    cursor: pointer;
}
.facebook button img,
.instagram button img {
    width: 75px;
    height: 75px;
}
.whatsapp button img{
    width: 65px;
    height: 65px;
}
/* Estilos do popup */
#popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
#popup .popup-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
#popup .popup-content button.cancelar {
    margin-top: 20px;
    background-color: transparent;
    color: #0a2c52;
    border: none;
    font-size: 1em;
    cursor: pointer;
}

#menu {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
#popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
#popup2 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
#menu2 {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 300px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.video-container {
    max-width: 320px;
    aspect-ratio: 9 / 16; /* formato Reels */
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    margin: 40px auto;
}


































#btnfechar {
    margin-top: 20px;
    background-color: transparent;
    color: #0a2c52;
    border: none;
    font-size: 1em;
    cursor: pointer;
}
.btns {
    margin-top: 15px;
    display: block;
}
.video {
    display: none; /* Esconde todos os vídeos */
}
.video.active {
    display: block; /* Mostra apenas o vídeo ativo */
    text-align: center; /* Opcional, centraliza */
}
.carousel {
    position: relative;
    width: 100%;
    max-width: 600px; /* Ajuste conforme seu layout */
    margin: 0 auto;
}
.video-container {
    margin: 40px auto;
    width: 350px; /* Largura padrão para desktops */
    height: 400px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}