:root {
    --primary-color: #2F8079; /* Azul escuro predominante */
    --secondary-color: #A8C8B1; /* Cinza claro para fundos */
    --accent-color: #f26522; /* Laranja vibrante */
    --background-light: #f6f7fb;
    --background-white: #ffffff;
    --text-color-dark: #2b2b2b;
    --text-color-light: #6c6c6c;
    --border-color: #e0e0e0;
    --footer-bg: #002d59;
    --footer-text: #d1d1d1;
}

/* --- 2. Reset Básico e Estilos Globais --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

.containerWhatsApp {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.container {
    margin: 0 auto;
    padding: 0 20px;
}

.container p {
    padding-top: 20px;
}

/* --- 3. Tipografia Responsiva --- */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-color);
    transition: color 0.2s ease;
}

/* Tamanho de fonte responsivo */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    body {
        font-size: 0.95rem;
    }

    /* Ligeira redução em telas pequenas */
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    body {
        font-size: 0.9rem;
    }
}

/* --- 4. Botões Genéricos --- */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
    border-radius: 3px;
}

.btn-primary:hover {
    background-color: #d3541b;
    transform: none;
}

.btn-secondary {
    background-color: #ddd;
    color: var(--text-color-dark);
}

.btn-secondary:hover {
    background-color: #ccc;
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.9rem;
    background-color: var(--secondary-color);
    color: white;
}

.btn-whatsapp-lg {
    background-color: #25d366; /* Verde WhatsApp */
    color: white;
    padding: 15px 30px;
    font-size: 1.2rem;
    display: block; /* importante para margin auto funcionar */
    margin: 0 auto 10px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 400px; /* ou qualquer valor desejado */
    width: 100%;
    white-space: nowrap; /* permite que o texto quebre linha */
}

.btn-whatsapp-lg:hover {
    background-color: #1da851;
    transform: translateY(-2px);
}

/* --- 5. Layout do Header (Menu) --- */
main:not(:has(.hero-section)) {
    padding-top: 50px;
}

.main-header {
    background-color: transparent;
    box-shadow: none;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    padding: 0 min(12%, 100px);
}

.main-header.scrolled {
    background-color: var(--primary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px min(10%, 90px);
}

.main-header.scrolled .logo img {
    max-height: 110px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo * {
    align-self: center;
}

.logo img {
    max-height: 80px;
    width: auto;
    transition: max-height 0.3s ease;
    padding-top: 10px;
}

.main-header.scrolled .logo img {
    max-height: 65px;
    filter: brightness(0) invert(1);
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li {
    position: relative; /* Necessário para o submenu */
}

.main-nav ul li a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.main-nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.m.main-nav .desktop-menu {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-nav .desktop-menu li {
    position: relative;
}

.main-nav .desktop-menu li a {
    color: var(--text-color-dark);
    text-decoration: none;
    padding: 15px 20px;
    display: block;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.main-header.scrolled .main-nav .desktop-menu li a {
    color: white;
}

.main-header.scrolled .main-nav .desktop-menu li a:hover {
    color: var(--secondary-color);
}

.main-header.scrolled .main-nav .desktop-menu li a:hover {
    color: white;
}


.main-nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--secondary-color);
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    list-style: none;
    border-top: 3px solid var(--accent-color);
    padding: 0;
    border-radius: 10px;
}

.main-header.scrolled .main-nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-color);
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    list-style: none;
    border-top: 3px solid var(--accent-color);
    padding: 0;
    border-radius: 10px;

}

.main-nav .dropdown-menu li {
    width: 100%;
}

.main-nav .dropdown-menu li a {
    padding: 12px 20px;
    white-space: nowrap;
}

.main-nav .dropdown:hover .dropdown-menu {
    display: block;
}


/* Mobile menu */
.mobile-menu-icon {
    display: none;
    position: relative;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1002;
    align-self: center;
}

.mobile-menu {
    display: none;
    background-color: var(--primary-color);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1001;
    padding-top: 60px;
    box-shadow: none;
    overflow-y: auto;
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
}

.mobile-menu.active {
    display: block;
    transform: translateX(0);
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu ul li:last-child {
    border-bottom: none;
}

.mobile-menu ul li a {
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    display: block;
    transition: background-color 0.3s ease;
}

.mobile-menu ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu ul li.submenu-item a {
    padding-left: 40px;
    font-size: 0.9em;
    color: #cccccc;
}

@media (max-width: 1175px) {
    .main-nav .desktop-menu {
        display: none;
    }

    main {
        padding-top: 80px;
        margin-bottom: 10px;
    }

    .mobile-menu-icon {
        display: block;
    }

    .main-header {
        background-color: var(--primary-color);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

        .logo img {
            filter: brightness(0) invert(1);
        }

    }

    .main-header.scrolled {
        padding: 8px min(10%, 90px);

        .logo img {
            max-height: 55px;
        }
    }
}

@media (min-width: 1175px) {
    .main-nav .desktop-menu {
        display: flex; /* Mostra o menu desktop */
    }

    .mobile-menu-icon {
        display: none; /* Esconde o ícone do hambúrguer */
    }

    .mobile-menu {
        display: none !important; /* Garante que o menu mobile esteja escondido */
        transform: translateX(100%) !important; /* Garante que esteja fora da tela */
    }
}

@media (max-width: 550px) {
    .logo img {
        max-height: 80px;
    }
}

/* --- 6. Seções Genéricas --- */
section {
    padding: 60px 10px;
    text-align: center;
}

section:nth-of-type(even) {
    background-color: var(--background-white);
}

section:nth-of-type(odd) {
    background-color: var(--background-light);
}

/* Títulos de seção */
section h2 {
    margin-bottom: 30px;
    font-size: 2.2rem;
    color: var(--primary-color);
}

.section-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-color-light);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .section-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}


/* --- 7. Hero Section (Home) --- */
.hero-section {
    color: white;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
    background: none;

}

.hero-pre-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-background-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-item.item-1 {
    background: url('../images/banners/banner-01.png') no-repeat center center/ 100% auto,
    linear-gradient(to top, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.carousel-item.item-2 {
    background: url('../images/banners/banner-02.png') no-repeat center center/ 100% auto,
    linear-gradient(to top, var(--primary-color) 0%, var(--secondary-color) 100%);;
}

.carousel-item.item-3 {
    background: url('../images/banners/banner-03.png') no-repeat center center/ 100% auto,
    linear-gradient(to top, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.carousel-item.active {
    opacity: 1; /* O item ativo fica visível */
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 15px 20px;
    color: white;
    border-radius: 10px;
}

.hero-content h2 {
    color: var(--primary-color);
}

/* Media queries para o H1 do Hero */
@media (max-width: 768px) {

    .hero-section {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        min-height: auto;
        padding: 80px 0 0;
        background: linear-gradient(to top, var(--primary-color) 0%, var(--secondary-color) 100%);
    }

    /* Hero Background Carousel em Mobile - VOLTA AO FLUXO NORMAL */
    .hero-background-carousel {
        order: 2;
        position: relative;
        width: 100%;
        height: auto;
        min-height: 250px;
        margin-top: 30px;
        z-index: auto;
    }

    /* carousel-item em mobile (as imagens individuais) - VOLTA AO FLUXO NORMAL */
    .carousel-item.item-1 {
        background: url('../images/banners/banner-01.png') no-repeat center center/ 100% auto,
        transparent;
    }

    .carousel-item.item-2 {
        background: url('../images/banners/banner-02.png') no-repeat center center/ 100% auto,
        transparent;
    }

    .carousel-item.item-3 {
        background: url('../images/banners/banner-03.png') no-repeat center center/ 100% auto,
        transparent;
    }

    /* Hero Content (texto e botões) em Mobile */
    .hero-content {
        order: 1;
        position: relative;
        z-index: 2;
        width: 100%;
        padding: 10px 20px 10px;
    }

    .carousel-item.item {
        background-size: 100% auto !important;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h1 .highlight-text {
        font-size: 1em;
    }

    .hero-content h1 br {
        display: none;
    }

    .product-main-content {
        flex-direction: column; /* Empilha a imagem e a meta_description em mobile */
        align-items: center; /* Centraliza itens empilhados */
        gap: 20px; /* Espaço reduzido entre itens empilhados */
        margin-bottom: 30px; /* Reduz espaço inferior em mobile */
    }

    /* Seções da imagem e meta_description do PRODUTO em mobile */
    .product-image-section, .product-meta-info {
        width: 100%; /* Ocupa a largura total em mobile */
        min-width: unset; /* Remove min-width fixo */
        max-width: 100%; /* Garante que não ultrapasse 100% */
        flex-basis: 100%; /* Ocupa a largura total do flex container */
        padding: 0 15px; /* Adiciona padding lateral interno para o conteúdo */
    }

    .product-image-section {
        order: 2; /* Imagem fica ABAIXO do texto em mobile */
    }

    .product-meta-info {
        order: 1; /* Texto e botão ficam ACIMA da imagem em mobile */
        text-align: center; /* Centraliza o texto e botão em mobile */
    }

    .product-meta-info h1 {
        font-size: 2rem; /* Ajusta tamanho do H1 em mobile */
    }

    .product-meta-info .lead {
        font-size: 1rem; /* Ajusta tamanho da descrição em mobile */
    }

    /* Linha da descrição detalhada do PRODUTO em mobile */
    .product-detail-description-row {
        padding: 0 15px; /* Adiciona padding lateral para a descrição detalhada */
    }

    .product-detail-text {
        max-width: 100%; /* Ocupa largura total em mobile */
    }

    .product-detail-text h3 {
        font-size: 1.5rem; /* Ajusta tamanho do H3 em mobile */
        text-align: center; /* Centraliza o título */
    }

    .product-detail-text p {
        font-size: 0.95rem; /* Ajusta tamanho do parágrafo em mobile */
    }


    .service-main-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
    }

    /* Seções da imagem e meta_description em mobile */
    .service-image-section, .service-meta-info {
        width: 100%;
        min-width: unset;
        max-width: 100%;
        flex-basis: 100%;
        padding: 0 15px;
    }

    .service-image-section {
        order: 2;
    }

    .service-meta-info {
        order: 1;
        text-align: center;
    }

    .service-meta-info h1 {
        font-size: 2rem;
    }

    .service-meta-info .lead {
        font-size: 1rem;
    }

    /* Linha da descrição detalhada em mobile */
    .service-detail-description-row {
        padding: 0 15px;
    }

    .service-detail-text {
        max-width: 100%;
    }

    .service-detail-text h3 {
        font-size: 1.5rem;
        text-align: center;
    }

    .service-detail-text p, .product-detail-text p {
        font-size: 0.95rem;
        text-align: justify;
    }

}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 800px;
    color: var(--text-color-light);
}

.hero-content .btn {
    margin: 10px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .hero-section {
        padding: 80px 20px;
    }

}

/* --- 8. Seção de Produtos/Serviços (Grids) --- */
.product-grid, .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px; /* Espaçamento entre os cards */
    margin-top: 40px;
    justify-content: center;
    padding: 0 20px; /* Adicionado: Espaçamento interno para o grid dentro do container */
}

.product-grid {
    /* margin-top: 30px; */
    margin-bottom: 40px;
}

/* Para o card em si (sem imagem no topo, apenas texto) - o `product-card` e `service-card` já tem padding */
.product-card, .service-card {
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.product-card .card-body, .service-card .card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    padding: 20px 20px 60px;
}

.product-card:hover, .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.product-card, .service-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card h3, .service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    margin-top: 0;
}

.product-card p, .service-card p {
    font-size: 0.95rem;
    color: var(--text-color-light);
    flex-grow: 1;
    margin-bottom: 20px;
}

.product-card .btn, .service-card .btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: inline-block;
    width: fit-content;
    margin-left: 0;
    margin-right: auto;
}

.service-card i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

.text-center {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* --- 9. Detalhes de Produtos/Serviços (Single Page) --- */
.product-detail, .service-detail {
    padding: 50px 0;
    text-align: left;
}

.service-main-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    justify-content: center;
}

.product-main-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    justify-content: center;
}

.service-image-section {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    /* Remove slide-in-left daqui se estiver causando conflito em mobile com order */
}

.service-image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-meta-info {
    flex: 1;
    min-width: 350px;
    max-width: 600px;
    padding-top: 0;
    /* Remove slide-in-right daqui se estiver causando conflito em mobile com order */
}

.service-meta-info h1 {
    margin-top: 0;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.service-meta-info .lead {
    font-size: 1.2rem;
    color: var(--text-color-light);
    margin-bottom: 20px;
}

.service-meta-info .btn-lg {
    margin-top: 20px;
}

.service-detail-description-row {
    display: flex;
    justify-content: center;
}

.service-detail-text {
    max-width: 900px;
    text-align: left;
}

.service-detail-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-detail-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-color-dark);
}

.product-detail .row, .service-detail .row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 30px;
    margin: 60px 0 50px 0;
}

.product-detail .col-md-6, .service-detail .col-md-6 {
    flex: 1;
    min-width: 300px;
}

.product-image-section {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.product-image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-meta-info {
    flex: 1;
    min-width: 350px; /* Largura mínima para o bloco de meta info */
    max-width: 600px; /* Largura máxima */
    padding-top: 0; /* Garante que não tenha padding top extra */
    /* Remova slide-in-right daqui se estiver causando conflito em mobile com order */
}

.product-meta-info h1 {
    margin-top: 0; /* Garante que o H1 esteja no topo */
    font-size: 2.5rem;
    color: var(--primary-color);
}

.product-meta-info .lead {
    font-size: 1.2rem;
    color: var(--text-color-light);
    margin-bottom: 20px;
}

.product-meta-info .btn-lg {
    margin-top: 20px;
}


/* NOVO: Estilo para a linha da descrição detalhada do produto */
.product-detail-description-row {
    display: flex;
    justify-content: center; /* Centraliza a coluna 12 */
}

.product-detail-text {
    max-width: 900px; /* Largura máxima para o texto detalhado em col-md-12 */
    text-align: left;
}

.product-detail-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.product-detail-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-color-dark);
}

.product-info-section h1, .service-info-section h1 {
    margin-top: 0;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.product-info-section .lead, .service-info-section .lead {
    font-size: 1.2rem;
    color: var(--text-color-light);
    margin-bottom: 20px;
}

.product-description p, .service-description p {
    margin-bottom: 1.5rem;
}

.product-info-section ul, .service-info-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.product-info-section ul li, .service-info-section ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--text-color-dark);
}

.product-info-section .btn-lg, .service-info-section .btn-lg {
    font-size: 1.1rem;
    padding: 12px 25px;
    margin-top: 20px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    padding: 15px 0;
    list-style: none;
    background-color: transparent;
    border-radius: 0.25rem;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    color: var(--text-color-light);
}

.breadcrumb li + li::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: var(--text-color-light);
    content: "/"; /* Separador */
}

.breadcrumb li a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb li a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.breadcrumb li.active {
    color: var(--text-color-dark);
    font-weight: bold;
}

.cta-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- 10. Seção "Quem Somos" --- */
.about-intro, .about-history, .about-mvv, .cta-contact {
    padding: 70px 0 50px;
    text-align: center;
}

.about-intro .lead {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: var(--text-color-light);
}

.about-history h2, .about-mvv h2 {
    margin-bottom: 20px;
}

.about-history p {
    max-width: 900px;
    margin: 0 auto 20px;
    line-height: 1.8;
}

.about-mvv {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.mvv-item {
    background-color: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    text-align: left;
}

.mvv-item h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    text-align: center;
}

.mvv-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color-dark);
}

.mvv-item ul {
    list-style: none;
    padding: 0;
}

.mvv-item ul li {
    margin-bottom: 10px;
    color: var(--text-color-dark);
    display: flex;
    align-items: center;
}

.mvv-item ul li i {
    color: var(--accent-color);
    margin-right: 8px;
}

/* --- 11. Seção de Contato --- */
.contact-info-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 50px 0;
    text-align: center;
}

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

.contact-details, .contact-map {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
    text-align: left;
}

.contact-details h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-details p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color-dark);
}

.contact-details p i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- 12. Formulário de Representantes --- */
.representatives-section {
    padding: 50px 0;
    text-align: center;
}

.representatives-section p {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--text-color-light);
}

#whatsapp-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--background-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
}

#whatsapp-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--text-color-dark);
}

#whatsapp-form input[type="text"],
#whatsapp-form input[type="tel"],
#whatsapp-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    color: var(--text-color-dark);
}

#whatsapp-form textarea {
    resize: vertical;
    min-height: 100px;
}

#whatsapp-form button {
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#whatsapp-form button:hover {
    background-color: #1da851;
    transform: translateY(-2px);
}

/* --- 13. Rodapé --- */
.main-footer {
    background-color: var(--primary-color);
    color: var(--footer-text);
    padding: 40px 0 20px;
    font-size: 0.95rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: left;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-section p, .footer-section ul {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
    text-decoration: underline;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
    color: var(--footer-text);
}

.event-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.event-popup-overlay.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.event-popup-content {
    background-color: var(--background-white);
    padding: 25px;
    border-radius: 8px;
    max-width: 650px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    text-align: center;
    animation: fadeInScale 0.3s ease-out; /* Animação de entrada */
}

.event-popup-body {
    text-align: justify;
}

.event-popup-body a {
    padding-top: 10px;
}

.close-popup-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    color: var(--text-color-light);
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-popup-btn:hover {
    color: var(--text-color-dark);
}

.event-popup-body h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.event-banner-image {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 20px;
}

.event-popup-body p {
    font-size: 1rem;
    color: var(--text-color-dark);
    margin-bottom: 10px;
}

.event-popup-body p.event-details {
    font-size: 0.95rem;
    color: var(--text-color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
}

.event-popup-body p.event-details i {
    color: var(--accent-color);
}

/* Animação de entrada do pop-up */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Em mobile, ajustar o padding do pop-up */
@media (max-width: 768px) {
    .event-popup-content {
        padding: 20px;
    }

    .event-popup-body {
        text-align: center;
    }

    .event-popup-body h3 {
        font-size: 1.5rem;
    }
}

/* --- 14. Botão Fixo do WhatsApp --- */
.whatsapp-fixed-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.whatsapp-fixed-button:hover {
    background-color: #1da851;
    transform: scale(1.05);
}

/* --- 15. Página 404 (Estilo específico) --- */
/* Estilos já no próprio 404.php para ser autocontido */

/* --- 16. Efeitos de Animação (Visibilidade e Transformação ao Scroll) --- */
/* Classes para elementos que aparecerão com animação */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

.scale-up {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-up.active {
    opacity: 1;
    transform: scale(1);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}