/* ===========================
   RESET
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
    color: #222;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* ===========================
   TOPO COM IMAGEM
=========================== */
.topo-imagem {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.topo-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===========================
   TOPO COM IMAGEM
=========================== */
.topo-imagem {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative; /* necessário para o menu ficar por cima */
    }

.topo-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    }

/* ===========================
   TOPO COM IMAGEM
=========================== */
.topo-imagem {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.topo-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
        object-position: left center !important;

}

/* ===========================
   MENU FIXO AO ROLAR
=========================== */
.menu {
    background: #000; /* fundo preto */
    padding: 14px 0;
    width: 100%;
    border-bottom: 2px solid #d4af37;

    position: sticky; /* fixa ao rolar */
    top: 0;           /* gruda no topo da tela */
    z-index: 999;     /* fica acima do conteúdo */
}

.menu ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    gap: 35px;
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

/* efeito moderno */
.menu a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: #d4af37;
    transition: 0.3s ease;
}

.menu a:hover::before {
    width: 100%;
}

.menu a:hover {
    color: #d4af37;
    transform: translateY(-2px);
}

.menu a.ativo {
    color: #d4af37;
}

.menu a.ativo::before {
    width: 100%;
}

/* ===== MENU MOBILE ===== */
@media (max-width: 768px) {

    /* Esconde o menu original no mobile */
    .menu ul {
        display: none;
        flex-direction: column;
        background: #000;
        position: absolute;
        top: 0px;
        right: 0;
        width: 70%;
        padding: 20px;
        border-left: 2px solid #d4af37;
        border-bottom: 2px solid #d4af37;
        z-index: 9999;
    }

    /* Mostra quando clicado */
    .menu ul.show {
        display: flex;
    }

    /* Botão mobile dentro do menu fixo */
    .menu-mobile {
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        position: absolute;
        right: 20px;
        top: 0px; /* alinhado com o menu desktop */
        z-index: 10000;
        color: #d4af37;
        font-weight: 600;
        font-size: 18px;
    }

    /* Ícone hamburguer */
    .menu-mobile .hamburguer {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .menu-mobile .hamburguer div {
        width: 25px;
        height: 3px;
        background: #d4af37;
    }
}



/* ===========================
   SEÇÕES
=========================== */
.secao {
    padding: 80px 20px;
    text-align: center;
}

.secao h2 {
    font-size: 32px;
    color: #d4af37;
    margin-bottom: 20px;
}

/* ===========================
   RODAPÉ
=========================== */
.rodape {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}


/* Remove padding da seção Home */
.secao.sem-padding {
    padding: 0;
}

/* ===========================
   CARROSSEL FULL WIDTH
=========================== */
.carousel {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: visible; /* IMPORTANTE */
    box-shadow: 0px 25px 40px rgba(0,0,0,0.35);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.ativo {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    box-shadow: 0px 40px 60px -20px rgba(0,0,0,0.5);
}


/* Botões laterais */
.carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    border: none;
    color: #fff;
    font-size: 32px;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s;
    z-index: 3;
}

.carousel button:hover {
    background: rgba(0,0,0,0.7);
}

.prev { left: 20px; }
.next { right: 20px; }

/* Bolinhas indicadoras */
.dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 4;
}

.dots span {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
    transition: 0.3s;
}

.dots .ativo {
    opacity: 1;
    background: #d4af37;
}

/* ===========================
   BLOCOS DA SESSÃO EMPRESA
=========================== */
.empresa-blocos {
    padding: 60px 0;
    background: #f5f5f5;
}

.container-blocos {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.bloco {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
}

/* Efeito ao aparecer */
.bloco.aparecer {
    opacity: 1;
    transform: translateY(0);
}

/* Hover moderno */
.bloco:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.bloco h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #222;
}

.bloco p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Responsivo */
@media (max-width: 900px) {
    .container-blocos {
        flex-direction: column;
    }
}

/* ===========================
   TÍTULO E TEXTO DA EMPRESA
=========================== */
.titulo-empresa {
    max-width: 90%;
    margin: 0 auto 50px auto;
    padding: 0 20px;
    text-align: left;
}

.titulo-empresa h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.titulo-empresa .texto-intro {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}


/* ===========================
   BLOCOS DA SESSÃO EMPRESA
=========================== */
.empresa-blocos {
    padding: 60px 0;
    background: #f0f0f0;
}

.container-blocos {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.bloco {
    flex: 1;
    background: linear-gradient(135deg, #ffffff, #f9f3e0);
    border-top: 4px solid #d4af37;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    opacity: 0;
    transform: translateY(40px);
}

.bloco.aparecer {
    opacity: 1;
    transform: translateY(0);
}

.bloco:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.18);
    background: linear-gradient(135deg, #fff7dd, #f0e0b5);
}

.bloco h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #222;
}

.bloco p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .container-blocos {
        flex-direction: column;
    }
}

/* Sombra inferior do carrossel */
.carousel::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px; /* altura da sombra */
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 100%);
    pointer-events: none;
    z-index: 5;
}

/* Título */
.titulo-servicos {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #222;
}

/* Container */
.container-servicos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Box */

.box-servico {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.box-servico.aparecer {
    opacity: 1;
    transform: translateY(0);
}


.box-servico {
    background: #ffffffcc;
    border-radius: 12px;
    overflow: hidden;
    border-top: 4px solid #d4af37;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box-servico:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}


/* Imagem */
.box-servico img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #ddd;
}

/* Título */
.box-servico h3 {
    font-size: 20px;
    margin: 15px 20px 10px;
    color: #222;
}

/* Texto */
.box-servico p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0 20px 20px;
}

.servicos {
    padding: 60px 0;
    background:
    linear-gradient(rgba(212, 175, 55, 0.15), rgba(255, 199, 79, 0.822)),
    url('assets/img/textura-leve.png');
    background-size: cover;
    background-attachment: fixed;
}
.icone-servico {
    color: #d4af37;
    margin-right: 8px;
    font-size: 20px;
}

/* ====== Estilo da seção de Localização ====== */

.localizacao {
    background-color: #111;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.localizacao h2 {
    color: #d4af37;
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.localizacao-texto {
    font-size: 1.2rem;
    color: #ccc;
}

/* ====== CONTATO ====== */
.contato {
    padding: 60px 0;
    background: #575757;
    color: #fff;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contato-info h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 20px;
}

.contato-info p {
    font-size: 1.1rem;
    margin: 8px 0;
}

.contato-info a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.contato-info a:hover {
    color: #d4af37;
}

/* ====== FORMULÁRIO ====== */
.contato-form form {
    display: flex;
    flex-direction: column;
}

.contato-form label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #ffffff;
}

.contato-form input,
.contato-form textarea {
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #444;
    background: #cccccc;
    color: #2e2e2e;
    border-radius: 5px;
    font-size: 1rem;
    transition: 0.3s;
}

.contato-form input:focus,
.contato-form textarea:focus {
    border-color: #d4af37;
    outline: none;
}

.contato-form button {
    padding: 14px;
    background: #d4af37;
    color: #111;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.contato-form button:hover {
    background: #fff;
    color: #111;
}

/* ====== RESPONSIVO ====== */
@media (max-width: 768px) {
    .contato-grid {
        grid-template-columns: 1fr;
    }
}


/* CARTÃO DE VISITAS */
.card-contato {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.card-contato h2 {
    color: #d4af37;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ITENS DE CONTATO */
.item-contato {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.item-contato i {
    font-size: 28px;
    color: #d4af37;
    margin-right: 15px;
}

.item-contato .label {
    font-size: 0.9rem;
    color: #d4af37;
    margin-bottom: 3px;
}

.item-contato a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s;
}

.item-contato a:hover {
    color: #d4af37;
}

.contato-img {
    width: 100%;
    height: 200px; /* metade da altura anterior */
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.contato-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* mantém o enquadramento perfeito */
    display: block;
}

.footer {
    background: #fff;
    padding: 20px 0;
    border-top: 1px solid #ddd;
}

.footer-content {
    display: flex;
    align-items: center;
    margin:auto;
    }

.footer .copy {
    font-size: 1rem;
    color: #333; /* preto suave */
    margin: auto;
}

.footer .wa-link {
    display: inline-flex;
    align-items: center;
    margin-left: 5px;
}

.footer .wa-logo {
    width: 55px; /* ajuste se quiser menor */
    height: auto;
    margin-left: 6px;
    opacity: 0.9;
    transition: 0.3s;
}

.footer .wa-logo:hover {
    opacity: 1;
}


.retorno {
    margin-top: 10px;
    font-weight: bold;
}
.recaptcha-wrapper {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

/* WHATSAPP FLUTUANTE */

.whatsapp-float {
  position: fixed;
  bottom: 50px;
  right: 8px;
  width: 100px; /* tamanho do botão */
  height: auto;
  z-index: 1000;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-float img {
  width: 100%; /* tamanho do ícone */
  height: 100%;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
