/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Navbar */
/* Navbar */
#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(74, 44, 42, 0.12); /* Transparência */
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px); /* Efeito de desfoque */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra */
    height: 100px;
}

#navbar .logo img {
    height: 150px; /* Ajuste o tamanho da logo */
}

#navbar .nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

#navbar .nav-links li {
    margin-left: 2rem;
    position: relative;
}

#navbar .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

#navbar .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #D4A55E;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

#navbar .nav-links a:hover {
    color: #D4A55E;
}

#navbar .nav-links a:hover::after {
    width: 100%;
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background: white;
    margin: 4px 0;
    transition: 0.4s;
}

/* Responsividade */
/* Responsividade */
/* Responsividade */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex; /* Mostra o botão em telas pequenas */
    }

    .nav-links {
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background: rgba(74, 44, 42, 0.9);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem 0;

        /* Correção: Inicialmente escondido */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    /* Quando ativo, o menu aparece */
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links li {
        margin: 1rem 0;
        text-align: center;
    }
}

/* Carousel */
.carousel {
    position: relative;
    width: 100%;
    height: 80vh; /* Reduzindo a altura do carousel */
    overflow: hidden;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}

.carousel-item {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Mantém a proporção e cobre o espaço */
    object-position: center 30%; /* Ajusta o enquadramento da imagem */
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

/* Hero Section (sobreposta ao carousel) */
.hero {
    position: relative;
    height:107vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 120px; /* Espaço para o menu */
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-content .btn {
    background: #D4A55E;
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
}

.hero-content .btn:hover {
    background: #B8864E;
}
/* Seções */
section {
    padding: 4rem 2rem;
}

section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #4A2C2A;
}

/* Serviços */
.service-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 1rem;
    width: 30%;
    margin: 1rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.card h3 {
    margin: 1rem 0;
    color: #4A2C2A;
}

.contact-info {
    margin-top: 2rem;
    text-align: center;
    font-size: 1.1rem;
    color: #555;
}

.contact-info p {
    margin: 0.5rem 0;
}

/* Contato */
.contact form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
}

.contact input, .contact textarea {
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact button {
    background: #4A2C2A;
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact button:hover {
    background: #D4A55E;
}

/* Rodapé */
footer {
    background: #4A2C2A;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #4A2C2A;
        position: absolute;
        top: 60px;
        left: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 1rem 0;
        text-align: center;
    }

    .service-cards .card {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    section h2 {
        font-size: 1.5rem;
    }
}

/* Sobre Nós */
/* Sobre Nós */
.about {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.about-content h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #4A2C2A;
    margin-bottom: 2rem;
}

.about-grid {
    display: flex;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 3rem auto; /* Espaço abaixo do grid */
}

.about-text {
    flex: 2; /* Ocupa 2/3 do espaço */
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-video {
    flex: 1.5; /* Aumenta o espaço do vídeo */
}

.about-video video {
    width: 100%;
    max-width: 600px; /* Aumenta o tamanho máximo do vídeo */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .about-video video {
        max-width: 100%; /* Vídeo ocupa toda a largura em telas pequenas */
    }
}
/* Recursos (Features) */
.about-features {
    display: flex;
    gap: 2rem;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature img {
    width: 60px;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.5rem;
    color: #4A2C2A;
    margin-bottom: 1rem;
}

.feature p {
    font-size: 1rem;
    color: #555;
}

/* Responsividade */
@media (max-width: 768px) {
    .about-grid {
        flex-direction: column;
    }

    .about-video video {
        max-width: 100%; /* Vídeo ocupa toda a largura em telas pequenas */
    }

    .about-features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        max-width: 100%;
    }
}
/* Responsividade */
@media (max-width: 768px) {
    .about-grid {
        flex-direction: column;
    }

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
    }

    .about-features {
        flex-direction: column;
        align-items: center;
    }

    .feature {
        max-width: 100%;
    }
}


/* Estilos do Acordeão */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
    text-align: left;
    background-color: #f9f9f9;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #f1f1f1;
}

.accordion-header .icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.accordion-content {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content p {
}

/* Quando o item está ativo */
.accordion-item.active .accordion-header {
    background-color: #4A2C2A;
    color: white;
}

.accordion-item.active .accordion-header .icon {
    margin: 1rem 0;
    color: #555;
    transform: rotate(45deg);
}

.accordion-item.active .accordion-content {
    max-height: 500px; /* Ajuste conforme o conteúdo */
    padding: 1rem;
}

.about-video video {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Estilos para as páginas de confirmação e erro */
.thank-you, .error {
    text-align: center;
    padding: 4rem 2rem;
}

.thank-you h2, .error h2 {
    font-size: 2.5rem;
    color: #4A2C2A;
    margin-bottom: 1rem;
}

.thank-you p, .error p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.btn {
    background: #D4A55E;
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #B8864E;
}

@media (max-width: 768px) {
    .btn {
        display: block; /* Faz o botão ocupar a largura total */
        width: 100%; /* Define uma largura adequada */
        margin: 10px auto; /* Centraliza o botão */
        text-align: center;
        padding: 12px 20px;
        font-size: 16px;
    }
}



.contact-info p {
    margin: 5px 0;
}

.map-container {
    margin: 10px auto;
    max-width: 600px;
    text-align: center;
}
.map-container iframe {
    display: block;
    margin: 0 auto;
    border-radius: 10px; /* Opcional: bordas arredondadas */
}

.group-links ul {
    list-style: none;
    padding: 0;
}

.group-links li {
    display: inline;
    margin: 0 10px;
}

.group-links a {
    color: #d4a373;
    text-decoration: none;
    font-weight: bold;
}

.group-links a:hover {
    text-decoration: underline;
}


/* Estilo para o Banner de Cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    z-index: 9999;
    display: none;
}

.cookie-banner p {
    margin: 0;
}

.cookie-banner a {
    color: #fff;
    text-decoration: underline;
}

.cookie-banner button {
    margin-left: 15px;
    padding: 5px 10px;
    background-color: #28a745;
    border: none;
    color: white;
    cursor: pointer;
}

.cookie-banner button:hover {
    background-color: #218838;
}

