@charset "UTF-8";
body, html {
	background-color: #f7f3ee;
	padding: 0;
	margin: 0;		
}
body {
    overflow-x: hidden;
}

html {
    overflow-x: visible;
	scroll-behavior: smooth;
}

section {
    scroll-margin-top: 100px;
}

/*REMOVE O ASPECTO 3D DOS BOTÕES DO SITE*/
button {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    background: none;
    box-shadow: none;
    font-family: inherit;
}
/*ESCONDER CAPTCHA DO GOOGLE*/
.grecaptcha-badge {
		display: none !important;
}

/*=====================================
===========FONTES DO SITE==============
=====================================*/


/* Fonte padrão global */
body {
  font-family: 'Work sans', sans-serif;
	
}
h1 {
  font-family: 'Work sans', sans-serif;
	font-weight: 800;
}
h2 {
  font-family: 'Work sans', sans-serif;
}
h3 {
  font-family: 'Work sans', sans-serif;
}
p {
	font-family: 'Work sans', sans-serif;
}

/*=====================================
===========HEADER==============
=====================================*/

/* ==========================
   HEADER BASE
========================== */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: #fff;
}

/* ==========================
   CONTAINER
========================== */

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

/* ==========================
   LOGO
========================== */

.logo {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header.scrolled .logo {
    opacity: 1;
}

.logo img {
    max-width: 90px;
    height: auto;
}

/* ==========================
   MENU DESKTOP
========================== */

/* NAV (container) */
.nav {
    margin: 0;
    padding: 0;
}

/* UL gerado pelo wp_nav_menu */
.nav .menu {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

/* LI */
.nav .menu li {
    list-style: none;
}

/* LINKS */
.nav .menu li a {
    text-decoration: none;
    color: #fff;
	font-size: .8em;
    font-weight: 500;
    transition: 0.3s;
}

.header.scrolled .nav .menu li a {
    color: #404040;
}

.nav .menu li a:hover {
    opacity: 0.7;
}

/* ==========================
   HAMBURGER
========================== */

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: 0.3s;
}

.header.scrolled .menu-toggle span {
    background: #404040;
}

/* ==========================
   MOBILE MENU
========================== */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background: #fff;
    transition: right 0.3s ease;
    padding: 60px 20px;
    z-index: 998;
}

/* estado ativo via JS */
.mobile-menu.active {
    right: 0;
}

/* 🔧 CORRIGIDO: nome alinhado com PHP */
.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    margin-bottom: 20px;
    list-style: none;
}

.mobile-menu-list li a {
    text-decoration: none;
    color: #404040;
    font-size: 18px;
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {

    .nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}
/*=====================================
===========FOOTER==============
=====================================*/


.footer {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
}

.footer-logo img {
    max-width: 160px;
    margin-bottom: 20px;
}

.footer-social {
    margin-bottom: 20px;
}

.footer-social a {
	list-style: none !important;
    margin: 0 10px;
    font-size: 20px;
    transition: 0.3s;
	color: #9e0f55;
	text-decoration: none;
}
.footer-social li {
	list-style: none;
}

.footer-social a:hover {
    opacity: 0.7;
}

.footer-cnpj,
.footer-copy,
.footer-privacy {
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.footer-privacy a {
    color: #9e0f55;
    text-decoration: underline;
}

/*=====================================
===========FRONT-PAGE==============
=====================================*/

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* IMAGEM DE FUNDO REAL */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* OVERLAY (melhora contraste do texto) */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

/* CONTEÚDO ACIMA */
.hero-content {
    position: relative;
    z-index: 2;
	padding: 20px 50px;
	justify-content: center;
}
.hero-logo{
	display: flex;
	justify-content: center;
}

.hero-logo img {
	width: 100px;
	height: auto;
	margin: 0 auto;
	

}

.hero-text h1 {
	color: white;
	font-weight: 800;
	font-size: 36px;
	justify-content: center;
}

.hero-text p {
	color: white;
	font-size: 19px;
	line-height: 1.6;
	max-width: 450px;
	text-align: center;
}

.hero-text h2 {
	color: #b2c248;
	font-weight: 600;
	font-size: 22px;
	margin: 40px 0px;
	text-align: center;
}

.hero-btn {
	background-color: #9e0f55;
	color: white;
	border-radius: 40px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	padding: 14px 26px;
	transition: all .4s;
	display: flex;
	justify-content: center;
	max-width: 160px;
	margin: 0 auto;
}

.hero-btn:hover {
	background-color: #b2c248;
	color: #9e0f55;
	
}

@media (max-width: 768px) {
	.hero {
	min-height: 80vh;
	padding: 1% 1% 45% 1%;

}

.hero-text h1 {
	font-size: 30px;
	text-align: center;
}

.hero-text p {
	text-align: center;
}

.hero-text h2 {
	text-align: center;
	font-size: 18px;
}

.hero-btn {
	display: flex;
	justify-content: center;
}

	
	}

/*=====================================
=========COMIDA NÃO É BAGUNÇA==========
=====================================*/
.sec-comida {
    padding: 20px 20px;
    text-align: center;
}

.comida-title {
    font-size: 90px;
    line-height: 1.2;
    font-weight: 700;
}

@media (max-width: 768px) {
	.comida-title {
		font-size: 54px;
	}}

.linha1 {
    color: #404040;
}

.linha2 {
    display: inline-block;
}

.linha3 {
    color: #404040;
}

/* ==========================
   NÃO + GRADIENTE
========================== */

.nao-wrapper {
    position: relative;

    overflow: hidden;
}

.nao-text {
    position: relative;
    color: #f7f3ee;
    z-index: 2;
}

/* FAIXA VERDE */
.nao-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
	left: -120%;
    width: 340%;

    
background: linear-gradient(90deg, rgba(247, 243, 238, 1) 12%, rgba(158, 15, 85, 1) 50%, rgba(247, 243, 238, 1) 85%);

    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.1s linear;
}

/* ==========================
   TEXTO
========================== */

.comida-texto {
    max-width: 700px;
    margin: 40px auto 0;
    font-size: 18px;
    color: #404040;
    line-height: 1.6;
}
@media (max-width: 768px) {
	.comida-texto {
		max-width: 600px;
    margin: 40px auto 0;
    font-size: 14px;
	}}
		

/*=====================================
===========SECTION PROBLEMAS==============
=====================================*/

.sec-problemas {
    padding: 5px 20px;
}

/* ==========================
   GRID
========================== */

.problemas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ==========================
   CARD
========================== */

.problema-card {
    border: 10px solid #b2c248;
    border-radius: 20px;
    padding: 30px;
    background: transparent;
    transition: 0.3s ease;
}

/* HOVER (opcional, mas recomendado) */
.problema-card:hover {
    transform: translateY(-5px);
}

/* ==========================
   TEXTO
========================== */

.problema-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #404040;
}

.problema-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #404040;
}
/* ==========================
   RESPONSIVO
========================== */


@media (max-width: 768px) {
    .problemas-grid {
        grid-template-columns: 1fr;
		margin: 0 auto;
    }
}



/* ==========================
   SECTION
========================== */

.sec-lcinc {
    padding: 20px 20px 5px;
    text-align: center;
}

/* ==========================
   TÍTULO
========================== */

.lcinc-title {
    font-size: 42px;
    font-weight: 800;
    color: #404040;
}

.lcinc-title span {
    color: #9e0f55;
}

/* ==========================
   TEXTO
========================== */

.lcinc-texto {
    margin-top: 20px;
    font-size: 18px;
    color: #404040;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .lcinc-title {
        font-size: 32px;
    }

    .lcinc-texto {
        font-size: 16px;
    }
}

/* ==========================
   SECTION
========================== */

.sec-servicos {
    padding: 10px 40px 40px;
}

/* ==========================
   GRID
========================== */

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* ==========================
   CARD
========================== */

.servico-card {
    position: relative;
    border: 12px solid #b2c248;
    border-radius: 40px;
    padding: 30px 30px 30px;
    background: #f7f3ee;
}

/* ==========================
   LABEL (LC•INC)
========================== */

.card-label {
    position: absolute;
    top: -18px;
    left: 30px;

    background: #f7f3ee;
    padding: 0 10px;

    font-weight: 700;
    font-size: 18px;
    color: #404040;
}

/* ==========================
   TEXTO
========================== */

.servico-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #404040;
}

.servico-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #404040;
}
@media (max-width: 768px) {
    .servicos-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================
   SECTION APRENDA
========================== */

.sec-aprenda {
    padding: 20px 20px 5px;
    text-align: center;
}

/* ==========================
   TÍTULO
========================== */

.sec-aprenda-title {
    font-size: 42px;
    font-weight: 800;
    color: #404040;
}

.sec-aprenda-title span {
    color: #9e0f55;
}

/* ==========================
   TEXTO
========================== */

.sec-aprenda-texto {
    margin-top: 20px;
    font-size: 18px;
    color: #404040;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .sec-aprenda-title {
        font-size: 32px;
    }

    .sec-aprenda-texto {
        font-size: 16px;
    }
}


/* ==========================
   GRID
========================== */

.sec-posts {
	padding: 20px 40px 20px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* ==========================
   CARD
========================== */

.post-card {
    display: flex;
    flex-direction: column;
}

/* ==========================
   THUMB
========================== */

.post-thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
	aspect-ratio: 16/9;
}

/* ==========================
   TITLE
========================== */

.post-title {
    margin: 20px 0 10px;
    font-size: 22px;
}

.post-title a {
    text-decoration: none;
    color: #404040;
}

/* ==========================
   EXCERPT
========================== */

.post-excerpt {
    font-size: 14px;
    color: #404040;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* ==========================
   BOTÃO
========================== */

.post-card .btn {
    align-self: flex-start;
	background-color: #9e0f55;
	border-radius: 20px;
	color: #f7f3ee;
	font-weight: 600;
	padding: 6px 20px;
	text-decoration: none;
	font-size: 12px;
}
@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contato-title {
        font-size: 30px;
    }

    .contato-subtitle {
        font-size: 16px;
    }
}

/* ==========================
   SECTION CONTATO
========================== */

.sec-contato {
    background: #9e0f55;
    padding: 80px 60px;
    text-align: center;
}

/* ==========================
   TÍTULO
========================== */

.contato-title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
}

/* ==========================
   SUBTÍTULO
========================== */

.contato-subtitle {
    margin-top: 15px;
    font-size: 18px;
    color: #f7f3ee;
}

/* ==========================
   FORM
========================== */

.contato-form {
    margin: 40px auto 20px;
	max-width: 450px;
}
@media (max-width: 768px) {
    .contato-title {
        font-size: 30px;
    }

    .contato-subtitle {
        font-size: 16px;
    }
}

/*body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100vh;
    background: red;
    z-index: 9999;
    pointer-events: none;
}*/
/* ==========================
   PAGE
========================== */
.page-content {
    padding: 100px 20px;
}

.page-title {
    font-size: 36px;
    margin-bottom: 30px;
    color: #404040;
    text-align: center;
}

.page-body {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: #404040;
}
.page-header-minimal {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.btn-voltar {
    text-decoration: none;
    color: #404040;
    font-weight: 500;
}

.btn-voltar:hover {
    opacity: 0.7;
}




.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #404040;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 9999;
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
}

.cookie-banner button {
    background: #9e0f55;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
}

