/* ===== BOTÕES ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--vermelho);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  transition: background 0.2s, transform 0.2s;
}
.btn:hover { background: var(--vermelho-escuro); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--verde);
  border: 2px solid var(--verde);
  padding: 12px 32px;
}
.btn-outline:hover { background: var(--verde); color: #fff; }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== SECTIONS ===== */
section { padding: 80px 24px; }
.container { max-width: 1100px; margin: 0 auto; }

/* ===== PRODUTOS (index) ===== */
.produtos-section-full { background: #f7f5f1; padding: 80px 60px; overflow: hidden; }
.produtos-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 60px; }
.produtos-text { flex: 1; }
.produtos-text .label {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 700; letter-spacing: 5px;
  text-transform: uppercase; color: var(--vermelho); margin-bottom: 16px;
}
.produtos-text .label::before { content: ''; display: block; width: 28px; height: 2px; background: var(--vermelho); flex-shrink: 0; }
.produtos-headline { display: block; font-family: 'AnaheimGothic', sans-serif; font-size: clamp(28px, 3.5vw, 52px); font-weight: normal; line-height: 1.05; letter-spacing: 1px; color: var(--preto); margin-bottom: 20px; }
.produtos-sub { display: block; font-size: 16px; line-height: 1.7; color: var(--cinza); margin-bottom: 32px; border-left: 2px solid var(--vermelho); padding-left: 14px; }
.produtos-img-wrap { flex: 1; display: flex; align-items: center; justify-content: center; }
.produtos-img { max-width: 100%; max-height: 480px; filter: drop-shadow(0 24px 48px rgba(0,0,0,0.12)); }

/* ===== RECEITAS (index) ===== */
.receitas-section {
  background-image: url('images/fundo-receitas.jpg');
  background-size: cover; background-position: center; background-attachment: fixed;
  color: #fff; position: relative; padding: 80px 60px;
}
.receitas-section::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.62); }
.receitas-section .container { position: relative; z-index: 1; }
.receitas-header { text-align: center; margin-bottom: 56px; }
.receitas-label { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: var(--vermelho); margin-bottom: 12px; }
.receitas-label::before { content: ''; display: block; width: 28px; height: 2px; background: var(--vermelho); flex-shrink: 0; }
.receitas-label--center::after { content: ''; display: block; width: 28px; height: 2px; background: var(--vermelho); flex-shrink: 0; }
.receitas-headline { display: block; font-family: 'AnaheimGothic', sans-serif; font-size: clamp(32px, 4vw, 56px); font-weight: normal; line-height: 1.05; letter-spacing: 1px; color: #fff; }
.robochef-inner { display: flex; align-items: center; gap: 56px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 48px 56px; }
.robochef-img-wrap { flex-shrink: 0; }
.robochef-img { max-width: 200px; filter: drop-shadow(0 16px 40px rgba(0,0,0,0.5)); }
.robochef-text { flex: 1; }
.robochef-sub { display: block; font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.8); margin-bottom: 28px; border-left: 2px solid var(--vermelho); padding-left: 14px; }
.videos-header { text-align: center; margin: 56px 0 24px; }
.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 960px; margin: 0 auto 40px; }
.video-card { border-radius: 12px; overflow: hidden; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); transition: transform 0.25s, box-shadow 0.25s; display: block; }
.video-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.4); }
.video-thumb { position: relative; padding-bottom: 56.25%; overflow: hidden; }
.video-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s; }
.video-card:hover .video-thumb img { transform: scale(1.07); }
.video-thumb::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.3); z-index: 1; opacity: 0; transition: opacity 0.25s; }
.video-thumb::after { content: '▶'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0.85); width: 52px; height: 52px; background: var(--vermelho); color: #fff; border-radius: 50%; font-size: 16px; line-height: 52px; text-align: center; padding-left: 4px; z-index: 2; opacity: 0; transition: opacity 0.25s, transform 0.25s; box-shadow: 0 4px 16px rgba(228,0,43,0.5); }
.video-card:hover .video-thumb::before { opacity: 1; }
.video-card:hover .video-thumb::after { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.video-card-title { padding: 14px 16px 16px; font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.88); line-height: 1.45; letter-spacing: 0.2px; }
.videos-canal { text-align: center; margin-top: 8px; }

/* ===== QUEM SOMOS (index) ===== */
.quem-somos-section { background: #fff; }
.quem-somos-inner { display: flex; align-items: center; gap: 64px; }
.quem-somos-text { flex: 1; }
.qs-label { display: flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: var(--vermelho); margin-bottom: 16px; }
.qs-label::before { content: ''; display: block; width: 28px; height: 2px; background: var(--vermelho); flex-shrink: 0; }
.qs-headline { display: block; font-family: 'AnaheimGothic', sans-serif; font-size: clamp(32px, 3.5vw, 52px); font-weight: normal; line-height: 1.05; letter-spacing: 1px; color: var(--preto); margin-bottom: 20px; }
.qs-sub { display: block; font-size: 17px; line-height: 1.75; color: var(--cinza); margin-bottom: 28px; border-left: 2px solid var(--vermelho); padding-left: 14px; }
.qs-values { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.qs-values li { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; color: var(--preto); }
.qs-values li::before { content: ''; display: block; width: 20px; height: 2px; background: var(--verde); flex-shrink: 0; }
.quem-somos-video { flex: 1.3; }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.15); }
.video-wrapper iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ===== CONTATO (index) ===== */
.contato-section { background-image: url('images/Background-Image.jpg'); background-size: cover; background-position: center; color: #fff; position: relative; padding: 80px 60px; }
.contato-section::before { content: ''; position: absolute; inset: 0; background: rgba(255,164,0,0.78); }
.contato-section .container { position: relative; z-index: 1; }
.contato-inner { display: flex; align-items: center; gap: 0; }
.contato-text { flex: 1; padding-right: 64px; border-right: 1px solid rgba(255,255,255,0.2); }
.contato-label { display: flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.contato-label::before { content: ''; display: block; width: 28px; height: 2px; background: rgba(255,255,255,0.6); flex-shrink: 0; }
.contato-headline { display: block; font-family: 'AnaheimGothic', sans-serif; font-size: clamp(32px, 3.5vw, 52px); font-weight: normal; line-height: 1.05; letter-spacing: 1px; color: #fff; margin-bottom: 20px; }
.contato-desc { display: block; font-size: 17px; line-height: 1.75; color: rgba(255,255,255,0.82); border-left: 2px solid rgba(255,255,255,0.4); padding-left: 14px; }
.contato-cta { flex: 1; padding-left: 64px; display: flex; flex-direction: column; align-items: center; text-align: center; }
.phone { display: inline-block; font-size: clamp(32px, 4vw, 52px); font-weight: 800; color: #fff; letter-spacing: 1px; line-height: 1.1; transition: transform 0.2s; }
.phone:hover { transform: scale(1.04); }
.contato-ou { font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin: 20px 0; }
.whatsapp-contato { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; background: #25D366; color: #fff; border-radius: 50px; font-size: 15px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; transition: background 0.2s, transform 0.2s; box-shadow: 0 4px 20px rgba(0,0,0,0.25); }
.whatsapp-contato svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }
.whatsapp-contato:hover { background: #1ebe5d; transform: translateY(-2px); }

/* ===== INSTAGRAM (index) ===== */
.instagram-section { background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%); padding: 64px 24px; }
.instagram-inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.instagram-icon svg { width: 80px; height: 80px; fill: #fff; flex-shrink: 0; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2)); }
.instagram-text { flex: 1; min-width: 200px; color: #fff; }
.instagram-handle { font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; opacity: 0.85; margin-bottom: 6px; }
.instagram-text h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; margin-bottom: 8px; line-height: 1.1; }
.instagram-desc { font-size: 16px; opacity: 0.9; }
.btn-instagram { display: inline-block; padding: 14px 32px; background: #fff; color: #833ab4; border-radius: 50px; font-weight: 800; font-size: 14px; letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 16px rgba(0,0,0,0.15); flex-shrink: 0; }
.btn-instagram:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ===== BREADCRUMB (produtos) ===== */
.breadcrumb { background: #f7f5f1; border-bottom: 1px solid #eee; }
.breadcrumb ol { max-width: 1200px; margin: 0 auto; padding: 10px 32px; display: flex; gap: 6px; list-style: none; font-size: 12px; align-items: center; }
.breadcrumb li { color: var(--cinza); }
.breadcrumb li + li::before { content: '/'; margin-right: 6px; color: #bbb; }
.breadcrumb a { color: var(--cinza); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--vermelho); }
.breadcrumb li[aria-current="page"] { color: var(--vermelho); font-weight: 600; }

/* ===== CATEGORY NAV (produtos) ===== */
.category-nav { position: sticky; top: 129px; background: #fff; border-bottom: 1px solid #eee; z-index: 100; padding: 12px 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.category-nav::-webkit-scrollbar { display: none; }
.category-nav-inner { display: flex; gap: 8px; padding: 0 32px; max-width: 1200px; margin: 0 auto; white-space: nowrap; }
.category-nav a { padding: 7px 16px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--cinza); border-radius: 50px; border: 1px solid #e0e0e0; transition: all 0.2s; flex-shrink: 0; }
.category-nav a:hover { background: var(--verde); color: #fff; border-color: var(--verde); }

/* ===== CATEGORIES (produtos) ===== */
.category { padding: 64px 32px; }
.category:nth-child(even) { background: var(--bg-alt); }
.category-inner { max-width: 1200px; margin: 0 auto; }
.category-header { margin-bottom: 40px; }
.cat-label { display: flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: var(--vermelho); margin-bottom: 10px; }
.cat-label::before { content: ''; display: block; width: 28px; height: 2px; background: var(--vermelho); flex-shrink: 0; }
.category-header h2 { font-family: 'AnaheimGothic', sans-serif; font-size: clamp(26px, 3vw, 40px); font-weight: normal; letter-spacing: 1px; color: var(--preto); line-height: 1.05; }
.subline { font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--cinza); margin: 32px 0 20px; display: flex; align-items: center; gap: 12px; }
.subline::before { content: ''; display: block; width: 20px; height: 1px; background: #ccc; }
.cat-desc { font-size: 14px; line-height: 1.65; color: var(--cinza); margin-top: 12px; max-width: 600px; }

/* ===== PRODUCT GRID (produtos) ===== */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.product-card { background: #fff; border-radius: 12px; padding: 24px 16px 20px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.06); border: 1px solid rgba(0,0,0,0.04); transition: transform 0.25s, box-shadow 0.25s; display: flex; flex-direction: column; align-items: center; }
.category:nth-child(even) .product-card { background: #fff; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(228,0,43,0.12); }
.product-card-image { width: 100%; height: 180px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.product-card-image img { max-height: 100%; max-width: 100%; object-fit: contain; transition: transform 0.3s; }
.product-card:hover .product-card-image img { transform: scale(1.05); }
.product-card-name { font-size: 13px; font-weight: 600; line-height: 1.4; color: var(--preto); flex: 1; margin-bottom: 10px; }
.product-card-code { display: inline-block; font-size: 10px; font-weight: 700; color: #8a5a00; background: rgba(255,163,0,0.12); padding: 3px 10px; border-radius: 50px; letter-spacing: 1px; text-transform: uppercase; }

/* ===== CTA (produtos) ===== */
.cta-section { background-image: url('images/fundo-receitas.jpg'); background-size: cover; background-position: center; color: #fff; padding: 80px 32px; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: rgba(33,87,57,0.92); }
.cta-section > * { position: relative; z-index: 1; }
.cta-label { display: inline-flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.cta-label::before, .cta-label::after { content: ''; display: block; width: 28px; height: 2px; background: rgba(255,255,255,0.5); flex-shrink: 0; }
.cta-section h2 { font-family: 'AnaheimGothic', sans-serif; font-size: clamp(28px, 3.5vw, 48px); font-weight: normal; line-height: 1.05; color: #fff; margin-bottom: 28px; letter-spacing: 1px; }
.btn-cta { display: inline-flex; align-items: center; gap: 10px; padding: 15px 36px; background: #fff; color: var(--vermelho); border-radius: 50px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 13px; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

/* ===== FOOTER (shared) ===== */
footer { background: var(--preto); color: rgba(255,255,255,0.6); padding: 64px 60px 32px; border-top: 3px solid var(--vermelho); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 56px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 28px; }
.footer-seal { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.seal-svg { height: 110px; width: auto; flex-shrink: 0; }
.footer-tagline { font-family: 'AnaheimGothic', sans-serif; font-size: clamp(18px, 1.8vw, 28px); color: rgba(255,255,255,0.75); line-height: 1.05; max-width: 320px; text-align: left; letter-spacing: 1px; }
.footer-col h4 { font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,0.32); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.58); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-phone { display: block; font-size: 20px; font-weight: 700; color: #fff; letter-spacing: 0.5px; margin-bottom: 10px; transition: color 0.2s; }
.footer-phone:hover { color: rgba(255,255,255,0.75); }
.footer-whatsapp { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: #25D366; letter-spacing: 0.3px; margin-bottom: 24px; transition: opacity 0.2s; }
.footer-whatsapp svg { width: 15px; height: 15px; fill: #25D366; }
.footer-whatsapp:hover { opacity: 0.75; }
.footer-address { font-style: normal; font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.footer-social a svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.5); transition: fill 0.2s; }
.footer-social a:hover { background: var(--vermelho); }
.footer-social a:hover svg { fill: #fff; }
.footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.22); }

/* ===== BACK TO TOP (shared) ===== */
.back-to-top { position: fixed; bottom: 28px; right: 28px; width: 52px; height: 52px; background: var(--vermelho); color: #fff; border-radius: 50%; display: none; align-items: center; justify-content: center; z-index: 999; box-shadow: 0 6px 20px rgba(228,0,43,0.4); transition: background 0.2s, transform 0.2s, box-shadow 0.2s; }
.back-to-top svg { display: block; }
.back-to-top:hover { background: var(--vermelho-escuro); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(228,0,43,0.5); }
.back-to-top.visible { display: flex; }

/* ===== WHATSAPP FLOAT (index) ===== */
.whatsapp-float { position: fixed; bottom: 24px; left: 24px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 999; box-shadow: 0 4px 16px rgba(0,0,0,0.25); transition: background 0.2s, transform 0.2s; }
.whatsapp-float:hover { background: #1ebe5d; transform: scale(1.1); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .produtos-section-full { padding: 60px 40px; }
  .produtos-inner { gap: 40px; }
  .produtos-img { max-height: 380px; }
  .receitas-section { padding: 60px 40px; }
  .robochef-inner { padding: 36px 40px; gap: 40px; }
  .robochef-img { max-width: 160px; }
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .quem-somos-inner { gap: 40px; }
  .contato-section { padding: 60px 40px; }
  .contato-text { padding-right: 40px; }
  .contato-cta { padding-left: 40px; }
  footer { padding: 48px 40px 28px; }
  .footer-inner { gap: 36px; }
  .page-hero { padding: 60px 40px 52px; }
  .category { padding: 52px 24px; }
  .cta-section { padding: 64px 24px; }
}

@media (max-width: 768px) {
  section { padding: 60px 20px; }
  .produtos-section-full { padding: 48px 24px; }
  .produtos-inner { flex-direction: column-reverse; gap: 32px; }
  .produtos-text { text-align: center; }
  .produtos-text .label { justify-content: center; }
  .produtos-text .label::before { display: none; }
  .produtos-sub { border-left: none; padding-left: 0; }
  .btn-group { justify-content: center; }
  .produtos-img { max-height: 300px; }
  .receitas-section { padding: 48px 24px; background-attachment: scroll; }
  .receitas-header { margin-bottom: 36px; }
  .robochef-inner { flex-direction: column; text-align: center; padding: 28px 24px; gap: 24px; }
  .robochef-text .receitas-label { justify-content: center; }
  .robochef-text .receitas-label::before { display: none; }
  .robochef-sub { border-left: none; padding-left: 0; }
  .robochef-img { max-width: 160px; }
  .videos-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .quem-somos-inner { flex-direction: column; gap: 36px; }
  .quem-somos-text { text-align: center; }
  .qs-label { justify-content: center; }
  .qs-label::before { display: none; }
  .qs-sub { border-left: none; padding-left: 0; }
  .qs-values li { justify-content: center; }
  .qs-values li::before { display: none; }
  .contato-section { padding: 48px 24px; }
  .contato-inner { flex-direction: column; gap: 40px; }
  .contato-text { padding-right: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 36px; text-align: center; }
  .contato-label { justify-content: center; }
  .contato-label::before { display: none; }
  .contato-desc { border-left: none; padding-left: 0; }
  .contato-cta { padding-left: 0; }
  footer { padding: 48px 24px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .page-hero { margin-top: 113px; padding: 40px 24px 36px; }
  .page-hero p { max-width: 100%; }
  .category-nav { top: 113px; }
  .category-nav-inner { padding: 0 16px; }
  .category { padding: 40px 16px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card { padding: 16px 10px 14px; }
  .product-card-image { height: 130px; margin-bottom: 12px; }
  .product-card-name { font-size: 12px; }
  .cta-section { padding: 56px 20px; }
}

@media (max-width: 480px) {
  .produtos-headline { font-size: 28px; }
  .produtos-img { max-height: 240px; }
  .receitas-headline { font-size: 30px; }
  .robochef-img { max-width: 130px; }
  .videos-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .page-hero h1 { font-size: 30px; }
  .products-grid { gap: 10px; }
  .product-card-image { height: 110px; }
}
