
html, body {
    overflow-x: hidden; /* Esconde rolagem horizontal */
    width: 100vw; /* Garante que não passe da largura da tela */
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #c16239;
    color: #fff;
}

header {
    background: #1e1e1e !important;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    height: 80px;
}

header img {
    height: 40px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

.navbar-collapse {
    background-color: #1e1e1e; /* Fundo escuro */
    padding: 10px; /* Adiciona espaço interno */
    border-radius: 5px; /* Bordas arredondadas */
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #1e1e1e; /* Fundo escuro */
    }
    
    .navbar-nav {
        text-align: center; /* Centraliza o texto */
    }

    .navbar-nav .nav-item {
        width: 100%; /* Garante que os itens ocupem a largura total */
    }
        
    .new-section-yellow {
        padding: 2px 2px !important; /* Reduz o espaçamento superior/inferior e lateral */
    }

    .new-section-yellow .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .card {
        margin-bottom: 10px; /* Reduz a distância entre os cards */
    }
    
    .container {
        padding-left: 5px !important;
        padding-right: 5px !important;
        width: 95% !important;
    }
}


.btn-rounded {
    border-radius: 50px; /* Ajuste conforme necessário */
}

.card-img-top {
    height: 500px; /* Altura fixa para todas as imagens */
    object-fit: cover; /* Mantém a proporção e corta excesso */
}

.social-icons a {
    font-size: 18px;
    display: inline-block;
    background: #fff;
    color: #c16239;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin-right: 10px;
    border-radius: 50%;
    transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
    text-decoration: none; /* Remove o sublinhado padrão */
}

.social-icons a:hover {
    background: #c16239;
    color: #1e1e1e;
    transform: scale(1.2); /* Aumenta o ícone em 20% */
    text-decoration: none; /* Garante que o sublinhado não apareça ao passar o mouse */
}

.txt-big {
    font-size: 2.4em !important;
}

.txt-mb3 {
    padding-bottom: "3px";
}

.txt-black {
    color: #606060;
}
.txt-primary {
    color: #c16239;
}
.txt-exclamacao {
    color: #339EBF;
}

.header-header {
    background-color: #1e1e1e; 
    padding: 20px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    color: white;
}

.header-ul {
    list-style: none; 
    display: flex; 
    gap: 20px; 
    margin: 0; 
    padding: 0;
}

.header-nav {
    color: white; 
    text-decoration: none; 
    font-size: 1.2em;
}

.hero {
    text-align: center;
    padding: 100px 5px;
}

.hero h2 {
    font-size: 2.5em;
    font-weight: bold;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.cta-button {
    background: none;
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 30px;
    display: inline-block;
    font-size: 1.2em;
}

.cta-button:hover {
    background: white;
    color: #c16239;
}

.container {
    width: 80%;
    margin: auto;
    padding: 40px 0;
    max-width: 100%;
    overflow: hidden;
}


.container-header {
    width: 80%;
    margin: auto;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
}
.container-white {
    width: 80%;
    margin: auto;
    padding: 40px 0;
    background: #ffffff;
}

.info-section {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.card-body h3 {
    font-size: 1.4em;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
} 

.card {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    max-width: 100%;
    overflow-x: hidden;
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.card p {
    font-size: 1em;
    margin-top: 10px;
}

.new-section-white {
    background-color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}
.new-section-yellow {
    background-color: #fdeacc;
    padding: 60px 20px;
    text-align: center;
}

.new-section {
    background-color: #fdeacc;
    padding: 60px 20px;
    text-align: center;
}

.new-section h2 {
    color: #333;
    font-size: 2.2em;
    font-weight: bold;
}

.new-section p {
    color: #555;
    font-size: 1.2em;
    max-width: 800px;
    margin: auto;
}

.new-section .container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.new-section .card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 30%;
    text-align: center;
}

.new-section .card img {
    width: 100%;
    border-radius: 10px;
}

.new-section .card h3 {
    color: #333;
    font-size: 1.5em;
    margin-top: 15px;
}

.new-section .card p {
    color: #666;
    font-size: 1em;
}


.testimonial-section {
    background-color: #c16239;
    padding: 80px 20px;
    text-align: center;
    color: white;
    position: relative;
}


.testimonial-section div {
    max-width: 800px;
    margin: auto;
}

.testimonial-section p.stars {
    font-size: 2em;
}

.testimonial-section p.quote {
    font-size: 1.5em;
    font-style: italic;
}

.testimonial-section .testimonial-author {
    margin-top: 20px;
}

.testimonial-section .testimonial-author img {
    border-radius: 50%;
}

.testimonial-section .testimonial-author p {
    margin-top: 10px;
    font-weight: bold;
}

.footer {
    background-color: #1e1e1e;
    padding: 40px 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer div {
    flex: 1;
    min-width: 250px;
}

.footer h3 {
    margin-bottom: 10px;
}

.footer p {
    font-size: 1em;
    margin-bottom: 10px;
}

.footer .social-icons {
    display: flex;
    gap: 10px;
}

.footer input {
    padding: 10px;
    border-radius: 5px;
    width: 250px;
    border: none;
}

.footer button {
    background-color: #c16239;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    margin-top: 10px;
}

/* Personalização dos inputs */
.input-custom {
    border-radius: 8px;
    padding: 12px;
    border: none;
    font-size: 1rem;
}

/* Personalização do botão */
.btn-light {
    border-radius: 8px;
    padding: 12px;
    font-size: 1rem;
}

/* Personalização do Radio Button */
.form-check-input {
    background-color: white;
    border: 2px solid white;
}

.form-check-input:checked {
    background-color: #1e1e1e; /* Cor principal do site */
    border-color: #1e1e1e;
}

/* Estilizando o link do WhatsApp */
.whatsapp-link {
    color: #25D366; /* Cor verde do WhatsApp */
    text-decoration: none; /* Remover o sublinhado */
    font-weight: bold; /* Deixar o texto em negrito */
    border-radius: 4px; /* Bordas arredondadas */
    padding: 5px 10px; /* Espaçamento interno */
    background-color: #ffffff; /* Cor de fundo branca */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra suave */
    transition: all 0.3s ease; /* Transição suave para os efeitos */
}

.whatsapp-link:hover {
    background-color: #25D366; /* Fundo verde ao passar o mouse */
    color: #ffffff; /* Texto branco ao passar o mouse */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra mais forte ao passar o mouse */
}


