/* 
 * Mix Center - Unified CSS Styles
 * Este arquivo combina todos os estilos do site Mix Center em um único arquivo
 * para melhorar a performance e facilitar a manutenção.
 */

/* Import Mix Center color palette */
@import url('colors.css');

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--mix-dark-gray);
    background-color: var(--mix-light-gray);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 60px 0;
}

section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    position: relative;
    color: var(--mix-dark-gray);
}

section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--mix-red);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* ===== BOTÕES ===== */
.btn-primary {
    display: inline-block;
    background-color: var(--mix-red);
    color: var(--mix-white);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--mix-bright-red);
}

.btn-secondary {
    display: inline-block;
    background-color: var(--mix-bright-red);
    color: var(--mix-white);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--mix-red);
}

/* Botão de WhatsApp */
.whatsapp-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: var(--mix-white);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp i {
    font-size: 1.2rem;
    margin-right: 8px;
}

/* Responsive adjustments for WhatsApp buttons */
@media (max-width: 768px) {
    .whatsapp-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-whatsapp {
        width: 80%;
        justify-content: center;
    }
}

/* Botão de Download do App */
.btn-app-download {
    display: inline-flex;
    align-items: center;
    background-color: var(--mix-yellow);
    color: var(--mix-red);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

.btn-app-download:hover {
    background-color: var(--mix-yellow);
    filter: brightness(0.95);
    transform: translateY(-3px);
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
}

.btn-app-download i {
    font-size: 1.2rem;
    margin-right: 8px;
}

/* Botão de Localização */
.btn-location {
    display: inline-flex;
    align-items: center;
    background-color: var(--mix-red);
    color: var(--mix-white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
    justify-content: center;
    width: 100%;
}

.btn-location:hover {
    background-color: var(--mix-bright-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
}

.btn-location i {
    font-size: 1.2rem;
    margin-right: 8px;
    color: var(--mix-yellow);
}

/* ===== VALORES SECTION ===== */
.nossos-valores {
    margin-top: 60px;
}

.nossos-valores h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
    color: #333;
}

.nossos-valores h3:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #e74c3c;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.valores {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}

.valor-item {
    flex: 1;
    min-width: 200px;
    background-color: #fff;
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.valor-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.valor-item i {
    font-size: 2.5rem;
    color: var(--mix-bright-red);
    margin-bottom: 15px;
    transition: transform 0.5s ease, color 0.3s ease;
}

.valor-item:hover i {
    transform: rotate(360deg);
    color: var(--mix-red);
}

.valor-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.valor-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== STATS SECTION ===== */
.sobre-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
    background-color: var(--mix-bright-red);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    padding: 15px;
    flex: 1;
    min-width: 120px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.stat-text {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== HEADER ===== */
.header {
    background-color: var(--mix-yellow);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.3s ease; /* Transição suave para transformação e sombra */
    overflow: hidden; /* Impede que o conteúdo excedente seja exibido */
    height: auto; /* Permite que a altura se ajuste ao conteúdo */
}

/* Animação de fixação do cabeçalho */
.header-scrolled {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Animação para o cabeçalho recolhido */
.header-collapsed {
    transform: translateY(-100%); /* Move o cabeçalho para fora da tela */
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.logo img {
    max-height: 60px;
    transition: transform 0.3s ease;
}

.header-scrolled .logo img {
    /* Removida a animação de escala do logo */
    transform: none;
}

.search-bar {
    flex: 1;
    max-width: 500px;
    margin: 0 20px;
}

.search-bar form {
    display: flex;
}

.search-bar input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.search-bar button {
    background-color: var(--mix-red);
    color: var(--mix-white);
    border: none;
    padding: 10px 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.search-bar button:hover {
    transform: scale(1.05);
}

.main-nav {
    background-color: var(--mix-red);
    padding: 10px 0;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    position: relative;
    left: 0;
    right: 0;
}

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

.main-nav li {
    margin: 0 15px;
    position: relative;
}

.main-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: color 0.3s;
    padding: 10px 0;
    display: block;
    position: relative;
}

.main-nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--mix-yellow);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.main-nav a:hover:after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--mix-yellow);
}

.main-nav li.destaque a {
    background-color: var(--mix-bright-red);
    color: var(--mix-white);
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
}

.main-nav li.destaque a:hover {
    background-color: var(--mix-red);
    transform: scale(1.05);
    color: var(--mix-white);
}

.main-nav li.destaque a:after {
    display: none;
}

/* ===== HERO SECTION ===== */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    padding-top: 80px;
    margin-top: 110px;
}

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

.slide {
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 0 15px;
    margin-top: -50px; /* Move o conteúdo para cima */
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.features-section {
    background-color: var(--mix-white);
    padding: 30px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-features {
    background-color: var(--mix-white);
    padding: 20px 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    color: var(--mix-dark-gray);
    text-align: center;
}

.feature {
    display: flex;
    align-items: center;
    color: var(--mix-bright-red);
    margin: 10px 20px;
}

.feature i {
    font-size: 24px;
    margin-right: 10px;
    color: var(--mix-red);
}

/* ===== PRODUTOS ===== */
.promocoes {
    background-color: #f9f9f9;
}

.promocoes-semanais {
    background-color: #fff;
}

.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.produto-card {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    position: relative;
}

.produto-card:hover {
    transform: translateY(-10px);
}

.produto-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e74c3c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-weight: bold;
}

.produto-img {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.produto-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.produto-card:hover .produto-img img {
    transform: scale(1.1);
}

.produto-content {
    padding: 20px;
}

.produto-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.produto-preco {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.preco-antigo {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
    font-size: 0.9rem;
}

.preco-atual {
    font-size: 1.3rem;
    font-weight: bold;
    color: #e74c3c;
}

.produto-atacado {
    font-size: 0.9rem;
    color: #27ae60;
    margin-bottom: 10px;
}

.produto-validade {
    font-size: 0.9rem;
    color: #e74c3c;
    font-weight: bold;
    margin-top: 10px;
}

.ver-mais {
    text-align: center;
    margin-top: 40px;
}

/* ===== ENCARTES ===== */
.encartes {
    background-color: #f9f9f9;
}

.encartes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
    padding-top: 20px;
}

.encarte-card {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.encarte-card:hover {
    transform: translateY(-10px);
}

.encarte-img {
    height: auto;
    max-height: 400px;
    overflow: hidden;
}

.encarte-img img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    transition: transform 0.3s;
}

.encarte-card:hover .encarte-img img {
    transform: scale(1.05);
}

.encarte-content {
    padding: 20px;
    text-align: center;
}

.encarte-content h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.encarte-content p {
    color: #666;
    margin-bottom: 15px;
}

/* ===== DICAS DO MIX ===== */
.dicas {
    background-color: #fff;
}

.dicas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.dica-card {
    background-color: #f9f9f9;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.dica-card:hover {
    transform: translateY(-10px);
}

.dica-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.dica-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.dica-card:hover .dica-img img {
    transform: scale(1.05);
}

.dica-categoria {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e74c3c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: bold;
}

.dica-content {
    padding: 20px;
}

.dica-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #333;
}

.dica-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 4.5em;
}

.dica-content .btn-secondary {
    margin-top: 15px;
    background-color: #e74c3c;
}

.dica-content .btn-secondary:hover {
    background-color: #c0392b;
}

.dica-meta {
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 0.9rem;
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.dica-meta span {
    display: flex;
    align-items: center;
}

.dica-meta i {
    margin-right: 5px;
}

/* ===== SOBRE ===== */
.sobre {
    background-color: #f9f9f9;
}

.sobre-content {
    max-width: 1000px;
    margin: 0 auto;
}

.sobre-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.sobre-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sobre-historia,
.sobre-missao-visao-valores {
    margin-bottom: 40px;
}

.sobre-historia h3,
.sobre-missao-visao-valores h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.sobre-historia h3:after,
.sobre-missao-visao-valores h3:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #e74c3c;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.missao-visao-valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.mvv-card {
    background-color: #fff;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.mvv-card:hover {
    transform: translateY(-10px);
}

.mvv-icon {
    font-size: 40px;
    color: #e74c3c;
    margin-bottom: 20px;
}

.mvv-card h4 {
    font-size: 1.4rem;
}

.mvv-card ul {
    list-style-position: inside;
    text-align: left;
    margin-top: 15px;
}

.mvv-card ul li {
    margin-bottom: 8px;
    line-height: 1.4;
}

/* ===== VAGAS ===== */
.vagas {
    background-color: #f9f9f9;
}

.vagas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.vaga-card {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.vaga-card:hover {
    transform: translateY(-10px);
}

.vaga-header {
    background-color: #e74c3c;
    color: #fff;
    padding: 15px 20px;
}

.vaga-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.vaga-content {
    padding: 20px;
}

.vaga-info {
    margin-bottom: 15px;
}

.vaga-info p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.vaga-info i {
    margin-right: 10px;
    color: #e74c3c;
    width: 20px;
}

.vaga-descricao {
    margin-bottom: 20px;
}

.vaga-descricao h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.vaga-descricao ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.vaga-descricao ul li {
    margin-bottom: 5px;
}

.vaga-actions {
    text-align: center;
}

.vaga-img {
    height: 200px;
    overflow: hidden;
}

.vaga-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.vaga-card:hover .vaga-img img {
    transform: scale(1.05);
}

.participe {
    margin-top: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.participe h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #333;
}

.participe p {
    margin-bottom: 20px;
    max-width: 600px;
}

.vagas-envio-cv {
    text-align: center;
    margin-top: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.envio-cv-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.envio-cv-content h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #333;
}

.envio-cv-content p {
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
    background-color: #fff;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.depoimento-card {
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.depoimento-card:before {
    content: '\201C';
    font-size: 80px;
    position: absolute;
    top: 20px;
    left: 20px;
    color: rgba(231, 76, 60, 0.1);
    font-family: Georgia, serif;
}

.depoimento-texto {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.depoimento-autor {
    display: flex;
    align-items: center;
}

.depoimento-autor-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.depoimento-autor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.depoimento-autor-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.depoimento-autor-info p {
    margin: 5px 0 0;
    color: #666;
    font-size: 0.9rem;
}

/* ===== EVENTOS ===== */
.eventos-proximos {
    margin-top: 50px;
}

.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.evento-card {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.evento-card:hover {
    transform: translateY(-10px);
}

.evento-img {
    height: 200px;
    overflow: hidden;
}

.evento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.evento-card:hover .evento-img img {
    transform: scale(1.05);
}

.evento-content {
    padding: 20px;
}

.evento-data {
    display: inline-block;
    background-color: #e74c3c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.evento-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #333;
}

.evento-content p {
    color: #666;
    margin-bottom: 15px;
}

.evento-info {
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 0.9rem;
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.evento-info span {
    display: flex;
    align-items: center;
}

.evento-info i {
    margin-right: 5px;
}

/* ===== COMUNIDADE ===== */
.comunidade {
    background-color: #f8f9fa;
}

.comunidade-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.comunidade-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.instituicoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.instituicao-card {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: center;
}

.instituicao-card:hover {
    transform: translateY(-10px);
}

.instituicao-img {
    height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #f9f9f9;
}

.instituicao-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.instituicao-content {
    padding: 20px;
}

.instituicao-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #333;
}

.instituicao-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* Estilos para a grade da seção Comunidade */
.acoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.acao-item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    background-color: #fff;
}

.acao-item:hover {
    transform: translateY(-10px);
}

.acao-img {
    position: relative;
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.acao-img img {
    max-width: 250px;
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s;
}

.acao-item:hover .acao-img img {
    transform: scale(1.05);
}

.acao-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px;
    transition: background-color 0.3s;
}

.acao-overlay h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.acao-overlay p {
    font-size: 0.9rem;
    margin: 0;
}

/* ===== LOJAS ===== */
.lojas {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.lojas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.loja-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.loja-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.loja-card p {
    margin-bottom: 10px;
    color: #666;
}

.loja-card i {
    color: #e74c3c;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.btn-maps {
    display: inline-block;
    background-color: #e74c3c;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-maps:hover {
    background-color: #c0392b;
}

.btn-maps i {
    color: #ffeb3b;
    margin-right: 8px;
}

/* ===== NEWSLETTER ===== */
.newsletter {
    background-color: #e74c3c;
    color: #fff;
    padding: 40px 0;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.newsletter-form button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 0 30px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #222;
}

/* ===== CONTATO ===== */
.contato {
    background-color: #fff;
    padding: 80px 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.contato h2 {
    margin-bottom: 50px;
}

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

.contato-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contato-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ddd;
    transition: transform 0.3s ease;
}

.contato-item:hover {
    transform: translateX(5px);
}

.contato-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contato-item i {
    font-size: 24px;
    color: #e74c3c;
    margin-right: 15px;
    background-color: rgba(231, 76, 60, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contato-text h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: #333;
}

.contato-text p {
    margin-bottom: 0;
    color: #666;
    line-height: 1.5;
}

.social-media {
    margin-top: 20px;
}

.social-media a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.social-media a:hover {
    background-color: #e74c3c;
}

.contato-form .form-group {
    margin-bottom: 20px;
}

.contato-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.contato-form input,
.contato-form textarea,
.contato-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contato-form textarea {
    height: 150px;
    resize: vertical;
}

.contato-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e74c3c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

.contato-form select:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
    outline: none;
}

/* Estilos para mensagens de erro */
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.05);
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

/* Estilos para mensagens do formulário */
.form-message {
    padding: 12px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-weight: 500;
    animation: fadeIn 0.3s ease;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.fade-out {
    animation: fadeOut 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-10px); }
}

.info-item {
    display: flex;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 20px;
    color: #e74c3c;
    margin-right: 15px;
    width: 20px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #333;
    color: #fff;
    padding: 50px 0 20px;
}

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

.footer-col h3,
.footer-column h3,
.footer-links-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3:after,
.footer-column h3:after,
.footer-links-column h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #e74c3c;
}

.footer-col p,
.footer-column p,
.footer-logo p {
    margin-bottom: 15px;
    color: #ccc;
}

.footer-col ul,
.footer-column ul,
.footer-links-column ul {
    list-style: none;
}

.footer-col ul li,
.footer-column ul li,
.footer-links-column ul li {
    margin-bottom: 10px;
}

.footer-col ul li a,
.footer-column ul li a,
.footer-links-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover,
.footer-column ul li a:hover,
.footer-links-column ul li a:hover {
    color: #e74c3c;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.social-links a,
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ED0E15;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-links a:hover,
.social-icons a:hover {
    background-color: #e74c3c;
}

/* ===== BOTÕES FLUTUANTES ===== */
/* WhatsApp Float Button */
.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 rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    width: 45px;
    height: 45px;
    bottom: 40px;
    left: 40px;
    background-color: var(--mix-red);
    color: var(--mix-white);
    border-radius: 50px;
    text-align: center;
    font-size: 25px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}

.back-to-top:hover {
    background-color: var(--mix-bright-red);
    transform: scale(1.1);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top i {
    color: var(--mix-yellow);
}

/* ===== WHATSAPP BUTTONS ===== */
.whatsapp-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

/* Animação para o menu móvel */
.mobile-menu-toggle {
    transition: transform 0.3s ease;
}

.mobile-menu-toggle.active {
    transform: rotate(90deg);
}

/* Animação para menus suspensos */
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 992px) {
    .header-top {
        flex-wrap: wrap;
    }
    
    .logo {
        margin-bottom: 15px;
        width: 100%;
        text-align: center;
    }
    
    .search-bar {
        order: 2;
        margin: 15px 0 0;
        max-width: 100%;
    }
    
    .hero {
        height: 60vh;
        margin-top: 160px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .acoes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .main-nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    .main-nav li {
        margin: 10px 0;
    }
    
    .hero {
        height: 50vh;
        margin-top: 200px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature {
        margin: 5px 0;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 5px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin: 30px 0;
    }
    
    .footer-links-column h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-whatsapp,
    .btn-app-download {
        width: 80%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    .encarte-img {
        height: 300px;
    }
    
    .acoes-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== DICAS DO MIX ===== */
.dicas {
    background-color: #fff;
}

.dicas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.dica-card {
    background-color: #f9f9f9;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.dica-card:hover {
    transform: translateY(-10px);
}

.dica-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.dica-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.dica-card:hover .dica-img img {
    transform: scale(1.05);
}

.dica-categoria {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e74c3c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: bold;
}

.dica-content {
    padding: 20px;
}

.dica-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #333;
}

.dica-content p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 4.5em;
}

.dica-content .btn-secondary {
    margin-top: 15px;
    background-color: #e74c3c;
}

.dica-content .btn-secondary:hover {
    background-color: #c0392b;
}

.dica-meta {
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 0.9rem;
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.dica-meta span {
    display: flex;
    align-items: center;
}

.dica-meta i {
    margin-right: 5px;
}

/* ===== SOBRE ===== */
.sobre {
    background-color: #f9f9f9;
}

.sobre-content {
    max-width: 1000px;
    margin: 0 auto;
}

.sobre-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.sobre-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sobre-historia,
.sobre-missao-visao-valores {
    margin-bottom: 40px;
}

.sobre-historia h3,
.sobre-missao-visao-valores h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.sobre-historia h3:after,
.sobre-missao-visao-valores h3:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #e74c3c;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.missao-visao-valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.mvv-card {
    background-color: #fff;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.mvv-card:hover {
    transform: translateY(-10px);
}

.mvv-icon {
    font-size: 40px;
    color: #e74c3c;
    margin-bottom: 20px;
}

.mvv-card h4 {
    font-size: 1.4rem;
}

.mvv-card ul {
    list-style-position: inside;
    text-align: left;
    margin-top: 15px;
}

.mvv-card ul li {
    margin-bottom: 8px;
    line-height: 1.4;
}

/* ===== VAGAS ===== */
.vagas {
    background-color: #f9f9f9;
}

.vagas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.vaga-card {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.vaga-card:hover {
    transform: translateY(-10px);
}

.vaga-header {
    background-color: #e74c3c;
    color: #fff;
    padding: 15px 20px;
}

.vaga-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.vaga-content {
    padding: 20px;
}

.vaga-info {
    margin-bottom: 15px;
}

.vaga-info p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.vaga-info i {
    margin-right: 10px;
    color: #e74c3c;
    width: 20px;
}

.vaga-descricao {
    margin-bottom: 20px;
}

.vaga-descricao h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.vaga-descricao ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.vaga-descricao ul li {
    margin-bottom: 5px;
}

.vaga-actions {
    text-align: center;
}

.vaga-img {
    height: 200px;
    overflow: hidden;
}

.vaga-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.vaga-card:hover .vaga-img img {
    transform: scale(1.05);
}

.participe {
    margin-top: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.participe h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #333;
}

.participe p {
    margin-bottom: 20px;
    max-width: 600px;
}

.vagas-envio-cv {
    text-align: center;
    margin-top: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.envio-cv-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.envio-cv-content h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #333;
}

.envio-cv-content p {
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
    background-color: #fff;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.depoimento-card {
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.depoimento-card:before {
    content: '\201C';
    font-size: 80px;
    position: absolute;
    top: 20px;
    left: 20px;
    color: rgba(231, 76, 60, 0.1);
    font-family: Georgia, serif;
}

.depoimento-texto {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.depoimento-autor {
    display: flex;
    align-items: center;
}

.depoimento-autor-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.depoimento-autor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.depoimento-autor-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.depoimento-autor-info p {
    margin: 5px 0 0;
    color: #666;
    font-size: 0.9rem;
}

/* ===== EVENTOS ===== */
.eventos-proximos {
    margin-top: 50px;
}

.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.evento-card {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.evento-card:hover {
    transform: translateY(-10px);
}

.evento-img {
    height: 200px;
    overflow: hidden;
}

.evento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.evento-card:hover .evento-img img {
    transform: scale(1.05);
}

.evento-content {
    padding: 20px;
}

.evento-data {
    display: inline-block;
    background-color: #e74c3c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.evento-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #333;
}

.evento-content p {
    color: #666;
    margin-bottom: 15px;
}

.evento-info {
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 0.9rem;
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.evento-info span {
    display: flex;
    align-items: center;
}

.evento-info i {
    margin-right: 5px;
}

/* ===== COMUNIDADE ===== */
.comunidade {
    background-color: #f8f9fa;
}

.comunidade-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.comunidade-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.instituicoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.instituicao-card {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: center;
}

.instituicao-card:hover {
    transform: translateY(-10px);
}

.instituicao-img {
    height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #f9f9f9;
}

.instituicao-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.instituicao-content {
    padding: 20px;
}

.instituicao-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #333;
}

.instituicao-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* Estilos para a grade da seção Comunidade */
.acoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.acao-item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    background-color: #fff;
}

.acao-item:hover {
    transform: translateY(-10px);
}

.acao-img {
    position: relative;
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.acao-img img {
    max-width: 250px;
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s;
}

.acao-item:hover .acao-img img {
    transform: scale(1.05);
}

.acao-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px;
    transition: background-color 0.3s;
}

.acao-overlay h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.acao-overlay p {
    font-size: 0.9rem;
    margin: 0;
}

/* ===== LOJAS ===== */
.lojas {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.lojas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.loja-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.loja-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.loja-card p {
    margin-bottom: 10px;
    color: #666;
}

.loja-card i {
    color: #e74c3c;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.btn-maps {
    display: inline-block;
    background-color: #e74c3c;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-maps:hover {
    background-color: #c0392b;
}

.btn-maps i {
    color: #ffeb3b;
    margin-right: 8px;
}

/* ===== NEWSLETTER ===== */
.newsletter {
    background-color: #e74c3c;
    color: #fff;
    padding: 40px 0;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.newsletter-form button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 0 30px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #222;
}

/* ===== CONTATO ===== */
.contato {
    background-color: #fff;
    padding: 80px 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.contato h2 {
    margin-bottom: 50px;
}

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

.contato-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contato-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ddd;
    transition: transform 0.3s ease;
}

.contato-item:hover {
    transform: translateX(5px);
}

.contato-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contato-item i {
    font-size: 24px;
    color: #e74c3c;
    margin-right: 15px;
    background-color: rgba(231, 76, 60, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contato-text h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
    color: #333;
}

.contato-text p {
    margin-bottom: 0;
    color: #666;
    line-height: 1.5;
}

.social-media {
    margin-top: 20px;
}

.social-media a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.social-media a:hover {
    background-color: #e74c3c;
}

.contato-form .form-group {
    margin-bottom: 20px;
}

.contato-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.contato-form input,
.contato-form textarea,
.contato-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contato-form textarea {
    height: 150px;
    resize: vertical;
}

.contato-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e74c3c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

.contato-form select:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
    outline: none;
}

/* Estilos para mensagens de erro */
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #e74c3c;
    background-color: rgba(231, 76, 60, 0.05);
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

/* Estilos para mensagens do formulário */
.form-message {
    padding: 12px 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-weight: 500;
    animation: fadeIn 0.3s ease;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.fade-out {
    animation: fadeOut 0.5s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-10px); }
}

.info-item {
    display: flex;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 20px;
    color: #e74c3c;
    margin-right: 15px;
    width: 20px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #333;
    color: #fff;
    padding: 50px 0 20px;
}

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

.footer-col h3,
.footer-column h3,
.footer-links-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3:after,
.footer-column h3:after,
.footer-links-column h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #e74c3c;
}

.footer-col p,
.footer-column p,
.footer-logo p {
    margin-bottom: 15px;
    color: #ccc;
}

.footer-col ul,
.footer-column ul,
.footer-links-column ul {
    list-style: none;
}

.footer-col ul li,
.footer-column ul li,
.footer-links-column ul li {
    margin-bottom: 10px;
}

.footer-col ul li a,
.footer-column ul li a,
.footer-links-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover,
.footer-column ul li a:hover,
.footer-links-column ul li a:hover {
    color: #e74c3c;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.social-links a,
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ED0E15;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-links a:hover,
.social-icons a:hover {
    background-color: #e74c3c;
}

/* ===== BOTÕES FLUTUANTES ===== */
/* WhatsApp Float Button */
.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 rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    width: 45px;
    height: 45px;
    bottom: 40px;
    left: 40px;
    background-color: var(--mix-red);
    color: var(--mix-white);
    border-radius: 50px;
    text-align: center;
    font-size: 25px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}

.back-to-top:hover {
    background-color: var(--mix-bright-red);
    transform: scale(1.1);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top i {
    color: var(--mix-yellow);
}

/* ===== WHATSAPP BUTTONS ===== */
.whatsapp-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

/* Animação para o menu móvel */
.mobile-menu-toggle {
    transition: transform 0.3s ease;
}

.mobile-menu-toggle.active {
    transform: rotate(90deg);
}

/* Animação para menus suspensos */
.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 992px) {
    .header-top {
        flex-wrap: wrap;
    }
    
    .logo {
        margin-bottom: 15px;
        width: 100%;
        text-align: center;
    }
    
    .search-bar {
        order: 2;
        margin: 15px 0 0;
        max-width: 100%;
    }
    
    .hero {
        height: 60vh;
        margin-top: 160px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .acoes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .main-nav ul {
        flex-direction: column;
        text-align: center;
    }
    
    .main-nav li {
        margin: 10px 0;
    }
    
    .hero {
        height: 50vh;
        margin-top: 200px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .feature {
        margin: 5px 0;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 5px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin: 30px 0;
    }
    
    .footer-links-column h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-whatsapp,
    .btn-app-download {
        width: 80%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    .encarte-img {
        height: 300px;
    }
    
    .acoes-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== SOBRE ===== */
.sobre {
    background-color: #f9f9f9;
}

.sobre-content {
    max-width: 1000px;
    margin: 0 auto;
}

.sobre-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.sobre-img {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.sobre-historia,
.sobre-missao-visao-valores {
    margin-bottom: 40px;
}

.sobre-historia h3,
.sobre-missao-visao-valores h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.sobre-historia h3:after,
.sobre-missao-visao-valores h3:after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #e74c3c;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.missao-visao-valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.mvv-card {
    background-color: #fff;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.mvv-card:hover {
    transform: translateY(-10px);
}

.mvv-icon {
    font-size: 40px;
    color: #e74c3c;
    margin-bottom: 20px;
}

.mvv-card h4 {
    font-size: 1.4rem;
}

.mvv-card ul {
    list-style-position: inside;
    text-align: left;
    margin-top: 15px;
}

.mvv-card ul li {
    margin-bottom: 8px;
    line-height: 1.4;
}

/* ===== VAGAS ===== */
.vagas {
    background-color: #f9f9f9;
}

.vagas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.vaga-card {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.vaga-card:hover {
    transform: translateY(-10px);
}

.vaga-header {
    background-color: #e74c3c;
    color: #fff;
    padding: 15px 20px;
}

.vaga-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.vaga-content {
    padding: 20px;
}

.vaga-info {
    margin-bottom: 15px;
}

.vaga-info p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.vaga-info i {
    margin-right: 10px;
    color: #e74c3c;
    width: 20px;
}

.vaga-descricao {
    margin-bottom: 20px;
}

.vaga-descricao h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.vaga-descricao ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.vaga-descricao ul li {
    margin-bottom: 5px;
}

.vaga-actions {
    text-align: center;
}

.vaga-img {
    height: 200px;
    overflow: hidden;
}

.vaga-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.vaga-card:hover .vaga-img img {
    transform: scale(1.05);
}

.participe {
    margin-top: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.participe h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #333;
}

.participe p {
    margin-bottom: 20px;
    max-width: 600px;
}

.vagas-envio-cv {
    text-align: center;
    margin-top: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.envio-cv-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.envio-cv-content h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #333;
}

.envio-cv-content p {
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
    background-color: #fff;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.depoimento-card {
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.depoimento-card:before {
    content: '\201C';
    font-size: 80px;
    position: absolute;
    top: 20px;
    left: 20px;
    color: rgba(231, 76, 60, 0.1);
    font-family: Georgia, serif;
}

.depoimento-texto {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.depoimento-autor {
    display: flex;
    align-items: center;
}

.depoimento-autor-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.depoimento-autor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.depoimento-autor-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.depoimento-autor-info p {
    margin: 5px 0 0;
    color: #666;
    font-size: 0.9rem;
}

/* ===== EVENTOS ===== */
.eventos-proximos {
    margin-top: 50px;
}

.eventos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.evento-card {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.evento-card:hover {
    transform: translateY(-10px);
}

.evento-img {
    height: 200px;
    overflow: hidden;
}

.evento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.evento-card:hover .evento-img img {
    transform: scale(1.05);
}

.evento-content {
    padding: 20px;
}

.evento-data {
    display: inline-block;
    background-color: #e74c3c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.evento-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #333;
}

.evento-content p {
    color: #666;
    margin-bottom: 15px;
}

.evento-info {
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 0.9rem;
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.evento-info span {
    display: flex;
    align-items: center;
}

.evento-info i {
    margin-right: 5px;
}

/* ===== COMUNIDADE ===== */
.comunidade {
    background-color: #f8f9fa;
}

.comunidade-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.comunidade-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.instituicoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.instituicao-card {
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: center;
}

.instituicao-card:hover {
    transform: translateY(-10px);
}

.instituicao-img {
    height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #f9f9f9;
}

.instituicao-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.instituicao-content {
    padding: 20px;
}

.instituicao-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #333;
}

.instituicao-content p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

/* Estilos para a grade da seção Comunidade */
.acoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.acao-item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    background-color: #fff;
}

.acao-item:hover {
    transform: translateY(-5px);
}

.acao-img {
    position: relative;
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.acao-img img {
    max-width: 250px;
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s;
}

.acao-item:hover .acao-img img {
    transform: scale(1.05);
}

.acao-info {
    padding: 15px;
    text-align: center;
}

.acao-info h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: var(--mix-dark-gray);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 4.5em;
}

.acao-descricao-preview {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--mix-dark-gray);
    height: 4em;
}

.btn-saiba-mais {
    display: inline-block;
    background-color: var(--mix-red);
    color: var(--mix-white);
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-saiba-mais:hover {
    background-color: var(--mix-bright-red);
}

.acao-modal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 10;
}

.acao-modal.active {
    opacity: 1;
    visibility: visible;
}

.acao-modal-content {
    padding: 20px;
    max-width: 90%;
    text-align: center;
}

.acao-modal-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: var(--mix-dark-gray);
}

.acao-modal-content p {
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.btn-fechar {
    display: inline-block;
    background-color: var(--mix-dark-gray);
    color: var(--mix-white);
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-fechar:hover {
    background-color: #333;
}
