* {
    margin: 0;
    padding: 0;
    font-family: 'Satoshi', sans-serif;
    box-sizing: border-box;
}

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

body {
    overflow-x: hidden;
}

:root {
    --vermelho: #c82333;
    --vermelho-escuro: #8b0000;
    --verde: #2e7d32;
    --preto: #000000;
    --cinza-2: #1a1a1a;
    --cinza-3: #333333; 
    --cinza-4: #555555; 
    --cinza-5: #888888; 
    --cinza-6: #cccccc; 
    --cinza-7: #e5e5e5; 
    --cinza-8: #f5f5f5; 
    --branco: #ffffff; 
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    padding-top: 0.5vh;
    padding-bottom: 0.5vh;
    background-color: #00000099;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
}

.a-logo {
    text-decoration: none;
}

.logo-header {
    padding-left: 4vw;
    width: 11vw;
}

.nav-links {
    display: flex;
    gap: 1.5vw;
}

.link-header {
    text-decoration: none;
    color: var(--cinza-8);
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    padding: 0.5vh 0.1vw;
    transition: all 0.2s ease;
}

.link-header:hover {
    color: var(--branco);
    border-bottom: 1px solid var(--branco);
}

.botao-header {
    background-color: var(--branco);
    text-decoration: none;
    color: var(--preto);
    padding: 1.5vh 2.5vw;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    margin-right: 4vw;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    white-space: nowrap;
}

.botao-header:hover {
    background-color: #ffffff30;
    color: var(--branco);
    border: 2px solid #ffffff50;
}

.menu-toggle-checkbox {
    display: none;
}

.menu-toggle-label {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 1.5vh 4vw 1.5vh 2vw;
    z-index: 10001;
}

.menu-toggle-label span {
    width: 26px;
    height: 2px;
    background-color: var(--branco);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-overlay {
    display: none;
}

.section-hero {
    display: flex;
    justify-content: space-between;
    background-image: url('../img/pratohero.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100vh;
    margin-top: 0;
}

.hero-direita {
    margin-left: 10vw;
    margin-top: 25vh;
}

.h1-hero {
    margin-top: 1vh;
    font-weight: 600;
    font-size: 7rem;
    max-width: 40vw;
    color: var(--branco);
    line-height: 12vh;
}

.p-hero {
    color: var(--cinza-8);
    max-width: 30vw;
    margin-top: 3vh;
    font-size: 18px;
}

.div-botoes-hero {
    margin-top: 5vh;
    display: flex;
    gap: 2vw;
}

.link1-hero {
    display: inline-block;
    background-color: var(--branco);
    text-decoration: none;
    color: var(--preto);
    padding: 1.5vh 3vw;
    border-radius: 100px;
    font-weight: 600;
    font-size: 17px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.link1-hero:hover {
    background-color: #ffffff30;
    color: var(--branco);
    border: 2px solid #ffffff50;
}

.link2-hero {
    display: inline-block;
    background-color: transparent;
    text-decoration: none;
    color: var(--branco);
    border: 1px solid #ffffff50;
    padding: 1.5vh 3vw;
    border-radius: 100px;
    font-weight: 500;
    font-size: 17px;   
    transition: all 0.4s ease;
}

.link2-hero:hover {
    background-color: #ffffff10;
    border: 1px solid #ffffff80;
}

.img-hero {
    margin-top: 15vh;
    margin-right: 2vw;
    width: 45vw;
}

.section-historia {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10vh;
}

.texto-historia {
    margin-left: 5vw;
    margin-top: 14vh;
}

.h4-historia {
    font-size: 13px;
    letter-spacing: 0.15vw;
    word-spacing: 0.25vw;
    color: var(--cinza-4);
}

.h1-historia {
    font-size: 6rem;
    line-height: 12vh;
}

.s-h1-historia {
    display: block;
    color: var(--vermelho-escuro);
}

.p-historia {
    max-width: 40vw;
    font-size: 20px;
    text-align: justify;
    line-height: 1.5;
    text-indent: 1vw;
    color: var(--cinza-4);
}

.p1-historia {
    margin-top: 6vh;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  margin-top: 7vh;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--vermelho-escuro);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #797672;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.div-imagem-historia {
    margin-top: 5vh;
    margin-right: 5vw;
}

.imagem-historia {
    width: 35vw;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.menu-section {
  background-color: var(--cinza-2); 
  color: #e0dcd7; 
  padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 6vw, 6rem);
  width: 100%;
  box-sizing: border-box;
}

.menu-header {
  display: flex;
  flex-wrap: wrap; 
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.header-title {
  flex: 1 1 320px; 
}

.subtitle {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--cinza-6);
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 600;
}

.header-title h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem); 
  line-height: 1.15;
  margin: 0;
  color: #ffffff;
}

.header-title .highlight {
  color: var(--vermelho); 
}

.header-description {
  flex: 1 1 300px;
  max-width: 450px;
  padding-top: clamp(0rem, 2vw, 2.5rem); 
}

.header-description p {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.6;
  color: var(--cinza-7);
  margin: 0;
}

.menu-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1); 
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.footer-info h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin: 0 0 0.4rem 0;
  color: #ffffff;
}

.footer-info p {
  font-size: 0.9rem;
  color: var(--cinza-6);
  margin: 0;
}

.btn-facebook {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background-color: var(--vermelho-escuro);
  color: #ffffff;
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.btn-facebook:hover {
  background-color: #7c0000;
}

.btn-facebook .arrow {
  font-size: 1.1rem;
}

.section-marmitaria {
    background-color: var(--cinza-8);
    padding-bottom: 10vh;
}

.h1-marmitaria {
    padding-top: 10vh;
    font-size: 4rem;
    text-align: center;
    line-height: 8vh;
    color: var(--cinza-2);
}

.s-h1-marmitaria {
    display: block;
    color: #445242;
}

.p-marmitaria {
    text-align: center;
    max-width: 30vw;
    margin: auto;
    margin-top: 1vh;
    margin-bottom: 5vh;
    color: var(--cinza-5);
}

.cards-section{
    width:100%;
    display:flex;
    justify-content:center;
    gap: 3vw;
    flex-wrap:wrap;
}

.food-card{
    width:360px;
    background:#171717;
    border-radius: 10px;
    overflow:hidden;
    transition:.35s;
    position:relative;
    margin-bottom: 2vh;
}

.food-image{
    height:235px;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    overflow:hidden;
}

.food-image img{
    width:84%;
    object-fit:contain;
    position:relative;
    z-index:2;
}

.food-content{
    padding:28px;
}

.food-subtitle{
    display:block;
    color:#c7c7c7;
    font-size: .92rem;
    margin-bottom:10px;
}

.h3-marmita {
    color:white;
    font-size:1.45rem;
    font-weight:600;
    margin: 1.5vh 1vw;
}

.food-content p{
    color:#8d8d8d;
    line-height:1.8;
    font-size:.93rem;
}

.section-localizacao-marmitaria {
    background-color: #445242;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

.container-localizacao-marmitaria {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.subtit-localizacao-marmitaria {
    color: #e8be74;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.tit-localizacao-marmitaria {
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 40px;
}

.span-italic-marmitaria {
    font-style: italic;
    color: #d95d39;
    font-weight: 400;
}

.info-item-marmitaria {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    padding: 8px 0;
}

.icon-marmitaria {
    width: 24px;
    height: 24px;
    color: #e8be74;
    flex-shrink: 0;
    margin-top: 2px;
}

.icon-marmitaria svg {
    width: 100%;
    height: 100%;
}

.text-group-marmitaria {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-title-marmitaria {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

.info-desc-marmitaria {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.divider-marmitaria {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 20px 0;
}

.btn-mapa-marmitaria {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    color: #2b332a;
    padding: 14px 28px;
    border-radius: 50px; 
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-mapa-marmitaria:hover {
    background-color: #f0f0f0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-mapa-marmitaria svg {
    width: 18px;
    height: 18px;
}

.footer-marmitaria {
    background-color: #1e1814; 
    border-top: 4px solid #4a5848; 
    color: #c4b5a5;
    padding-top: 60px;
}

.container-footer-marmitaria {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px 50px 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.col-footer-marmitaria {
    flex: 1;
    min-width: 260px;
}

.brand-footer-marmitaria {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.logo-footer {
    width: 8vw;
}

.desc-footer-marmitaria {
    font-size: 0.9rem;
    color: #a89a8c;
    line-height: 1.5;
    font-weight: 300;
    max-width: 260px;
}

.title-col-marmitaria {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 400;
    margin-bottom: 24px;
}

.contact-item-marmitaria {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: #a89a8c;
}

.contact-item-marmitaria svg {
    width: 18px;
    height: 18px;
    color: #a89a8c;
    flex-shrink: 0;
}

.contact-link-marmitaria {
    color: #a89a8c;
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.3s ease;
}

.contact-link-marmitaria:hover {
    color: #ffffff;
}

.social-links-marmitaria {
    display: flex;
    align-items: center;
    gap: 14px;
}

.social-circle-marmitaria {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-circle-marmitaria:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
}

.social-circle-marmitaria svg {
    width: 20px;
    height: 20px;
}

.copyright-bar-marmitaria {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 30px;
    text-align: center;
}

.copyright-bar-marmitaria p {
    font-size: 0.8rem;
    color: #7a6e63;
    font-weight: 300;
}

/* ==========================================================================
   RESPONSIVIDADE
   As regras acima (desktop) permanecem intactas. A partir daqui, ajustamos
   apenas o necessário para telas menores, preservando cores, proporções e
   personalidade visual do site original.
   ========================================================================== */

/* ---------- Telas grandes / laptops (<=1200px) ---------- */
@media (max-width: 1200px) {
  .h1-hero {
    font-size: 5.2rem;
    line-height: 9vh;
    max-width: 55vw;
  }

  .p-hero {
    max-width: 45vw;
  }

  .h1-historia {
    font-size: 4.6rem;
    line-height: 9vh;
  }

  .p-historia {
    max-width: 45vw;
  }

  .p-marmitaria {
    max-width: 45vw;
  }
}

/* ---------- Tablets (<=1024px) ---------- */
@media (max-width: 1024px) {
  .logo-header {
    width: 10vw;
    min-width: 90px;
  }

  .hero-direita {
    margin-left: 6vw;
    margin-top: 20vh;
  }

  .h1-hero {
    font-size: 4rem;
    line-height: 7vh;
    max-width: 60vw;
  }

  .p-hero {
    max-width: 50vw;
    font-size: 16px;
  }

  .img-hero {
    width: 40vw;
    margin-top: 20vh;
  }

  .section-historia {
    margin-bottom: 6vh;
  }

  .texto-historia {
    margin-left: 4vw;
    margin-top: 10vh;
  }

  .h1-historia {
    font-size: 3.6rem;
    line-height: 7vh;
  }

  .p-historia {
    max-width: 48vw;
    font-size: 17px;
  }

  .div-imagem-historia {
    margin-right: 4vw;
  }

  .imagem-historia {
    width: 38vw;
  }

  .h1-marmitaria {
    font-size: 3rem;
    line-height: 5.5vh;
  }

  .p-marmitaria {
    max-width: 55vw;
  }

  .tit-localizacao-marmitaria {
    font-size: 2.6rem;
  }
}

/* ---------- Tablets pequenos / celulares grandes (<=860px) ---------- */
@media (max-width: 860px) {
  /* Menu: alterna para o modelo mobile com botão hambúrguer,
     mantendo o mesmo visual (fundo escuro translúcido, logo, links) */
  .menu-toggle-label {
    display: flex;
  }

  .header-centro {
    position: fixed;
    top: 0;
    right: -100%;
    width: 72%;
    max-width: 320px;
    height: 100vh;
    background-color: #0a0a0af0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: right 0.35s ease;
    z-index: 10000;
  }

  .menu-toggle-checkbox:checked ~ .header-centro {
    right: 0;
  }

  .menu-toggle-checkbox:checked ~ .menu-toggle-label span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle-checkbox:checked ~ .menu-toggle-label span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle-checkbox:checked ~ .menu-toggle-label span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    flex-direction: column;
    gap: 4vh;
    text-align: center;
  }

  .link-header {
    font-size: 18px;
  }

  .header-direita {
    display: none;
  }

  .botao-header {
    padding: 1.2vh 4vw;
    font-size: 15px;
    margin-right: 3vw;
  }

  /* Hero: empilha o texto e a imagem do prato */
  .section-hero {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    min-height: 100vh;
    padding: 14vh 6vw 6vh;
    text-align: center;
  }

  .hero-direita {
    margin-left: 0;
    margin-top: 0;
  }

  .h1-hero {
    font-size: 3.2rem;
    line-height: 1.15;
    max-width: 100%;
  }

  .p-hero {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .div-botoes-hero {
    justify-content: center;
    flex-wrap: wrap;
  }

  .img-hero {
    width: 70vw;
    max-width: 340px;
    margin-top: 5vh;
    margin-right: 0;
  }

  /* História: empilha texto + imagem */
  .section-historia {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 6vh;
  }

  .texto-historia {
    margin-left: 0;
    margin-top: 8vh;
    padding: 0 6vw;
  }

  .h4-historia {
    letter-spacing: 0.1vw;
  }

  .h1-historia {
    font-size: 2.8rem;
    line-height: 1.2;
  }

  .p-historia {
    max-width: 100%;
    text-align: left;
    text-indent: 0;
  }

  .stats-container {
    flex-wrap: wrap;
    gap: 3vh;
  }

  .stat-item {
    flex: 1 1 30%;
  }

  .div-imagem-historia {
    margin-top: 4vh;
    margin-right: 0;
  }

  .imagem-historia {
    width: 80vw;
    max-width: 420px;
  }

  /* Marmitaria */
  .h1-marmitaria {
    font-size: 2.4rem;
    line-height: 1.25;
    padding: 8vh 6vw 0;
  }

  .p-marmitaria {
    max-width: 85vw;
  }

  .cards-section {
    gap: 1vw;
  }

  .food-card {
    width: 95%;
  }

  /* Localização */
  .section-localizacao-marmitaria {
    padding: 60px 6vw;
  }

  .tit-localizacao-marmitaria {
    font-size: 2.2rem;
  }

  /* Rodapé */
  .container-footer-marmitaria {
    justify-content: flex-start;
  }

  .logo-footer {
    width: 20vw;
    min-width: 100px;
  }
}

@media (max-width: 600px) {
  .header-direita {
    display: none;
  }

  .logo-header {
    padding-left: 5vw;
    width: 26vw;
    min-width: 80px;
  }

  .botao-header {
    padding: 1vh 4vw;
    font-size: 13px;
    margin-right: 4vw;
  }

  .h1-hero {
    font-size: 2.3rem;
  }

  .p-hero {
    font-size: 15px;
  }

  .link1-hero,
  .link2-hero {
    padding: 1.4vh 6vw;
    font-size: 15px;
  }

  .img-hero {
    width: 78vw;
  }

  .h1-historia {
    font-size: 2.1rem;
  }

  .p-historia {
    font-size: 15px;
  }

  .stats-container {
    justify-content: space-between;
  }

  .stat-item {
    flex: 1 1 45%;
    margin-bottom: 2vh;
  }

  .stat-number {
    font-size: 1.7rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .menu-section {
    padding: 2.5rem 6vw;
  }

  .menu-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-facebook {
    width: 100%;
    justify-content: center;
  }

  .h1-marmitaria {
    font-size: 1.9rem;
  }

  .p-marmitaria {
    font-size: 15px;
    max-width: 90vw;
  }

  .food-card {
    width: 95%;
    max-width: 100%;
  }

  .food-content {
    padding: 20px;
  }

  .tit-localizacao-marmitaria {
    font-size: 1.8rem;
  }

  .info-title-marmitaria {
    font-size: 1.05rem;
  }

  .btn-mapa-marmitaria {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .container-footer-marmitaria {
    flex-direction: column;
    gap: 30px;
    padding: 0 6vw 40px;
  }

  .col-footer-marmitaria {
    min-width: 100%;
  }

  .desc-footer-marmitaria {
    max-width: 100%;
  }

  .logo-footer {
    width: 32vw;
    min-width: 110px;
  }
}

@media (max-width: 380px) {
  .h1-hero {
    font-size: 1.9rem;
  }

  .h1-historia {
    font-size: 1.8rem;
  }

  .h1-marmitaria {
    font-size: 1.6rem;
  }

  .div-botoes-hero {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .link1-hero,
  .link2-hero {
    text-align: center;
  }

  .stat-item {
    flex: 1 1 100%;
  }
}