  
  
  /* Estilos básicos para o mapa */
  body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

#map {
    height: 100%;
    width: 100%;
}

/* Estilo para o container do mapa */
.map-container {
    height: 600px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    /* border: 2px solid #ccc; */
    border-radius: 10px;
    overflow: hidden;
    padding-top: 120px;
}

/* Estilo para o título */
h1 {
    text-align: center;
    color: #fff;
    margin-top: 20px;
}

 /* Reset básico */
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Estilo do banner */

.h5
{ 
        font-family: 'Oswald', sans-serif;
        font-weight: 400;
        font-size: 2.1875em;
        letter-spacing: 0.32em;
        text-transform: uppercase;
        color: #fff;
        padding-bottom: 20px;
     }





.banner2 {
    background: none; /* Gradiente moderno */
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 20px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
    border: 2px solid #ee1616;
}

 /* Container do banner */
 .banner {
    position: relative;
    padding: 60px 20px;
    width: 100%;
    height: 400px; /* Altura do banner */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    border: 2px solid #ee1616;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid #ee1616;
    border-radius: 20px;
}

/* Imagem de fundo com baixa opacidade */
.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('http://stationlodge.elitaincorporadora.com.br/img/bg/not.jpg'); /* Substitua pelo caminho da sua imagem */
    background-size: cover;
    background-position: center;
    opacity: 0.5; /* Opacidade da imagem de fundo */
    z-index: -1;
}

/* Overlay escuro para melhorar a legibilidade do texto */
.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Cor do overlay */
    z-index: -1;
}

/* Estilo do conteúdo do banner */
.banner-content {
    z-index: 1;
}

.banner2 h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.banners p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Estilo do botão CTA */
.cta-button {
    font-family: 'Oswald', sans-serif;
    padding: 15px 30px;
    font-size: 20px;
    color: white;
    background-color: #ee1616; /* Cor do botão */
    border: none;
    border-radius: 20px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #141414; /* Cor do botão ao passar o mouse */
}

/* Responsividade */
@media (max-width: 768px) {
    .banner {
        height: 300px; /* Altura menor para dispositivos móveis */
    }

    .banner h1 {
        font-size: 2rem;
    }

    .banner p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* VIDEO */


        /* Reset básico */
        

        /* Container do thumbnail */
        .video-thumbnail {
            position: relative;
            width: 100%;
            max-width: 800px; /* Largura máxima do thumbnail */
            margin: 0 auto;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            cursor: pointer;
        }

        /* Imagem do thumbnail */
        .video-thumbnail img {
            width: 100%;
            display: block;
            transition: transform 0.3s ease;
        }

        /* Efeito de zoom ao passar o mouse */
        .video-thumbnail:hover img {
            transform: scale(1.1);
        }

        /* Overlay escuro para o ícone de play */
        .video-thumbnail::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* Cor do overlay */
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .video-thumbnail:hover::after {
            opacity: 1;
        }

        /* Ícone de play */
        .play-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background-color: rgba(0, 0, 0, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .video-thumbnail:hover .play-icon {
            opacity: 1;
        }

        .play-icon::before {
            content: '▶';
            font-size: 40px;
            color: #ee1616;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .video-thumbnail {
                max-width: 100%; /* Ocupa toda a largura em dispositivos móveis */
            }

            .play-icon {
                width: 60px;
                height: 60px;
            }

            .play-icon::before {
                font-size: 30px;
            }
        }

        
        
         /* Container do mapa */
         .mapa {
            position: relative;
            padding: 60px 20px;
            width: 100%;
            height: 400px; /* Altura do banner */
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            border: 2px solid #ee1616;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            border-radius: 20px;
        }
        
        .mapa::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('http://stationlodge.elitaincorporadora.com.br/img/mapa.jpg'); /* Substitua pelo caminho da sua imagem */
            background-size: cover;
            background-position: center;
            opacity: none;
            z-index: -1;
        }
        .mapa::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* Cor do overlay */
            z-index: -1;
        }
        
        /* Estilo do conteúdo do banner */
        .mapa-content {
            z-index: 1;
        }
      
  