/*
Theme Name: Meu Tema Papel de Parede e Persianas
Theme URI: http://papeldeparede.com.br
Author: Seu Nome
Author URI: http://papeldeparede.com.br
Description: Um tema moderno para papel de parede e persianas.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: Papel de parede e persianas
*/

/* Adiciona o scroll suave para toda a página */
html {
  scroll-behavior: smooth;
   box-sizing: border-box;
    overflow-x: hidden;
}
*, *:before, *:after {
    box-sizing: inherit;
}

.page-content p,
.page-content ul,
.page-content ol {
    word-wrap: break-word; /* Força a quebra de linha em palavras longas */
    overflow-wrap: break-word; /* Uma versão mais moderna do word-wrap */
}

/* Garante que o contêiner não crie scroll horizontal */
.page-container {
    overflow-x: hidden;
}

/* Tipografia e Cores Globais */
body {
    font-family: 'Poppins', sans-serif;
    color: #444; /* Cor da fonte padrão */
    margin: 0;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Container padrão para centralizar o conteúdo */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Títulos das Seções */
.section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.3em;
    color: #888;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.6;
    text-align: center;
}


/* ========================================================== */
/* 1. NAVEGAÇÃO                                               */
/* ========================================================== */
.site-header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999; /* Garante que o cabeçalho fique acima de outros elementos */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Sombra sutil para um efeito de elevação */
    transition: background-color 0.4s ease-in-out; /* Transição para a cor de fundo */
    background-color: #40181E; /* Cor de fundo branca quando fixo */
}

/* Opcional: Efeito de desvanecimento no logo */
.site-header.sticky .nav-brand img {
    max-height: 90px; /* Reduz o tamanho do logo ao fixar */
    transition: max-height 0.4s ease-in-out;
}
.main-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
    background-color: #ffffff;
}

.nav-brand img {
    height: 130px; 
    width: auto;
}

.nav-center {
    margin: 0 auto;
}

.primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.primary-menu li {
    margin: 0 15px;
}

.primary-menu a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
transition:
    color 0.2s ease-in, /* Transição mais rápida para a cor */
    border-bottom 0.5s cubic-bezier(0.19, 1, 0.22, 1); /* Transição mais lenta para o sublinhado */
    font-size: 1.05rem;
}

.primary-menu a:hover {
    color: #858585;
    border-bottom:3px solid #050303; 
    padding-bottom: 13px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: #333;
    display: block;
}


/* ========================================================== */
/* 2. SEÇÃO HERO                                              */
/* ========================================================== */

/* Estilos para o banner (hero-section) */
.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90vh; /* Ocupa a altura total da tela */
    text-align: center;
    color: #fff; /* Cor do texto para contraste */
    overflow: hidden;
}

/* Fundo com imagem e sobreposição escura */
.background-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('URL_DA_SUA_IMAGEM.jpg'); /* Substitua pelo link da sua imagem */
    background-size: cover;
    background-position: center;
    z-index: 1; /* Fica atrás do conteúdo */
}

/* Efeito de escurecimento sobre a imagem para o texto se destacar */
.background-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Cor preta com 50% de opacidade */
}

/* Conteúdo do banner (texto e botões) */
.hero-content {
    position: relative;
    z-index: 2; /* Fica sobre a imagem */
    padding: 20px;
    max-width: 800px;
}

/* Título principal */
.hero-title {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Sombra para o texto se destacar */
}

/* Subtítulo */
.hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Botões de ação */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Estilos para a seção principal do banner */
#primary .hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* Fundo com imagem e sobreposição escura */
#primary .background-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

#primary .background-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Conteúdo do banner (texto e botões) */
#primary .hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 800px;
}

/* Título principal */
#primary .hero-title {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Subtítulo */
#primary .hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Botões de ação */
#primary .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

#primary .hero-button {
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Estilo do botão "Ligue Agora" */
#primary .primary-button {
    background-color: #2c3e50;
    color: #fff;
    border: 2px solid #2c3e50;
}

/* Estilo do botão do WhatsApp */
#primary .whatsapp-button {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

/* Efeito de hover nos botões */
#primary .primary-button:hover {
    background-color: #34495e;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

#primary .whatsapp-button:hover {
    background-color: #fff;
    color: #2c3e50;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    #primary .hero-title {
        font-size: 2em;
    }
    #primary .hero-subtitle {
        font-size: 1em;
    }
    #primary .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    #primary .hero-button {
        width: 80%;
    }
}

.hero-button {
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px; /* Botões arredondados */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Estilo do botão primário (LIGUE AGORA) */
.primary-button {
    background-color: #007bff; /* Azul vibrante */
    color: #fff;
    border: 2px solid #007bff;
}

/* Estilo do botão do WhatsApp */
.whatsapp-button {
    background-color: #25d366; /* Verde do WhatsApp */
    color: #fff;
    border: 2px solid #25d366;
}

/* Efeito de hover nos botões */
.hero-button:hover {
    transform: translateY(-5px); /* Efeito de elevação */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Sombra para destacar */
}

/* Para telas menores (responsividade) */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2em;
    }
    .hero-subtitle {
        font-size: 1em;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-button {
        width: 80%;
    }
}

.nav-button {
    background-color: transparent;
    color: #fff;
    border: none;
    font-size: 2em;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
    transition: background-color 0.3s ease-in-out;
    opacity: 0.7; /* Transparência padrão */
}

.nav-button:hover {
    background-color: rgba(0, 0, 0, 0.3); /* Fundo escuro sutil ao passar o mouse */
    opacity: 1; /* Transparência total */
}

/* Responsividade: Botões menores em telas menores */
@media screen and (max-width: 768px) {
    .nav-button {
        font-size: 1.5em;
        padding: 5px 10px;
    }
}


/* ========================================================== */
/* 3. SEÇÃO "O QUE FAZEMOS"                                   */
/* ========================================================== */

/* ========================================================== */
/* 4. SEÇÃO O QUE FAZEMOS */
/* ========================================================== */

.section-que-fazemos {
    padding: 80px 20px;
    background-color: #f7f7f7; /* Cor de fundo suave para destacar a seção */
    text-align: center;
}

.section-que-fazemos .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1em;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

.cards-container {
    display: flex;
    flex-wrap: wrap; /* Permite que os cards quebrem para a próxima linha em telas menores */
    justify-content: center;
    gap: 30px; /* Espaçamento entre os cards */
}

.card {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    max-width: 500px;
    text-align: center;
}

.card:hover {
    transform: translateY(-10px); /* Efeito de "elevação" ao passar o mouse */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12); /* Sombra mais intensa */
}

.card-icon {
    margin-bottom: 20px;
}

.card-icon svg {
    width: 60px; /* Aumenta o tamanho do ícone */
    height: 60px;
    fill: #5856D6; /* Usa a cor principal */
    transition: fill 0.3s ease-in-out;
}

.card:hover .card-icon svg {
    fill: #007bff; /* Muda a cor do ícone no hover para um azul vibrante */
}

.card-title {
    font-size: 1.5em;
    font-weight: 600;
    color: #444;
    margin-bottom: 15px;
}

.card-text {
    font-size: 1em;
    color: #777;
    line-height: 1.6;
}

/* Responsividade para telas menores */
@media screen and (max-width: 768px) {
    .section-title {
        font-size: 2em;
    }

    .section-subtitle {
        font-size: 1em;
    }

    .cards-container {
        flex-direction: column; /* Empilha os cards em telas pequenas */
        align-items: center;
    }
}


/* ========================================================== */
/* 4. SEÇÃO "SOBRE NÓS"                                       */
/* ========================================================== */
/* Seção Sobre Nós */
.section-sobre-nos {
    padding: 100px 0;
    background-color: #f7f7f7;
}

.sobre-nos-wrapper {
    display: flex;
    flex-direction: row-reverse; /* Inverte a ordem para que o texto fique primeiro no desktop */
    align-items: center;
    gap: 50px;
}

/* Efeito de degradê para o título principal */
.section-title.gradient-text {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.2;
    background-image: linear-gradient(to right, #2c3e50, #a08c5c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.section-subtitle-seo {
    font-size: 1.2em;
    font-style: italic;
    color: #555;
    margin-bottom: 30px;
    font-weight: 400;
}

.sobre-nos-content p {
    font-size: 1em;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
}

.sobre-nos-image {
    flex: 1 1 50%;
    text-align: right;
}

.sobre-nos-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.sobre-nos-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.button-container {
    margin-top: 30px;
}

/* Estilo do botão primário */
.button-primary {
    display: inline-block;
    padding: 15px 30px;
    background-color: #2c3e50;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.button-primary:hover {
    background-color: #a08c5c;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsividade */
@media (max-width: 992px) {
    .sobre-nos-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .sobre-nos-content, .sobre-nos-image {
        flex: 1 1 100%;
    }
    .sobre-nos-image img {
        margin-top: 20px;
    }
    .sobre-nos-content .section-title,
    .sobre-nos-content .section-subtitle-seo {
        text-align: center;
    }
}

/* Seção de Últimos Serviços Realizados - CSS Corrigido */
.latest-services-section {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-main-title.gradient-text {
    background-image: linear-gradient(to right, #2c3e50, #a08c5c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: left;
    
    animation: fade-in 1.5s ease-out;
}

.section-overline, .section-description, .services-gallery {
    animation: slide-up 1.5s ease-out;
}

.section-overline {
    font-size: 0.85em;
    color: #a08c5c;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: left;
    font-weight: 500;
}

.section-description {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 900px;
    text-align: left;
}

/* Galeria de serviços - Layout e Imagens */
/* Seção de Últimos Serviços Realizados - CSS Corrigido */
.latest-services-section {
    padding: 100px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-main-title.gradient-text {
    background-image: linear-gradient(to right, #2c3e50, #a08c5c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    text-align: left;
    
    animation: fade-in 1.5s ease-out;
}

.section-overline, .section-description, .services-gallery {
    animation: slide-up 1.5s ease-out;
}

.section-overline {
    font-size: 0.85em;
    color: #a08c5c;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: left;
    font-weight: 500;
}

.section-description {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 900px;
    text-align: left;
}

/* Galeria de serviços - Layout e Imagens */
.services-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-main-image {
    flex: 2 1 60%;
    position: relative;
    height: 550px; /* Altura ajustada aqui */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.gallery-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-main-image:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.gallery-main-image:hover img {
    transform: scale(1.05);
}

.gallery-grid-images {
    flex: 1 1 35%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
}

.gallery-grid-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.gallery-grid-images img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Animações Keyframes */
@keyframes fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slide-up {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsividade */
@media (max-width: 992px) {
    .services-gallery {
        flex-direction: column;
    }
    .gallery-main-image,
    .gallery-grid-images {
        flex: 1 1 100%;
    }
    .gallery-main-image {
        height: 400px; /* Altura ajustada para mobile */
    }
    .gallery-grid-images {
        grid-template-columns: 1fr;
    }
    .section-main-title,
    .section-description,
    .section-overline {
        text-align: center;
    }
    .gallery-grid-images img {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .gallery-main-image {
        height: 300px; /* Altura ajustada para telas menores */
    }
    .gallery-grid-images img {
        height: 180px;
    }
}


/* ========================================================== */
/* 5. SEÇÃO "DEPOIMENTOS"                                     */
/* ========================================================== */
/* ========================================================== */
/* 5. SEÇÃO DEPOIMENTOS */
/* ========================================================== */
/* Seção de Depoimentos */
.section-depoimentos {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.depoimentos-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.depoimentos-bg-left {
    flex: 1;
    background-color: #f7f7f7; /* Cor do lado esquerdo */
}

.depoimentos-bg-right {
    flex: 1;
    background-color: #fff; /* Cor do lado direito */
}

.depoimentos-container {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.depoimentos-content {
    flex: 1;
    text-align: left;
    max-width: 50%;
}

.section-title {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    color: #2c3e50;
}

/* Efeito de degradê no título */
.section-title.gradient-text {
    background-image: linear-gradient(to right, #2c3e50, #a08c5c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.section-subtitle {
    color: #7f8c8d;
    font-size: 1.1em;
    margin-bottom: 60px;
    font-weight: 300;
}

.depoimentos-wrapper {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.depoimento-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.depoimento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.rating {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.star-rating {
    color: #a08c5c;
}

.depoimento-texto {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.depoimento-autor {
    font-size: 0.9em;
    font-weight: bold;
    color: #333;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

/* Responsividade */
@media (max-width: 992px) {
    .depoimentos-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .depoimentos-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .section-title, .section-subtitle {
        text-align: center;
    }
}

/* Estilo para o botão de WhatsApp na navegação */
.whatsapp-nav-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    background-color: #25d366; /* Cor verde do WhatsApp */
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
    margin-right: 15px; /* Espaçamento entre o botão e o ícone do menu mobile */
}

.whatsapp-nav-button:hover {
    background-color: #128c7e; /* Verde mais escuro ao passar o mouse */
    transform: scale(1.05); /* Efeito de zoom sutil */
}

.whatsapp-nav-button .whatsapp-icon {
    width: 20px;
    height: 20px;
    fill: #fff; /* Garante que a cor seja branca. Se o fundo for branco, mude para #333 */
    margin-right: 8px;
    /* Verifique se NÃO HÁ NENHUMA REGRA QUE ESCONDA O ÍCONE, como "display: none;" */
}

/* Responsividade: para telas menores, oculta o texto e mostra apenas o ícone */
@media screen and (max-width: 768px) {
    .whatsapp-nav-button {
        padding: 8px; /* Padding menor para o botão sem texto */
        border-radius: 50%; /* Torna o botão um círculo */
    }

    .whatsapp-nav-button .nav-button-text {
        display: none; /* Oculta o texto "ORÇAMENTO" */
    }

    .whatsapp-nav-button .whatsapp-icon {
        margin-right: 0; /* Remove a margem do ícone */
    }
}

/* ========================================================== */
/* 6. SEÇÃO "CONTATO"                                         */
/* ========================================================== */

/* Estilo da seção de Contato */
.section-contato {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

/* Fundo dividido em duas cores usando pseudo-elementos */
.section-contato::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: #f7f7f7; /* Cor do lado esquerdo (branco claro) */
    z-index: -1;
}

.section-contato::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: #ffffff; /* Cor do lado direito (branco puro) */
    z-index: -1;
}

/* Container principal com CSS Grid para alinhar o conteúdo */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Duas colunas de tamanho igual */
    gap: 50px; /* Espaço entre as colunas */
    align-items: center; /* Alinha verticalmente os itens no centro */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Coluna da Esquerda: Texto */
.contact-text-column {
    text-align: left;
}

.section-title {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    color: #2c3e50;
}

.section-subtitle {
    font-size: 1.1em;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 300;
}

/* Coluna da Direita: Bloco de Contato */
.contact-buttons-column {
    display: flex;
    flex-direction: column; /* Alinha o botão e o bloco de info verticalmente */
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Estilo do botão do WhatsApp */
.whatsapp-big-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background-color: #25d366;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-big-button:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-big-button .whatsapp-icon {
    margin-right: 10px;
}

.whatsapp-big-button .nav-button-text {
    font-size: 1em;
}

/* Estilo do bloco de informações de contato */
.contact-info-block {
    margin-top: 40px;
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-block h3 {
    font-size: 1.2em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info-item svg {
    fill: #a08c5c;
}

.contact-info-item p {
    margin: 0;
    font-size: 0.95em;
    color: #555;
    line-height: 1.4;
}

.contact-info-item a {
    text-decoration: none;
    color: #555;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: #a08c5c;
}

/* Responsividade */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Em mobile, vira uma única coluna */
        gap: 40px;
    }
    
    .contact-text-column,
    .contact-buttons-column {
        text-align: center;
    }

    /* Ajusta o fundo dividido para mobile */
    .section-contato::before,
    .section-contato::after {
        width: 100%;
        height: 50%;
    }
    .section-contato::before {
        top: 0;
    }
    .section-contato::after {
        top: 50%;
    }
}



/* ========================================================== */
/* 7. SEÇÃO PERSIANA MOTORIZADA                               */
/* ========================================================== */
/* Estilos para a seção principal de Persianas Motorizadas */
.section-persianas-motorizadas {
    padding: 80px 0; /* Espaçamento interno superior e inferior */
    background-color: #f8f8f8; /* Cor de fundo suave para destacar a seção */
}

.motorizada-wrapper {
    display: flex;
    flex-wrap: wrap; /* Permite que os elementos quebrem em telas menores */
    align-items: center; /* Alinha os itens verticalmente ao centro */
    gap: 50px; /* Espaço entre a imagem e o conteúdo */
}

/* Estilos para a imagem da persiana */
.motorizada-image {
    flex: 1 1 500px; /* Cresce e encolhe, com uma base de 500px para telas maiores */
    max-width: 50%; /* Garante que a imagem não ocupe mais que 50% da largura */
    border-radius: 8px; /* Cantos levemente arredondados */
    overflow: hidden; /* Garante que a imagem se ajuste ao border-radius */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Sombra suave para profundidade */
}

.motorizada-image img {
    display: block;
    width: 100%;
    height: auto;
}

/* Estilos para o conteúdo (texto e lista) */
.motorizada-content {
    flex: 1 1 400px; /* Cresce e encolhe, com uma base de 400px */
    max-width: 50%;
}

.section-title.left-aligned,
.section-subtitle.left-aligned {
    text-align: left; /* Alinha o texto à esquerda */
    margin-bottom: 20px;
}

.section-title.left-aligned {
    font-size: 2.5em; /* Fonte maior para o título */
    color: #333;
}

.section-subtitle.left-aligned {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
}

/* Estilos para a lista de benefícios */
.beneficios-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Espaço entre os itens da lista */
}

.beneficio-item {
    display: flex;
    align-items: flex-start; /* Alinha o ícone e o texto ao topo */
    gap: 15px; /* Espaço entre o ícone e o parágrafo */
}

.beneficio-item svg {
    flex-shrink: 0; /* Impede que o ícone encolha em telas menores */
    width: 28px;
    height: 28px;
    fill: #2c3e50; /* Cor do ícone - você pode ajustar */
}

.beneficio-item p {
    margin: 0;
    color: #444;
    line-height: 1.5;
}

/* Estilo para o botão "Solicitar Orçamento" */
.button-primary.large-button {
    display: inline-block;
    background-color: #2c3e50; /* Cor principal, pode ser ajustada */
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 40px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.button-primary.large-button:hover {
    background-color: #34495e; /* Cor do hover */
    transform: translateY(-3px); /* Efeito de "subir" no hover */
}

/* Responsividade: para telas menores, a imagem e o texto se alinham em uma coluna */
@media (max-width: 992px) {
    .motorizada-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .motorizada-image,
    .motorizada-content {
        max-width: 100%;
    }

    .section-title.left-aligned,
    .section-subtitle.left-aligned {
        text-align: center; /* Centraliza o texto em telas menores */
    }

    .beneficio-item {
        justify-content: center;
    }
}







/* Botão grande para CTA */
.button-primary.large-button {
    display: inline-block;
    background-color: #007bff; /* Ou a cor principal da sua marca */
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.button-primary.large-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* Responsividade */
@media screen and (max-width: 768px) {
    .motorizada-wrapper {
        flex-direction: column;
    }

    .motorizada-content {
        text-align: center;
    }

    .section-title.left-aligned,
    .section-subtitle.left-aligned {
        text-align: center;
    }

    .beneficio-item {
        justify-content: center;
        text-align: left; /* Mantém o texto alinhado */
    }
}


/* ========================================================== */
/* MEDIA QUERIES - RESPONSIVIDADE                             */
/* ========================================================== */

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 2em;
    }

    .section-subtitle {
        font-size: 1em;
    }
    
    .section-que-fazemos, .section-sobre-nos, .section-depoimentos, .section-contato {
        padding: 60px 15px; /* Reduz o padding em mobile */
    }
    
    .main-navigation {
        padding: 15px 20px;
    }

    .nav-center {
        margin: 0;
        order: 1;
        flex-grow: 1;
    }
    
    .nav-brand, .nav-right {
        order: 2;
    }

    .primary-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }

    .primary-menu li {
        margin: 10px 0;
    }
    
    .menu-toggle {
        display: flex;
    }

    .hero-section {
        flex-direction: column;
        height: auto;
    }

    .hero-item {
        flex: none;
        height: 50vh;
    }

    .hero-button {
        padding: 12px 25px;
        font-size: 0.8em;
    }

    .cards-container, 
    .sobre-nos-wrapper, 
    .depoimentos-wrapper, 
    .contact-wrapper {
        flex-direction: column;
    }

    .card, .depoimento-card, .contact-info-block, .contact-form-block {
        max-width: 100%;
    }

    .sobre-nos-content, .contact-info-block, .contact-form-block {
        text-align: center;
    }

    .sobre-nos-content p {
        text-align: left;
    }
}



/* ========================================================== */
/* ESTILO DO BANNER DE AVISO (Corrigido)                     */
/* ========================================================== */

.top-announcement-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px; /* Espaço entre o texto e os links de contato */
}

.announcement-text {
    flex-shrink: 0;
    margin-right: 15px;
}

.contact-links {
    display: flex;
    gap: 15px; /* Espaço entre os links de contato */
}

.contact-link {
    font-size: 3rem;
    color: #000; /* Cor do texto do link */
    text-decoration: none; /* Remove sublinhado */
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px; /* Espaço entre o ícone e o texto */
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 0.8; /* Efeito de opacidade ao passar o mouse */
}

/* ========================================================== */
/* ESTILO DO BANNER DE AVISO (NOVO E RESPONSIVO)              */
/* ========================================================== */

.top-announcement-bar {
    background-color: #fff; /* Cinza escuro (quase preto) */
    color: #000000a8;
    padding: 22px 20px;
    font-size: 9em;
    z-index: 1000;
    border-bottom: 1px solid #94949442;
}

.top-announcement-bar .container {
    display: flex;
    justify-content: space-between; /* Alinha o texto à esquerda e os links à direita */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.announcement-text {
    font-weight: bold;
    font-size: .9rem;
    flex-grow: 1; /* Permite que o texto ocupe o espaço restante */
}

.contact-links {
    display: flex;
    gap: 15px; /* Espaço entre os links */
    align-items: center;
    flex-shrink: 0; /* Impede que os links sejam comprimidos */
}

.contact-link {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #007bff; /* Efeito de hover */
}

.contact-link i {
    margin-right: 5px;
    font-size: 1.1em;
}


/* ========================================================== */
/* MEDIA QUERIES PARA O ANNOUNCEMENT BAR                      */
/* ========================================================== */

@media screen and (max-width: 768px) {
    .top-announcement-bar .container {
        flex-direction: column; /* Empilha os itens verticalmente */
        text-align: center;
    }

    .announcement-text {
        margin-bottom: 10px; /* Adiciona espaço entre o texto e os links */
    }

    .contact-links {
        justify-content: center; /* Centraliza os links */
    }
}








/* --- Importação das Fontes Google --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;600&display=swap');

/* --- Seção de Persianas de Qualidade - Estilos Principais --- */
#persianas-qualidade.persianas-qualidade {
    padding: 80px 0;
    text-align: center;
    background-color: #fcfcfc;
    font-family: 'Open Sans', sans-serif;
}

#persianas-qualidade .section-title {
    font-size: 2.8em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
}

#persianas-qualidade .section-subtitle {
    color: #7f8c8d;
    font-size: 1.1em;
    margin-bottom: 60px;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Estilos do Carrossel e Navegação --- */
#persianas-qualidade .carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

#persianas-qualidade .carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}

#persianas-qualidade .product-slide {
    display: flex;
    flex-shrink: 0;
    width: 100%;
    gap: 30px;
    justify-content: center;
}

/* --- Estilos dos Cards de Produto (O Ponto Focal) --- */
#persianas-qualidade .product-item {
    flex: 1 1 calc(25% - 23px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding-bottom: 25px;
    transition:
        transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1),
        box-shadow 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

/* Efeito de Elevação e Sombra Aprimorado no Hover */
#persianas-qualidade .product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

#persianas-qualidade .product-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    transition: transform 0.4s ease-in-out;
}

#persianas-qualidade .product-item:hover img {
    transform: scale(1.05);
}

#persianas-qualidade .product-name {
    font-size: 1.4em;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 10px;
    padding: 0 20px;
    font-family: 'Poppins', sans-serif;
}

#persianas-qualidade .product-description {
    font-size: 0.95em;
    color: #7f8c8d;
    line-height: 1.5;
    margin-bottom: 25px;
    padding: 0 20px;
}

/* --- Estilos do Botão "Veja Mais" Aprimorado --- */
#persianas-qualidade .btn-more {
    display: inline-block;
    background-color: #2c3e50;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85em;
    padding: 12px 25px;
    border-radius: 50px;
    border: 2px solid #2c3e50;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    letter-spacing: 0.5px;
}

#persianas-qualidade .btn-more:hover {
    background-color: transparent;
    color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* --- Estilos dos Botões de Navegação --- */
.carousel-buttons {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 15px;
}

.carousel-btn {
    font-family: 'Poppins', sans-serif;
    background-color: #e9ecef;
    color: #495057;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.carousel-btn:hover {
    background-color: #adb5bd;
    color: #343a40;
}



/* Botões de navegação do carrossel */
#persianas-qualidade .carousel-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

#persianas-qualidade .carousel-btn {
    background-color: #2c3e50;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#persianas-qualidade .carousel-btn:hover {
    background-color: #34495e;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Responsividade */
@media (max-width: 1200px) {
    #persianas-qualidade .product-item {
        flex: 1 1 calc(33.33% - 14px);
    }
}

@media (max-width: 992px) {
    #persianas-qualidade .product-item {
        flex: 1 1 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    #persianas-qualidade .product-item {
        flex: 1 1 100%;
    }
}
/* Seção de Persianas de Qualidade - Revisto para Modernidade e Responsividade */
#persianas-lo.persianas-qualidade {
    padding: 80px 0;
    text-align: center;
    background-color: #fcfcfc;
}

/* Estilo do título e subtítulo */
#persianas-lo .section-title {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

#persianas-lo .section-subtitle {
    color: #7f8c8d;
    font-size: 1.1em;
    margin-bottom: 60px;
    font-weight: 300;
}

/* Efeito de degradê no título */
.section-title.gradient-text {
    background-image: linear-gradient(to right, #2c3e50, #a08c5c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* CONTAINER PRINCIPAL DA GRADE */
/* Substitui o .carousel-container */
#persianas-lo .products-grid {
    display: grid;
    /* Cria colunas que se ajustam automaticamente e quebram a linha */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px; /* Espaçamento entre os cards */
    justify-content: center;
    align-items: stretch; /* Garante que os cards tenham a mesma altura */
}

/* Card individual do produto */
#persianas-lo .product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #fff;
    border-radius: 15px; /* Cantos mais suaves */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Sombra mais moderna */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    cursor: pointer;
    min-height: 400px; /* Garante altura mínima para um layout consistente */
}

#persianas-lo .product-item:hover {
    transform: translateY(-10px); /* Efeito de elevação mais pronunciado */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

#persianas-lo .product-item img {
    width: 100%;
    height: 220px; /* Altura fixa para as imagens */
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

#persianas-lo .product-item:hover img {
    transform: scale(1.05); /* Zoom sutil na imagem ao passar o mouse */
}

/* Conteúdo interno do card */
/* Adicione esta classe no seu HTML para organizar o conteúdo */
#persianas-lo .product-content {
    padding: 0 25px 25px; /* Espaçamento interno */
    flex-grow: 1; /* Permite que o conteúdo se expanda para ocupar o espaço disponível */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#persianas-lo .product-name {
    font-size: 1.4em;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 10px;
}

#persianas-lo .product-description {
    font-size: 0.95em;
    color: #7f8c8d;
    line-height: 1.5;
    margin-bottom: 25px;
}

#persianas-lo .btn-more {
    display: inline-block;
    background-color: #a08c5c;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85em;
    padding: 12px 25px;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-top: auto; /* Alinha o botão na parte inferior do card */
}

#persianas-lo .btn-more:hover {
    background-color: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* A partir daqui, o layout se torna responsivo para telas menores */
@media (max-width: 768px) {
    #persianas-lo .products-grid {
        grid-template-columns: 1fr; /* Em telas menores, os cards ficam um abaixo do outro */
    }
}

/* Botões de navegação do carrossel */
/* Estilos dos botões de navegação do carrossel */
#persianas-lo .carousel-buttons {
    display: flex;
    justify-content: center;
    gap: 25px; /* Aumenta a distância entre os botões */
    margin-top: 50px;
}

#persianas-lo .carousel-btn {
    /* Design do botão */
    background-color: #2c3e50; /* Cor de fundo escura, padrão do seu site */
    color: #fff;
    border: none;
    padding: 14px 30px; /* Aumenta o padding para um visual mais robusto */
    border-radius: 50px; /* Deixa o botão mais arredondado */
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px; /* Espaçamento entre as letras */
    
    /* Efeito de transição */
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Sombra suave */
}

/* Efeito ao passar o mouse */
#persianas-lo .carousel-btn:hover {
    background-color: #a08c5c; /* Muda a cor de fundo para o dourado ao passar o mouse */
    transform: translateY(-3px); /* Move o botão levemente para cima */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Aumenta a sombra para um efeito 3D */
}

/* Estado ativo/clicado do botão */
#persianas-lo .carousel-btn:active {
    transform: translateY(0); /* Retorna o botão à posição original */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Sombra mais discreta */
}

/* Estilos para o botão "Anterior" (para alinhamento) */
#persianas-lo #prev-btn {
    background-color: transparent;
    color: #2c3e50;
    border: 1px solid #2c3e50;
}

#persianas-lo #prev-btn:hover {
    background-color: #a08c5c;
    color: #fff;
    border-color: #a08c5c;
}



/* Responsividade */
@media (max-width: 1200px) {
    #persianas-lo .product-item {
        flex: 1 1 calc(33.33% - 14px);
    }
}

@media (max-width: 992px) {
    #persianas-lo .product-item {
        flex: 1 1 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    #persianas-lo .product-item {
        flex: 1 1 100%;
    }
}


/* Seção de Banner de Contato - COM EFEITO PARALLAX */
.contact-banner-section {
    position: relative;
    width: 100%;
    height: 500px; /* Altura do banner, ajuste se necessário */
    
    /* Propriedades para o efeito Parallax */
    background-attachment: fixed; /* A imagem fica fixa durante o scroll */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

/* Sobreposição escura na imagem para melhor leitura do texto */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.banner-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

/* Títulos e botões */
.banner-subtitle {
    font-size: 1.1em;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #d8c39d;
}

.banner-title {
    font-size: 3.5em;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.banner-title .title-line-1,
.banner-title .title-line-2 {
    display: block;
}

.contact-button {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1em;
    font-weight: bold;
    color: #fff;
    background-color: #a08c5c;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 5px;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-button:hover {
    background-color: #8b7c53;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .contact-banner-section {
        height: 400px;
        background-attachment: scroll; /* Desativa o Parallax em telas menores */
    }
    .banner-title {
        font-size: 2.5em;
    }
    .contact-button {
        padding: 12px 30px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .contact-banner-section {
        height: 350px;
    }
    .banner-title {
        font-size: 2em;
    }
    .banner-subtitle {
        font-size: 0.9em;
    }
}



/* Estilos para o Footer */
.site-footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 0 20px;
    font-family: Arial, sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #a08c5c;
    text-transform: uppercase;
}

.footer-column p, .footer-column a {
    font-size: 0.9em;
    line-height: 1.6;
    color: #ccc;
    text-decoration: none;
}

.footer-column a:hover {
    color: #fff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 10px;
}

.social-icons img {
    width: 30px;
    height: auto;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid #444;
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 0.8em;
    color: #888;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-column {
        min-width: 100%;
    }
}

/* Ícones Sociais */
.social-icons a {
    color: #bdc3c7;
    font-size: 1.5em;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #a08c5c;
}

/* Seção de Copyright */
.footer-bottom {
    border-top: 1px solid #3e5066;
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 0.8em;
    color: #bdc3c7;
}

/* Responsividade do Footer */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        min-width: 100%;
        margin-bottom: 40px;
    }

    .footer-links ul,
    .social-icons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links ul li {
        margin-bottom: 15px;
    }

    .social-icons a {
        margin: 0 10px;
    }
}


    /* Estilo do botão flutuante do WhatsApp */
    .whatsapp-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 40px;
        right: 40px;
        background-color: #25d366;
        color: #fff;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 2px 2px 3px #999;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease-in-out;
        text-decoration: none;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
    }

    .whatsapp-float .icon-whatsapp {
        width: 30px;
        height: 30px;
    }
    
    /* Responsividade para telas menores */
    @media (max-width: 768px) {
        .whatsapp-float {
            width: 50px;
            height: 50px;
            bottom: 20px;
            right: 20px;
            font-size: 24px;
        }
        .whatsapp-float .icon-whatsapp {
            width: 25px;
            height: 25px;
        }
    }
    

    

    /* Estilos para o template page.php */
.page-section {
    padding: 80px 0; /* Espaçamento superior e inferior para a seção */
}

.page-title {
    font-size: 2.5em; /* Título grande para a página */
    font-weight: 700;
    color: #333;
    text-align: center; /* Centraliza o título */
    margin-bottom: 40px;
}

.page-content-wrapper {
    line-height: 1.8; /* Aumenta a altura da linha para melhor leitura */
    font-size: 1.1em;
    color: #555;
}

/* Garante que o conteúdo não ultrapasse o limite do container em telas pequenas */
@media (max-width: 768px) {
    .page-section {
        padding: 40px 0;
    }

    .page-title {
        font-size: 2em;
        margin-bottom: 30px;
    }
}