

/* body */
/* ------------------------------------------------------- *//* ------------------------------------------------------- */
body {
    
    padding: 0;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1e2128;;
    color: #fff;
    text-align: center; 
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 80px; /* Ajuste conforme necessário */
    min-width: 100vw;
}

.containerBLK {
    padding-top: 40px; /* Adiciona um espaçamento extra no topo */
    padding-bottom: 40px;
    max-width: 100vw; /* Garante que nenhum container exceda a largura da viewport */
    overflow-x: hidden; /* Impede qualquer conteúdo de ultrapassar */
    
}

h1 {
    padding-top:70px ;
    color: #4dc3ff;
    font-size: 5rem;
    margin: 0;
    font-family: 'Inter', sans-serif;
    text-align: center;
    word-wrap: break-word;
    padding-bottom: 1rem;
}

h4 {
    color: #4dc3ff;
    font-size: 48px;
    margin: 0;
    font-family: 'Inter', sans-serif;
    text-align: center;
    word-wrap: break-word;
}

p {
    color: #b3b3b3;
    font-size: 20px;
    text-align: center;
    
    word-wrap: break-word;
}

@media (max-width: 1106px) {

    
    body {
        padding-top: 60px; /* Diminui o padding em telas menores */
        overflow-x: hidden; /* Remove o scroll horizontal */
        margin: 0; /* Remove qualquer margem padrão */
    }

    .containerBLK {
        padding-top: 20px;
        padding-bottom: 20px;
        width: 100%; /* Usa quase toda a largura da tela em tablets */
    }
}

/* Estilos para celulares */
@media (max-width: 480px) {
    body {
        padding-top: 40px; /* Diminui ainda mais o padding */
        overflow-x: hidden; /* Remove o scroll horizontal */
        margin: 0; /* Remove qualquer margem padrão */
    }

    .containerBLK {
        padding-top: 15px;
        padding-bottom: 15px;
        width: 100%; /* Ocupa 100% da largura em celulares */
    }

    /* Ajusta o tamanho da fonte para caber melhor em telas pequenas */
    h1, h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }
}
@media (max-width: 1186px) {
    h1, h4, p {
        word-wrap: break-word; /* Permite que o texto quebre quando necessário */
        margin: 0; /* Adiciona margens laterais para espaçamento responsivo */
    }

    h1 {
        font-size: 36px; /* Reduz o tamanho da fonte em telas menores */
    }

    h4 {
        font-size: 36px; /* Reduz o tamanho da fonte em telas menores */
    }

    p {
        font-size: 18px; /* Ajuste do tamanho da fonte */
        line-height: 1.5; /* Melhora a legibilidade aumentando o espaçamento entre linhas */
    }
}
@media (max-width: 1072px) {
    h1, h4, p {
        word-wrap: break-word; /* Permite que o texto quebre quando necessário */
        margin: 0; /* Adiciona margens laterais para espaçamento responsivo */
    }

    h1 {
        font-size: 36px; /* Reduz o tamanho da fonte em telas menores */
    }

    h4 {
        font-size: 26px; /* Reduz o tamanho da fonte em telas menores */
    }

    p {
        font-size: 18px;
        line-height: 1.5;
        max-width: 70%; /* Define a largura máxima para o parágrafo */
        margin: 0 auto; /* Centraliza horizontalmente */
        text-align: center; /* (Opcional) Alinha o texto no centro do próprio parágrafo */
    }
}

@media (max-width: 1072px) {


    h4 {
        font-size: 23px; /* Reduz o tamanho da fonte em telas menores */
    }

 
}
/* ------------------------------------------------------- *//* ------------------------------------------------------- */

/* Header */
/* ------------------------------------------------------- *//* ------------------------------------------------------- */
nav{
    background-image: url('../assets/banner.jpg');
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
     
}

.container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 10vh;
    z-index: 1000;
    
}


nav {
    position: fixed;
    top: 0;
    width: 110%;
    z-index: 1000000; /* Assegure que o nav tenha um z-index maior */
    background-image: url('../assets/banner.jpg');
    min-height: 12vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    height: 10vh;
}

.container-menu-mobile{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;

    position: fixed;
    z-index: 9;
    width: 50%;

    right: 0;

    top: -22vh ;

    background-color: var(--blue);
    padding-bottom: 1rem;

    transition: 0.3s all ease-in-out;
}

.container-menu-mobile.open{
    top: 12vh;
}

.container-menu-mobile a{
    background-color: #042646;
    width: 90%;

    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px;

    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 600;
}

#container-logo{
    height: 100%;
    margin-left: 25px;
    
}

#container-logo img{
    height: 9vh;
    width: auto;
}

.container-menu{
    display: flex;
    gap: 2.5rem;
    margin-right: 30px;
    
}

.container-menu a{
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;

    font-size: 1rem;

    transition: all ease-in-out 0.3s;

    position: relative;
}

.container-menu a::after{
    content: '';
    width: 0%;
    height: 2px;
    background-color: var(--white);
    position: absolute;
    bottom: -4px;
    left: 0;

    
}

.container-menu a:hover{
    color: var(--orange);
}

.container-menu a:hover::after{
    width: 100%;
    background-color: var(--orange);

    transition: all ease-in-out 0.3s;
}

.hamburguer{
    width: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
}

.hamburguer .line{
    width: 100%;
    height: 3px;
    background-color: var(--orange);

    transition: 0.3s all ease-in-out;
}

.hamburguer.open .line:first-child{
    transform: rotate(45deg) translateY(16px);

    margin-left: 23px;
}

.hamburguer.open .line:nth-child(2){
    transform: translateY(0px) rotate(45deg);
    
    margin-left: 0px
}

.hamburguer.open .line:last-child{
    transform: rotate(-45deg) translateY(-16px);
    margin-left: 23px;
}


/* ------------------------------------------------------- *//* ------------------------------------------------------- */


/* Capa sobre e a imagem do sobre o dr higor */
/* ------------------------------------------------------- *//* ------------------------------------------------------- */
#sobre {
    padding-top: 4rem;
    margin-top: 4rem;
    padding-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #323747; /* Mantém o fundo da seção */
    min-height: 100vh; /* Altura mínima da seção */
    box-sizing: border-box;
}

/* Configurações de container */
#sobre .container {
    display: flex;
    flex-direction: row;
    gap: 5rem; /* Espaçamento entre texto e imagem */
    width: 87%;
    max-width: 100%;
    align-items: center;
    justify-content: space-between;
}

/* Estilização do texto */
.text-container {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.text-container h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #4dc3ff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
    text-align: left;
}

.text-container p {
    font-size: 1.8rem;
    color: #dfdfdf;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

/* Estilo do botão */
.text-container .button {
    font-size: 1.7rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #027353;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.text-container .button:hover {
    background-color: #025a45;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Container de imagem */
#image-container {
    width: 35%; /* Proporção do contêiner da imagem */
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#image-container img {
    width: 100%; /* Garante que a imagem ocupe 100% do contêiner */
    border-radius: 12px;
    object-fit: cover;
    /* REMOVIDO o box-shadow para tirar o "retângulo" atrás da imagem */
    box-shadow: none;
}

/* Estilos para telas menores */
@media (max-width: 1494px) {


    .text-container h2 {
        font-size: 4rem; /* Ajuste para telas menores */
        margin-bottom: 1rem;
    }

    .text-container p {
        
        font-size: 1.5rem;
        line-height: 1.5;
        max-width: 100%; 
        padding-bottom: 20px;
    }

 
}


@media (max-width: 920px) {
    #sobre {
        padding-top: 3rem;
        padding-bottom: 1rem;
        min-height: 50vh;
    }

    #sobre .container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        padding: 1.5rem;
        text-align: center;
        height: 600px;
    }

    #image-container,
    .text-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .text-container h2 {
        font-size: 2.5rem; /* Reduzido para melhor ajuste em telas menores */
        text-align: center;
        margin-bottom: 1rem;
    }

    .text-container p {
        font-size: 1.2rem; /* Diminuído para melhorar legibilidade em telas pequenas */
        text-align: center;
        line-height: 1.5;
        max-width: 90%;
        padding: 0 1rem;
        margin: 0 auto;
    }

    .text-container .button {
        width: auto;
        padding: 0.75rem 1.5rem;
        text-align: center;
        margin-top: 1rem;
        font-size: 1.3rem;

    }

    #image-container img {
        display: none;
    }
}

@media (max-width: 600px) {


    .text-container h2 {
        font-size: 2rem;
        text-align: center;
    }

    .text-container p {
        font-size: 1rem;
        text-align: center;
        line-height: 1.5;
        padding: 0;
        margin: 0;
    }

    .text-container .button {
        width: 40%;
        text-align: center;
        margin-top: 1rem;
        font-size: 1.1rem;
    }

    #image-container img {
        width: 9%;
        margin: 0 auto;
    }
}




/* ------------------------------------------------------- *//* ------------------------------------------------------- */

.offer-box {
    background-color: #111; /* Cor de fundo escura */
    border-radius: 10px; /* Bordas arredondadas */
    padding: 30px; /* Espaçamento interno */
    width: 50%; /* Largura definida */
    margin: 50px auto; /* Centraliza horizontalmente na página */
    color: #fff; /* Cor do texto */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Sombra para destacar */
}

.offer-box h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 50px;
}

.item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
    font-size: 20px;
    padding: 10px 40px;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.item-price-new {
    color: #4dc3ff;
    font-size: 20px;
}

.item-price-old {
    color: #4dc3ff;
    font-size: 18px;
    text-decoration: line-through;
}

.Obs p {
    font-size: 15px;
    padding-top: 30px;
}

.Obs1 p{
    font-size: 18px;
    padding-top: 30px;
    color: #4dc3ff;
}


.button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 50px;
}

.payment-button {
    background-color: #4CAF50; /* Cor de fundo */
    color: white; /* Cor do texto */
    border: none;
    border-radius: 5px; /* Bordas arredondadas */
    min-width: 171px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2); /* Sombra para destaque */
}

.payment-button:hover {
    background-color: #45a049; /* Cor ao passar o mouse */
    transform: scale(1.05); /* Aumenta levemente o botão ao passar o mouse */
}

.payment-button:active {
    transform: scale(0.95); /* Dá um efeito de "clique" ao pressionar */
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    }
}

.payment-button {
    animation: pulse 0s infinite; /* Aplica a animação de pulsar */
}

/* Estilos responsivos para dispositivos móveis */
@media (max-width: 920px) {
    .offer-box {
        width: 90%; /* Aumenta a largura para ocupar mais espaço em telas menores */
        padding: 17px; /* Reduz o padding */
         
    }

    .offer-box h2 {
        font-size: 24px; /* Diminui o tamanho da fonte */
        padding-bottom: 20px; /* Reduz o espaçamento inferior */
    }

    .item {
        font-size: 18px; /* Ajusta o tamanho da fonte */
        padding: 10px 20px; /* Diminui o padding horizontal */
        flex-direction: column; /* Empilha o conteúdo para melhor visualização em telas menores */
        align-items: flex-start; /* Alinha à esquerda em telas menores */
    }

    .price-container {
        align-items: flex-start; /* Alinha à esquerda para dispositivos móveis */
    }

    .Obs p {
        font-size: 13px; /* Diminui o tamanho da fonte */
        padding-top: 15px;
        padding-bottom: 13px; /* Ajusta o espaçamento superior */
        min-width: 100%;
    }

    .Obs1 p{
        font-size: 16px; /* Diminui o tamanho da fonte */
        padding-top: 20px; /* Ajusta o espaçamento superior */
        min-width: 100%;
    }

    .payment-button {
        
        min-width: 110px;
        font-size: 14px;

    }

    .button-container {
        gap: 15px;
    }
}







/* Container for layout */
.corpoMaps{

        font-family: 'Arial', sans-serif;
        background-color: #1e2128;
        color: #333;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 50vh;

}


.boxMaps {
    display: flex;
    max-width: 100vw;
    background: #f3f3f3;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 80%;
}

/* Map section */
.map-section {
    flex: 2;
    height: 400px;
}

/* Info section */
.info-section {
    flex: 1;
    padding: 20px;
    background-color: #f3f3f3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #000000;
}

.info-section p {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.5;
    color: #000000;
}

.info-section ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 15px;
}

.info-section ul li {
    font-size: 15px;
    margin-bottom: 5px;
}

.info-section strong {
    color: #000000;
}




/* Responsive styles */
@media (max-width: 768px) {
    .boxMaps {
        flex-direction: column; /* Stacks the map and info sections vertically */
        align-items: center;
    }

    .map-section,
    .info-section {
        flex: 1;
        width: 100%;
        height: 300px; /* Reduces the height for smaller screens */
    }

    .info-section {
        padding: 15px;
    }

    .info-section h2 {
        font-size: 20px;
    }

    .info-section p,
    .info-section ul li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .info-section h2 {
        font-size: 18px;
    }

    .info-section p,
    .info-section ul li {
        font-size: 13px;
    }

    .map-section {
        height: 200px; /* Further reduce height for very small screens */
    }
}