* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #fcfcfc;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- TEXTOS JUSTIFICADOS --- */
p, li {
    text-align: justify;
}

/* Exceções de Centralização */
.hero-content p, 
footer p, 
.section-title, 
.page-header p,
.card-content h3, 
.text h2, 
.menu-box h3,
.pillar-card h3,
.slideshow-window p,
.clients-section p,
.center-text {
    text-align: center;
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- NAVBAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: #333;
    padding: 0 5%;
    height: 100px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-img {
    height: 100%;
    display: flex;
    align-items: center;
    
}

.logo-img img {
    width: auto;
    max-height: 90px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 1.5rem;
}

.nav-links a {
    font-weight: 600;
    transition: 0.3s;
    color: #333;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.nav-links a:hover, .nav-links a.active {
    color: #ff5757;
}

.trabalhe-btn {
    cursor: pointer;
    border: 2px solid #ff5757;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    color: #ff5757 !important;
    transition: all 0.3s ease; /* Adicionei para suavizar o hover */
}

.trabalhe-btn:hover {
    background-color: #ff5757;
    color: white !important;
}

/* --- SIDEBAR --- */
.sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    z-index: 2000;
    transition: 0.4s ease; /* A velocidade da animação */
    padding: 2rem;
    display: flex;
    flex-direction: column;
    visibility: hidden; /* Começa invisível */
}

/* --- CORREÇÃO PRINCIPAL AQUI --- */
/* Antes estava .sidebar.open, agora é .active para bater com o JS */
.sidebar.active {
    right: 0;
    visibility: visible; /* Torna visível quando ativa */
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.close-btn {
    font-size: 2rem;
    cursor: pointer;
    color: #ff5757;
}

/* --- MELHORIA NO OVERLAY (Fundo Escuro) --- */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1500;
    
    /* Mudança para permitir animação suave (fade in) */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.active {
    /* Mostra suavemente */
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .sidebar {
        /* No celular, usa porcentagem para não estourar a tela */
        width: 85%; 
        right: -100%; /* Garante que saia totalmente da tela menor */
    }
    
    .sidebar.active {
        right: 0;
    }
}

/* --- HERO --- */
.hero {
    height: 85vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('imagens/cozinha industrial.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-color: #333;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-align: center;
}

.hero-address {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.4);
    color: white;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    text-align: center;
}

.btn {
    display: inline-block;
    background: #ff5757;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    margin-top: 1rem;
    font-weight: bold;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background: #e04040;
}

.btn-outline {
    display: inline-block;
    border: 2px solid #ff5757;
    color: #ff5757;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    margin-top: 1rem;
    font-weight: bold;
    text-align: center;
}

.btn-outline:hover {
    background: #ff5757;
    color: white;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #ff5757;
}

/* --- CARDS E GRID --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border-bottom: 4px solid #ff5757;
}

.service-card:hover {
    transform: translateY(-5px);
}

.card-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
    text-align: center;
}

.card-content p {
    text-align: justify;
}

.card-content h3 {
    margin-bottom: 1rem;
    color: #333;
}

.page-header {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 3rem 0;
}

.page-header h1 {
    color: white;
    text-align: center;
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.about-content .text, .about-content .image {
    flex: 1;
}

.about-content img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.equip-section {
    background-color: #fff0f0;
}

/* --- CARROSSEL (SLIDER) --- */
.equip-card {
    background: white;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 380px; 
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.equip-card h3 {
    padding: 1rem;
    text-align: center;
    margin: 0;
    background: #fff;
    z-index: 2;
}

.slideshow-window {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slides-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.slide p {
    padding: 1rem;
    text-align: center !important;
    font-weight: 600;
    color: #555;
    background: white;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-slide, .next-slide {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 10;
}

.prev-slide:hover, .next-slide:hover {
    background-color: #ff5757;
}

.prev-slide { left: 10px; }
.next-slide { right: 10px; }

/* --- CLIENTES --- */
.clients-section {
    background-color: #f0f0f0;
    padding: 4rem 0;
    text-align: center;
}

.clients-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    align-items: center;
}

.client-logo {
    background: white;
    padding: 1rem;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* --- MENUS E TABELAS --- */
.menu-grid-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.menu-box {
    background: white;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.menu-box.destaque {
    border: 2px solid #ff5757;
    transform: scale(1.02);
}

.menu-box h3 {
    background: #333;
    color: white;
    padding: 1rem;
    text-align: center;
    margin: 0;
}

.menu-box.destaque h3 {
    background: #ff5757;
}

.menu-list {
    padding: 1.5rem;
    list-style: none;
}

.menu-list li {
    border-bottom: 1px solid #f0f0f0;
    padding: 0.5rem 0;
    color: #555;
    text-align: left;
}

.pat-section {
    background-color: #333;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.pat-intro {
    max-width: 800px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
    color: #ddd;
    text-align: center !important;
}

.pat-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: left;
}

.benefit {
    background: #444;
    padding: 2rem;
    border-radius: 8px;
    flex: 1;
    min-width: 300px;
}

.benefit h4 {
    color: #ff5757;
    margin-bottom: 1rem;
    border-bottom: 1px solid #666;
    padding-bottom: 0.5rem;
    text-align: left;
}

.benefit ul {
    list-style: disc;
    padding-left: 1.2rem;
    color: #ddd;
}

.table-responsive {
    overflow-x: auto;
}

.tech-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: white;
}

.tech-table th, .tech-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.tech-table th {
    background-color: #ff5757;
    color: white;
}

.tech-table tr:hover {
    background-color: #fff5f5;
}

/* --- FORMULÁRIOS --- */
.contact-section {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info, .contact-form {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.contact-form button {
    width: 100%;
}

.info-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    text-align: left;
}

#form-status {
    margin-top: 1rem;
    font-weight: bold;
    text-align: center;
    border-radius: 4px;
    padding: 10px;
    display: none; 
}

#form-status.sending {
    display: block;
    color: #333;
    background-color: #f0f0f0;
}

#form-status.success {
    display: block;
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

#form-status.error {
    display: block;
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}

footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px;
    transition: all 0.3s ease;
}

/* --- ESTILOS DO INDEX (PILARES - CARDS) --- */
.pillars-integration {
    text-align: center;
}

.pillar-card {
    padding: 2rem;
    transition: 0.3s;
    border-radius: 10px;
    border: 1px solid transparent;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.pillar-card:hover {
    border-color: #ff5757;
    background: #fffafa;
    transform: translateY(-5px);
}

.icon-box {
    width: 80px;
    height: 80px;
    background-color: #ff5757;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    font-size: 2.2rem;
    box-shadow: 0 4px 10px rgba(255, 87, 87, 0.3);
}

.pillar-card h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.2rem;
}

.pillar-card p {
    color: #666;
    font-size: 0.95rem;
    text-align: justify;
}

/* --- NOVO ESTILO DO SOBRE NÓS (VERTICAL / LISTA) --- */
.mvv-section {
    background-color: #fdfdfd;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.mvv-vertical-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mvv-row {
    display: flex;
    align-items: flex-start; /* Alinha o ícone com o topo do texto */
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid #ff5757; /* Detalhe colorido à esquerda */
    transition: transform 0.3s ease;
}

.mvv-row:hover {
    transform: translateX(10px); /* Move levemente para direita ao passar mouse */
}

.mvv-icon-wrapper {
    min-width: 80px;
    height: 80px;
    background-color: #fff0f0; /* Fundo vermelho bem claro */
    color: #ff5757;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-right: 2rem;
    flex-shrink: 0; /* Impede que o ícone encolha */
}

.mvv-text-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left; /* Título alinhado à esquerda na lista */
}

.mvv-text-wrapper p {
    font-size: 1rem;
    color: #555;
    text-align: justify;
    margin: 0;
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    background-color: #20b857;
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    fill: white;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    /* Navbar e Sidebar (Mantidos) */
    .nav-links {
        position: fixed;
        right: 0px;
        height: 100vh;
        top: 0;
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 70%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        z-index: 999;
    }
    .nav-links li { margin: 1.5rem 0; }
    .burger { display: block; z-index: 1001; }
    .nav-active { transform: translateX(0%); }
    .sidebar { width: 85%; }
    
    /* Layout Geral Mobile */
    .about-content { flex-direction: column; }
    .about-content .image { order: -1; }
    .container { padding: 0 1.5rem; }
    .section-padding { padding: 2.5rem 0; }
    .hero-content h1 { font-size: 2rem; }
    .menu-box, .equip-card, .benefit, .client-logo { width: 100%; }
    .contact-section { flex-direction: column; }
    
    /* Ajuste do novo MVV Vertical para Mobile */
    .mvv-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    .mvv-icon-wrapper {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    .mvv-text-wrapper h3 {
        text-align: center;
    }
    /* Whatsapp Mobile */
    .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; }
    .whatsapp-icon { width: 28px; height: 28px; }
}

/* --- ESTILO DA NOVA IDENTIDADE CORPORATIVA (ANIMADA) --- */

.mvv-anim-section {
    background: linear-gradient(to bottom, #ffffff, #f9f9f9);
    overflow: hidden; /* Impede barra de rolagem horizontal durante animação */
}

.mvv-container-anim {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.mvv-anim-card {
    background: white;
    flex: 1;
    min-width: 300px;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    border-top: 5px solid #ff5757;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    /* Configuração inicial da Animação (Invisível) */
    opacity: 0; 
    transition: all 1s ease-out; /* Velocidade da animação de entrada */
}

/* Estado de Hover (Quando passa o mouse) */
.mvv-anim-card:hover {
    transform: translateY(-10px) !important; /* Sobe um pouquinho */
    box-shadow: 0 15px 40px rgba(255, 87, 87, 0.2);
}

.mvv-anim-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 15px;
    background-color: #fff0f0;
    border-radius: 50%;
    color: #ff5757;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.mvv-anim-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mvv-anim-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify; /* Mantendo justificado como pediu */
}

/* --- ESTADOS DA ANIMAÇÃO --- */

/* Começa deslocado para a Esquerda */
.from-left {
    transform: translateX(-100px);
}

/* Começa deslocado para Baixo */
.from-bottom {
    transform: translateY(100px);
}

/* Começa deslocado para a Direita */
.from-right {
    transform: translateX(100px);
}

/* CLASSE QUE O JAVASCRIPT VAI ADICIONAR PARA MOSTRAR */
.mvv-visible {
    opacity: 1;
    transform: translate(0, 0); /* Volta para a posição original */
}

/* Mobile: Anima todos de baixo para cima para não quebrar layout */
@media screen and (max-width: 768px) {
    .from-left, .from-right, .from-bottom {
        transform: translateY(50px);
    }
}

/* --- TIMELINE HÍBRIDA (MISTURA 1 + 2) --- */

.mixed-timeline-section {
    background-color: #fff;
    overflow: hidden;
}

.mixed-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 1rem 0;
}

/* A Linha Vertical Conectora */
.mixed-line {
    position: absolute;
    left: 30px; /* Posição da linha */
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #ff5757 0%, #ddd 100%); /* Começa vermelho e suaviza */
    z-index: 1;
}

/* O Bloco do Item (Wrapper) */
.mixed-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
    
    /* Configuração da Animação de Entrada (O efeito "Unveil") */
    opacity: 0;
    transform: translateY(50px); /* Começa mais baixo */
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Movimento suave e elegante */
}

.mixed-item:last-child {
    margin-bottom: 0;
}

/* O Ícone (A "Bolinha") */
.mixed-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 3px solid #ff5757;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    margin-right: 2rem;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 1); /* Borda branca externa para separar da linha */
    transition: transform 0.3s ease;
}

/* O Card de Conteúdo (O visual moderno) */
.mixed-content {
    background: #fff;
    padding: 2rem;
    border-radius: 12px; /* Cantos arredondados */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Sombra suave flutuante */
    border-left: 5px solid #ff5757; /* Detalhe colorido na esquerda */
    flex-grow: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

/* Pequena seta apontando para o ícone */
.mixed-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #ff5757; /* Cor da seta igual à borda */
}

.mixed-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.mixed-content p {
    font-size: 1rem;
    color: #666;
    text-align: justify;
    line-height: 1.7;
    margin: 0;
}

/* --- ESTADOS DE ANIMAÇÃO E HOVER --- */

/* Quando o JS ativa (aparece na tela) */
.mixed-item.visible {
    opacity: 1;
    transform: translateY(0); /* Sobe para a posição original */
}

/* Efeito ao passar o mouse */
.mixed-item:hover .mixed-content {
    transform: translateX(10px); /* Move levemente para a direita */
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.mixed-item:hover .mixed-icon {
    transform: scale(1.1); /* Ícone aumenta */
    background-color: #fff5f5;
}

/* Mobile */
@media screen and (max-width: 768px) {
    .mixed-line { left: 20px; }
    .mixed-icon { width: 40px; height: 40px; font-size: 1.2rem; margin-right: 1rem; }
    .mixed-content { padding: 1.5rem; }
    .mixed-content::before { top: 10px; } /* Ajuste da seta no mobile */
}

/* --- NOVA SEÇÃO LOGÍSTICA (DARK VERTICAL) --- */

.logistics-dark-section {
    /* Imagem de fundo técnica (Inox/Cozinha) com filtro escuro */
    background: linear-gradient(rgba(20, 20, 20, 0.9), rgba(20, 20, 20, 0.85)), url('https://images.unsplash.com/photo-1595429381622-4a0b4117282b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito Parallax (a imagem fica parada enquanto rola) */
    color: white;
    position: relative;
}

.logistics-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.logistics-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.logistics-intro h2 {
    color: white; /* Título Branco */
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.logistics-intro h3 {
    color: #ff5757; /* Subtítulo Vermelho */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
}

.logistics-intro p {
    color: #ccc;
    text-align: center; /* Centralizado aqui fica melhor */
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* O Bloco do Passo a Passo */
.logistics-step {
    background: rgba(255, 255, 255, 0.05); /* Fundo translúcido */
    border-left: 5px solid #ff5757; /* Linha vermelha na esquerda */
    padding: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease, background 0.3s ease;
}

.logistics-step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px); /* Move para direita ao passar mouse */
}

/* numero grandao*/
.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1); /* numero do fundo */
    line-height: 1;
    margin-right: 1.5rem;
    min-width: 60px;
}

.step-content h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.step-content p {
    color: #ddd;
    font-size: 0.95rem;
    text-align: justify;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Ajustes */
@media screen and (max-width: 768px) {
    .logistics-dark-section {
        background-attachment: scroll; /* Remove parallax no mobile para performance */
    }
    .step-number {
        font-size: 2rem;
        margin-right: 1rem;
    }
}
/* --- NOVA SEÇÃO LOGÍSTICA (DARK VERTICAL) --- */

.logistics-dark-section {
    /* Imagem de fundo técnica (Inox/Cozinha) com filtro escuro */
    background: linear-gradient(rgba(20, 20, 20, 0.9), rgba(20, 20, 20, 0.85)), url('https://images.unsplash.com/photo-1595429381622-4a0b4117282b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito Parallax (a imagem fica parada enquanto rola) */
    color: white;
    position: relative;
}

.logistics-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.logistics-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.logistics-intro h2 {
    color: white; /* Título Branco */
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.logistics-intro h3 {
    color: #ff5757; /* Subtítulo Vermelho */
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
}

.logistics-intro p {
    color: #ccc;
    text-align: center; /* Centralizado aqui fica melhor */
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* O Bloco do Passo a Passo */
.logistics-step {
    background: rgba(255, 255, 255, 0.05); /* Fundo translúcido */
    border-left: 5px solid #ff5757; /* Linha vermelha na esquerda */
    padding: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease, background 0.3s ease;
}

.logistics-step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px); /* Move para direita ao passar mouse */
}

/* O Número Grande (Substitui Emoji) */
.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1); /* Número discreto ao fundo */
    line-height: 1;
    margin-right: 1.5rem;
    min-width: 60px;
}

.step-content h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.step-content p {
    color: #ddd;
    font-size: 0.95rem;
    text-align: justify;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Ajustes */
@media screen and (max-width: 768px) {
    .logistics-dark-section {
        background-attachment: scroll; /* Remove parallax no mobile para performance */
    }
    .step-number {
        font-size: 2rem;
        margin-right: 1rem;
    }
}

/* --- SEÇÃO DE LOGÍSTICA (PROCESSO VERTICAL LIMPO) --- */

.process-section {
    background-color: #f4f6f8; /* Cinza bem clarinho, profissional */
}

.process-container {
    max-width: 800px; /* Mais estreito para não ficar "muito grande" */
    margin: 0 auto;
}

.process-card {
    background: white;
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    border-left: 6px solid #ff5757; /* A marca da RC */
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateX(10px); /* Move levemente para a direita */
}

/* Área do Ícone SVG (Sem emojis) */
.process-icon-box {
    width: 60px;
    height: 60px;
    background-color: #fff0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.process-icon-box svg {
    width: 30px;
    height: 30px;
    fill: #ff5757; /* Ícones vermelhos */
}

/* Texto */
.process-content {
    flex-grow: 1;
}

.process-content h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 700;
}

.process-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    text-align: justify;
    line-height: 1.5;
}

/* Número discreto de fundo (opcional, para dar estilo) */
.process-number {
    font-size: 3rem;
    font-weight: 900;
    color: #f0f0f0;
    margin-left: auto;
    line-height: 1;
    display: none; /* Escondido no mobile, aparece no desktop */
}

@media screen and (min-width: 768px) {
    .process-number {
        display: block;
        margin-left: 20px;
    }
}


/* --- SEÇÃO LOGÍSTICA: LISTA EDITORIAL (SEM CARTÕES) --- */

.clean-logistics-section {
    background-color: #ffffff;
    border-top: 1px solid #eee; /* Separação sutil */
}

.clean-container {
    max-width: 850px;
    margin: 0 auto;
}

.clean-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.clean-intro h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 1rem;
}

.clean-intro p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* O Item da Lista */
.clean-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 4rem; /* Bastante espaço entre os itens */
    position: relative;
    
    /* Animação inicial */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.clean-step:last-child {
    margin-bottom: 0;
}

/* O Número Grande Vermelho (Destaque) */
.clean-number {
    font-size: 4rem;
    font-weight: 900;
    color: #ff5757;
    line-height: 0.8;
    margin-right: 2rem;
    font-family: 'Montserrat', sans-serif;
    min-width: 80px; /* Garante alinhamento */
    text-align: right;
}

/* O Conteúdo de Texto */
.clean-content {
    padding-top: 5px; /* Ajuste fino para alinhar com o topo do número */
    border-bottom: 1px solid #eee; /* Linha fina abaixo do texto para separar */
    padding-bottom: 3rem;
    width: 100%;
}

.clean-step:last-child .clean-content {
    border-bottom: none; /* Remove linha do último */
}

.clean-content h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

/* Ícone SVG pequeno ao lado do título */
.clean-mini-icon {
    width: 24px;
    height: 24px;
    fill: #555;
    margin-left: 10px;
    opacity: 0.7;
}

.clean-content p {
    font-size: 1.05rem;
    color: #555;
    text-align: justify;
    line-height: 1.8;
    margin: 0;
}

/* Classe de Ativação (JS) */
.clean-step.fade-up {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile */
@media screen and (max-width: 768px) {
    .clean-step {
        flex-direction: column;
        margin-bottom: 3rem;
    }
    .clean-number {
        text-align: left;
        font-size: 3rem;
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
    .clean-content {
        padding-bottom: 2rem;
    }
}



.corporate-seal-section {
    background-color: #333; /* Fundo escuro para contrastar com o resto */
    color: #fff;
    border-top: 5px solid #ff5757; /* A assinatura da marca */
    position: relative;
}

.seal-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.seal-title h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.seal-title p {
    color: #bbb;
    font-size: 0.9rem;
    text-align: left; /* Garante alinhamento */
}

.seal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
    border-top: 1px solid #555;
    padding-top: 2rem;
}

.seal-item h4 {
    color: #ff5757;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.seal-item p {
    color: #fff;
    font-size: 1.1rem; /* Texto maior para leitura fácil */
    font-family: 'Montserrat', sans-serif; /* Fonte mais técnica */
    margin: 0;
    text-align: left;
}

/* Mobile */
@media screen and (max-width: 768px) {
    .seal-container {
        flex-direction: column;
        text-align: center;
    }
    .seal-title p, .seal-item p {
        text-align: center;
    }
}

/* --- PÁGINA DE SERVIÇOS (ESTILO EXPANDIDO) --- */

/* 1. Animação dos Cards de Serviço */
.services-expanded-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.service-feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    text-align: center;
    position: relative;
    overflow: hidden; /* Importante para o efeito de brilho */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Efeito elástico suave */
}

/* O Ícone do Card */
.service-icon-large {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.4s ease;
}

/* Título e Texto */
.service-feature-card h3 {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 1rem;
}

.service-feature-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Lista de Detalhes dentro do card */
.service-details-list {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dashed #ddd;
}

.service-details-list li {
    margin-bottom: 0.8rem;
    color: #555;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.service-details-list li::before {
    content: '✔';
    color: #ff5757;
    font-weight: bold;
    margin-right: 10px;
}

/* --- ANIMAÇÃO (HOVER) --- */
.service-feature-card:hover {
    transform: translateY(-15px); /* Sobe bastante */
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: transparent;
}

.service-feature-card:hover .service-icon-large {
    transform: scale(1.2) rotate(5deg); /* Ícone cresce e gira levemente */
}

/* Borda Inferior Colorida que aparece */
.service-feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: #ff5757;
    transition: width 0.4s ease;
}

.service-feature-card:hover::after {
    width: 100%; /* A linha vermelha preenche a base */
}

/* 2. Área de Texto Inferior (Editorial) */
.deep-dive-section {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 2rem;
}

.text-block p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #444;
    text-align: justify;
    margin-bottom: 1rem;
}

.text-highlight {
    background-color: #fff8f8;
    border-left: 4px solid #ff5757;
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
}

/* O Divisor Gráfico entre parágrafos */
.graphic-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
    opacity: 0.6;
}

.graphic-line {
    height: 1px;
    background-color: #ddd;
    flex-grow: 1;
    max-width: 150px;
}

.graphic-icon {
    margin: 0 15px;
    font-size: 1.5rem;
    color: #ff5757;
}

/* --- PÁGINA DE SERVIÇOS (LAYOUT ALTERNADO + ANIMAÇÃO DE TEXTO) --- */

.services-stacked-section {
    display: flex;
    flex-direction: column;
    gap: 6rem; /* Espaço generoso entre cada serviço */
    margin-bottom: 5rem;
}

/* A linha que contém Imagem + Texto */
.service-row {
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    gap: 4rem;
}

/* Classe para inverter a ordem (Texto na esquerda, Imagem na direita) */
.service-row.reverse {
    flex-direction: row-reverse;
}

/* Container da Imagem Grande (NÃO É CARD) */
.service-image-large {
    flex: 1; /* Ocupa metade do espaço */
    height: 450px; /* Altura imponente para a foto */
    border-radius: 16px; /* Bordas arredondadas modernas */
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12); /* Sombra difusa para destacar a foto */
}

.service-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a foto preencha sem distorcer */
    transition: transform 0.6s ease;
}

/* Leve zoom na imagem ao passar o mouse na seção */
.service-row:hover .service-image-large img {
    transform: scale(1.03);
}

/* Container do Texto */
.service-text-content {
    flex: 1; /* Ocupa a outra metade */
}

.service-text-content h3 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

/* Detalhe sublinhado vermelho elegante no título */
.service-text-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 70px;
    height: 3px;
    background: #ff5757;
}

.service-text-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Lista de Detalhes (Mantendo o estilo limpo anterior) */
.service-details-list {
    list-style: none;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.service-details-list li {
    margin-bottom: 0.8rem;
    color: #555;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.service-details-list li::before {
    content: '✔';
    color: #ff5757;
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.1rem;
}

/* --- ANIMAÇÃO DE CASCATA DE TEXTO --- */
/* Estado inicial: invisível e ligeiramente abaixo */
.text-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

/* Estado final: visível e na posição correta */
.text-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delays para criar o efeito de "um por um" */
.delay-1 { transition-delay: 0.1s; } /* Título */
.delay-2 { transition-delay: 0.3s; } /* Parágrafo */
.delay-3 { transition-delay: 0.5s; } /* Lista */


/* --- MOBILE --- */
@media screen and (max-width: 968px) {
    .service-row, .service-row.reverse {
        flex-direction: column; /* Empilha tudo no celular */
        gap: 2rem;
    }
    
    .service-image-large {
        width: 100%;
        height: 280px; /* Altura menor no celular */
    }
    
    .service-text-content h3 {
        font-size: 1.7rem;
    }
}

/* --- ÁREA DE TEXTO DECORADA (EDITORIAL STYLE) --- */

.deep-dive-section {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 2rem;
}

/* 1. Efeito Letra Capitular (Drop Cap) */
/* Aplique a classe .drop-cap no primeiro parágrafo */
.drop-cap::first-letter {
    float: left;
    font-size: 4rem;
    line-height: 0.8;
    font-weight: 700;
    color: #ff5757;
    margin-right: 12px;
    margin-top: 5px;
    font-family: 'Montserrat', sans-serif;
}

/* 2. Títulos Decorados */
.styled-title {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
    padding-left: 15px;
    border-left: 4px solid #ff5757; /* Barra vertical vermelha */
    line-height: 1.2;
}

.text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 1.5rem;
}

/* 3. Citação Estilo Revista (Substitui o text-highlight) */
.magazine-quote {
    position: relative;
    background: #fdfdfd; /* Fundo quase branco */
    padding: 2.5rem 2rem;
    margin: 2.5rem 0;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    text-align: center;
}

.magazine-quote p {
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #444;
    position: relative;
    z-index: 2;
    margin: 0;
}

/* Aspa Gigante Decorativa no Fundo */
.magazine-quote::before {
    content: '“';
    font-family: serif;
    font-size: 8rem;
    line-height: 1;
    color: rgba(255, 87, 87, 0.08); /* Vermelho bem clarinho */
    position: absolute;
    top: -20px;
    left: 10px;
    z-index: 1;
}

/* 4. Divisor Diamante (Linha com Losango) */
.diamond-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3.5rem 0;
    opacity: 0.7;
}

.diamond-line {
    height: 1px;
    background: #ffcccc; /* Linha sutil */
    width: 100px; /* Tamanho da linha */
}

.diamond-shape {
    width: 8px;
    height: 8px;
    background: #ff5757;
    transform: rotate(45deg); /* Vira um losango */
    margin: 0 15px;
}

/* --- IMAGENS EDITORIAIS (PARA ORNAR COM O TEXTO) --- */

/* Estilo Base para as Imagens */
.editorial-img-box {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08); /* Sombra suave e elegante */
    margin-bottom: 1.5rem;
}

.editorial-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.editorial-img-box:hover img {
    transform: scale(1.05); /* Zoom sutil ao passar o mouse */
}

/* --- TIPO 1: FLUTUANDO À DIREITA (Para o texto do PAT) --- */
.float-right-img {
    float: right;
    width: 40%; /* Ocupa pouco menos da metade */
    margin-left: 2.5rem; /* Espaço entre texto e imagem */
    height: 300px; /* Altura fixa para ficar quadrado/elegante */
    shape-outside: margin-box; /* Faz o texto contornar a imagem de forma mais orgânica */
}

/* Classe auxiliar para limpar o float (garantir que o layout não quebre depois) */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* --- TIPO 2: LAYOUT LATERAL (Para o texto de Infraestrutura) --- */
.side-by-side-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start; /* Alinha ao topo */
}

.tall-left-img {
    flex: 1; /* Ocupa 1 parte */
    height: 450px; /* Imagem bem alta e imponente */
}

.side-text-content {
    flex: 2; /* O texto ocupa 2 partes (mais largo) */
}

/* --- AJUSTES MOBILE --- */
@media screen and (max-width: 768px) {
    /* No celular, a imagem flutuante deixa de flutuar e fica 100% de largura */
    .float-right-img {
        float: none;
        width: 100%;
        height: 250px;
        margin-left: 0;
        margin-bottom: 2rem;
    }

    /* O layout lateral vira uma pilha vertical */
    .side-by-side-layout {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .tall-left-img {
        width: 100%;
        height: 300px; /* Altura menor no celular */
    }
}

/* --- ANIMAÇÃO DE TRAVESSIA (CAMINHÃOZINHO) --- */

.fun-separator-section {
    position: relative;
    height: 120px; /* Altura da pista */
    overflow: hidden; /* Esconde quando sai da tela */
    margin-top: 2rem;
    margin-bottom: 2rem;
    background: linear-gradient(to bottom, #fff 50%, #f9f9f9 50%); /* Cria uma linha de chão sutil */
}

/* A Pista (Linha pontilhada) */
.road-line {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, #ddd 50%, transparent 50%);
    background-size: 40px 100%; /* Tamanho do pontilhado */
    background-repeat: repeat-x;
}

/* O Veículo/Objeto */
.moving-object {
    position: absolute;
    bottom: 22px; /* Logo acima da linha */
    left: -150px; /* Começa fora da tela na esquerda */
    width: 120px; /* Tamanho do caminhão */
    animation: driveAcross 9s linear infinite; /* 15s para cruzar a tela */
    z-index: 10;
}


.vehicle-body {
    width: 100%;
    animation: engineRumble 0.3s infinite alternate; /* Tremidinha do motor */
}


@keyframes driveAcross {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(100vw + 300px)); 
    }
}


@keyframes engineRumble {
    from { transform: translateY(0); }
    to { transform: translateY(-1px); }
}


.exhaust-fume {
    position: absolute;
    bottom: 5px;
    left: -10px;
    width: 8px;
    height: 8px;
    background: #ccc;
    border-radius: 50%;
    opacity: 0;
    animation: puff 1s infinite;
}

.exhaust-fume:nth-child(2) { animation-delay: 0.3s; }
.exhaust-fume:nth-child(3) { animation-delay: 0.6s; }

@keyframes puff {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-20px, -10px) scale(2);
        opacity: 0;
    }
}


@media screen and (max-width: 768px) {
    .moving-object {
        width: 90px;
        animation-duration: 8s;
    }
}


/* --- CARDÁPIOS: FLIP CARDS (GIRATÓRIOS) --- */

.flip-cards-section {
    perspective: 1000px;
}

.flip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 400px;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
}

.flip-card-front {
    background-color: #fff;
    color: black;
}

.flip-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.meal-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ff5757;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
    z-index: 10;
    letter-spacing: 0.5px;
}

.flip-front-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    text-align: left;
}

.flip-front-caption h3 {
    color: white;
    font-size: 1.4rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 4px solid #ff5757;
    padding-left: 10px;
}

.flip-front-caption p {
    color: #ddd;
    font-size: 0.9rem;
    margin-top: 4px;
    padding-left: 14px;
}

.flip-card-back {
    background-color: #2d3436;
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    border: 2px solid #ff5757;
}

.flip-card-back h3 {
    color: #ff5757;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.tech-list {
    list-style: none;
    text-align: left;
    width: 100%;
    padding: 0;
}

.tech-list li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 8px 0;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
}

.tech-list li strong {
    color: #ccc;
}

.tech-list li span {
    color: #fff;
    font-weight: bold;
}

.card-tag {
    margin-top: 1.5rem;
    background: #ff5757;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.interaction-hint {
    display: inline-block;
    background-color: #fff0f0;
    color: #ff5757;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 15px;
    border: 1px solid #ffcccc;
}

@media screen and (max-width: 768px) {
    .flip-grid {
        grid-template-columns: 1fr;
    }
}

/* --- SEÇÃO SEGURANÇA (INFOGRÁFICO DE PROCESSO) --- */
.safety-process-section {
    background-color: #f8f9fa;
    text-align: center;
}

.process-steps-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

/* Linha conectora (tracejada) atrás dos itens */
.process-steps-container::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50px;
    right: 50px;
    height: 2px;
    background-image: linear-gradient(to right, #ddd 50%, transparent 50%);
    background-size: 20px 100%;
    z-index: 0;
}

.process-step {
    flex: 1;
    min-width: 180px;
    position: relative;
    z-index: 1; /* Fica acima da linha */
}

.step-icon-circle {
    width: 100px;
    height: 100px;
    background: white;
    border: 3px solid #ff5757;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ff5757;
    box-shadow: 0 5px 15px rgba(255, 87, 87, 0.15);
    transition: transform 0.3s ease;
}

.process-step:hover .step-icon-circle {
    transform: scale(1.1);
    background: #ff5757;
    color: white;
}

.process-step h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.process-step p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    padding: 0 10px;
}

/* Esconde a linha tracejada no celular pois vira coluna */
@media screen and (max-width: 900px) {
    .process-steps-container {
        flex-direction: column;
        align-items: center;
    }
    .process-steps-container::before {
        display: none;
    }
    .process-step {
        margin-bottom: 2rem;
    }
}

/* --- SEÇÃO FAQ NUTRICIONAL (ACORDEÃO) --- */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 5rem;
}

.faq-item {
    background: white;
    border: 1px solid #eee;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: white;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: bold;
    color: #444;
    transition: background 0.3s;
}

.faq-question:hover {
    background-color: #fdfdfd;
    color: #ff5757;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

/* Classe ativa (aberta) */
.faq-question.active .faq-icon {
    transform: rotate(45deg); /* Vira um X */
    color: #ff5757;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fafafa;
    padding: 0 1.5rem;
}

.faq-answer p {
    padding: 1.5rem 0;
    color: #666;
    line-height: 1.6;
}

/* --- BLOCO DE CONTATO CORRIGIDO --- */

.contact-grid {
    display: flex; /* Mudamos para Flex para garantir a divisão */
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: flex-start; /* Alinha no topo */
}

/* Coluna da Esquerda (Informações) - 40% da largura */
.contact-info-card {
    flex: 1;
    min-width: 300px; /* Garante que não fique muito estreito */
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border-top: 4px solid #ff5757; /* Detalhe no topo */
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.info-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed #ddd; /* Separador pontilhado */
}

.info-item:last-child {
    border-bottom: none;
}

.info-item h4 {
    color: #ff5757;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.info-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

/* Endereços específicos */
.address-box {
    background: #f9f9f9;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
    border-left: 3px solid #333;
}

.address-box strong {
    display: block;
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

/* Coluna da Direita (Formulário) - 60% da largura */
.contact-form-wrapper {
    flex: 1.5;
    min-width: 320px;
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-header h2 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 2rem; /* Mais espaço entre perguntas */
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ESTILO "MINI FORMS" (LINHA) */
.form-style-line {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 2px solid #eee; /* Apenas linha embaixo */
    background: transparent;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #333;
    transition: border-color 0.3s;
    border-radius: 0; /* Tira arredondamento padrão */
}

.form-style-line:focus {
    outline: none;
    border-bottom-color: #ff5757; /* Linha fica vermelha ao clicar */
}

/* Ajuste para Select e Textarea */
select.form-style-line {
    cursor: pointer;
    background-color: transparent;
}

.form-row {
    display: flex;
    gap: 2rem;
}

.form-row .form-group {
    flex: 1;
}

.submit-btn {
    width: 100%;
    background-color: #ff5757;
    color: white;
    padding: 18px;
    border: none;
    border-radius: 50px; /* Botão arredondado moderno */
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(255, 87, 87, 0.3);
}

.submit-btn:hover {
    background-color: #e64c4c;
    transform: translateY(-2px);
}

/* --- MAPA E IDENTIFICAÇÃO --- */
.map-container {
    margin-top: 4rem;
    width: 100%;
}

.map-header {
    background-color: #ff5757; /* Fundo VERMELHO para destacar */
    color: white; /* Texto BRANCO */
    padding: 15px 30px;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.05);
}

.map-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white !important; /* Forçar cor branca */
}

.map-icon-pin {
    font-size: 1.5rem;
}

.map-frame {
    height: 450px;
    width: 100%;
    border: 2px solid #ff5757; /* Borda fina combinando */
    border-top: none;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsivo */
@media screen and (max-width: 768px) {
    
    /* Configuração inicial do Menu (Escondido na direita) */
    .nav-links {
        position: fixed;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: white; /* Fundo do menu */
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 60%; /* Ocupa 60% da tela */
        transform: translateX(100%); /* Joga ele para fora da tela */
        transition: transform 0.5s ease-in;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        z-index: 999;
        padding-top: 2rem;
    }

    .nav-links li {
        opacity: 0; /* Começa invisível para animar */
        margin: 1.5rem 0;
    }

    /* CLASSE MÁGICA: Traz o menu de volta pra tela */
    .nav-active {
        transform: translateX(0%);
    }

    /* Mostra o Burger */
    .burger {
        display: block;
        cursor: pointer;
    }
}

/* Animação dos links aparecendo */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animação do Burger virando X */
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
    opacity: 0;
}
.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* --- CSS DO MENU MOBILE (COLE NO FINAL DO STYLE.CSS) --- */

@media screen and (max-width: 900px) {
    /* Esconde a barra de navegação normal */
    body {
        overflow-x: hidden; /* Evita rolagem lateral */
    }

    /* O Menu em si (inicialmente escondido na direita) */
    .nav-links {
        position: fixed;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 65%;
        transform: translateX(100%); /* Joga ele pra fora da tela */
        transition: transform 0.5s ease-in;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        z-index: 999;
        padding-top: 5rem;
    }

    /* Estilo dos links no mobile */
    .nav-links li {
        opacity: 0;
        margin: 20px 0;
    }

    .nav-links li a {
        font-size: 1.2rem;
        color: #333;
    }

    /* CLASSE MÁGICA: Traz o menu de volta (ativada pelo JS) */
    .nav-active {
        transform: translateX(0%);
    }

    /* Mostra o ícone de 3 riscos */
    .burger {
        display: block;
        cursor: pointer;
    }
}

/* Animação dos itens aparecendo um por um */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animação do X quando clica */
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
    opacity: 0;
}
.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* --- ESTILO AVANÇADO DA SIDEBAR --- */

/* --- SIDEBAR: VERSÃO LIMPA E CENTRALIZADA --- */

/* Ajuste para garantir que o conteúdo fique no meio */
.sidebar {
    display: flex;
    flex-direction: column;
}

.sidebar-content-center {
    flex: 1; /* Ocupa todo o espaço sobrando */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centraliza verticalmente */
    align-items: center; /* Centraliza horizontalmente */
    text-align: center;
    padding-bottom: 3rem; /* Um pouco de espaço em baixo */
}

.invite-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* O CARTÃO DE E-MAIL (DESTAQUE) */
.email-highlight-card {
    background: #ff5757; /* Fundo Vermelho */
    color: white;
    width: 100%;
    padding: 2.5rem 1rem;
    border-radius: 15px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 25px rgba(255, 87, 87, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.email-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 87, 87, 0.4);
    background: #ff4444;
}

.big-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.email-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.email-value {
    font-size: 1.2rem;
    font-weight: bold;
    word-break: break-all; /* Garante que não quebre o layout no celular */
    margin-bottom: 1rem;
}

.click-hint {
    font-size: 0.75rem;
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
}

/* Contato Secundário (WhatsApp) */
.secondary-contact {
    margin-top: 3rem;
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
    width: 100%;
}

.secondary-contact p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.whatsapp-link {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.whatsapp-link:hover {
    color: #25D366;
}

/* --- CORREÇÃO DO CARDÁPIO VIRANDO (FLIP CARD) --- */

/* 1. Garante o efeito 3D */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d; /* OBRIGATÓRIO */
}

/* 2. Configuração das duas faces (Frente e Verso) */
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Para Safari/iPhone */
    backface-visibility: hidden; /* Regra de Ouro: Esconde o verso */
    top: 0;
    left: 0;
    border-radius: 15px; /* Garante bordas redondas */
}

/* 3. A Frente (o padrão) */
.flip-card-front {
    background-color: #fff;
    color: black;
    z-index: 2;
}

/* 4. O Verso (Ficha Técnica) */
.flip-card-back {
    background-color: #ff5757; /* Cor do fundo quando vira */
    color: white;
    /* O TRUQUE ESTÁ AQUI: */
    transform: rotateY(180deg); /* O verso já começa girado */
    
    /* Centralizar o texto do verso */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

/* 5. Ação de virar (Hover no PC, Toque no Celular) */
.flip-card:hover .flip-card-inner,
.flip-card:active .flip-card-inner,
.flip-card:focus .flip-card-inner {
    transform: rotateY(180deg);
}

/* --- CSS DO VÍDEO DE FUNDO (COLE NO FINAL DO ARQUIVO) --- */

/* 1. A caixa que segura tudo (Vídeo + Texto) */
.hero-video-container {
    width: 100%;
    height: 100vh; /* Ocupa 100% da altura da tela */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Corta o vídeo se ele for maior que a tela */
    margin-bottom: 0; /* Garante que não empurre o conteúdo de baixo */
}

/* 2. O Vídeo em si (Fica no fundo) */
/* --- AJUSTE DO VÍDEO (MOSTRAR MAIS O TOPO) --- */

/* --- AJUSTE DO VÍDEO (CENTRALIZADO) --- */

/* --- VÍDEO COM AJUSTE DE ZOOM (MÉTODO MODERNO) --- */
.back-video {
    position: absolute;
    top: 0;
    left: 0;
    
    /* Força o vídeo a respeitar o tamanho da caixa, sem estourar */
    width: 100%;
    height: 100%;
    
    /* A Mágica: Cobre a área sem dar zoom excessivo */
    object-fit: cover; 
    
    /* Centraliza o foco do vídeo */
    object-position: center;
    
    z-index: -2;

    pointer-events: none;
}

/* 3. Filtro Escuro (Para ler o texto) */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Escurece 50% */
    z-index: -1; /* Fica em cima do vídeo, mas atrás do texto */
}

/* 4. O Texto e Botão (Ficam na frente) */
.hero-content {
    text-align: center;
    color: #fff;
    z-index: 1; /* Garante que o botão seja clicável */
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-address {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* 5. Ajuste para Celular */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}

/* --- CABEÇALHO DA PÁGINA DE CONTATO --- */

/* A caixa principal do cabeçalho */
.contact-hero {
    position: relative;
    width: 100%;
    /* Altura do cabeçalho (50% da tela fica elegante para páginas internas) */
    height: 50vh; 
    
    /* A IMAGEM DE FUNDO (Aspas são obrigatórias por causa do espaço no nome) */
    background-image: url('imagens/cozinha industrial.jpg'); 
    
    background-size: cover;   /* Cobre a área toda */
    background-position: center; /* Centraliza a imagem */
    /* background-attachment: fixed; (Opcional: Efeito parallax, pode ficar pesado em celular) */
    
    /* Centralizar o texto dentro */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* O Filtro Escuro (Overlay) */
.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Escurece 60% */
    z-index: 1;
}

/* O Texto (para ficar acima do filtro) */
.contact-hero-content {
    position: relative;
    z-index: 2; /* Fica na frente do filtro */
    padding: 0 20px;
}

.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.contact-hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
}

/* Ajuste para celular */
@media (max-width: 768px) {
    .contact-hero {
        height: 40vh; /* Um pouco menor no celular */
    }
    .contact-hero-content h1 {
        font-size: 2rem;
    }
}

