/* ==============================
ESTILOS GERAIS
============================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    }
  
  html {
  scroll-behavior: smooth;
  }
  
  body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background-color: #fff8f2;
  color: #3d2418;
  }
  
  img {
  max-width: 100%;
  display: block;
  }
  
  a {
  color: inherit;
  }
  
  main {
  min-height: 70vh;
  }
  
  section {
  padding: 60px 20px;
  }
  
  h1,
  h2,
  h3 {
  color: #4b2818;
  }
  
  p {
  margin-bottom: 15px;
  }
  
  /* ==============================
  CABEÇALHO
  ============================== */
  
  .site-header {
  background-color: #4b2818;
  color: white;
  padding: 15px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  }
  
  .logo {
  display: block;
  width: 180px;
  }
  
  .logo img {
  width: 180px;
  height: 70px;
  object-fit: contain;
  }
  
  .menu-button {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  }
  
  .site-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  }
  
  .site-nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 4px;
  }
  
  .site-nav a:hover,
  .site-nav a.active {
  text-decoration: underline;
  }
  
  /* ==============================
  CAPA
  ============================== */
  
  .hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px;
  }
  
  .hero-content {
  max-width: 600px;
  }
  
  .eyebrow {
  color: #8a5235;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  }
  
  .hero h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 20px;
  }
  
  .hero-content > p:not(.eyebrow) {
  font-size: 1.1rem;
  color: #5c4639;
  }
  
  .hero-actions,
  .cta-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
  }
  
  .button {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.2s ease;
  }
  
  .button-primary {
  background-color: #4b2818;
  color: white;
  }
  
  .button-primary:hover {
  background-color: #6b3b25;
  }
  
  .button-secondary {
  background-color: #f1dfd2;
  color: #4b2818;
  }
  
  .button-secondary:hover {
  background-color: #ead0bf;
  }
  
  .button-light {
  background-color: white;
  color: #4b2818;
  }
  
  .button-light:hover {
  background-color: #f1dfd2;
  }
  
  .button-outline-light {
  border: 2px solid white;
  color: white;
  background-color: transparent;
  }
  
  .button-outline-light:hover {
  background-color: white;
  color: #4b2818;
  }
  
  /* ==============================
  IMAGEM DA CAPA
  ============================== */
  
  .hero-card {
  overflow: hidden;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(75, 40, 24, 0.18);
  }
  
  .hero-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  }
  
  .hero-card-content {
  padding: 20px;
  text-align: center;
  }
  
  .hero-card-content p {
  margin-bottom: 5px;
  color: #6b3b25;
  }
  
  .hero-card-content strong {
  color: #4b2818;
  font-size: 1.1rem;
  }
  
  /* ==============================
  SEÇÕES
  ============================== */
  
  .section,
  .partners-section {
  max-width: 1200px;
  margin: 0 auto;
  }
  
  .section-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 35px;
  }
  
  .section-heading h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  }
  
  /* ==============================
  NOSSA HISTÓRIA
  ============================== */
  
  .story-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
  }
  
  .story-text p {
  color: #5c4639;
  }
  
  .story-highlight {
  background-color: #f1dfd2;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  }
  
  .story-year {
  display: block;
  font-size: 3rem;
  font-weight: bold;
  color: #4b2818;
  margin-bottom: 10px;
  }
  
  /* ==============================
  PRODUTOS / TAMANHOS
  ============================== */
  
  .size-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  }
  
  .size-card {
  position: relative;
  background-color: white;
  border: 1px solid #ead8ca;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(75, 40, 24, 0.1);
  }
  
  .featured-size {
  border: 2px solid #8a5235;
  }
  
  .size-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #4b2818;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
  }
  
  .size-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  }
  
  .size-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  }
  
  .size-description {
  color: #5c4639;
  }
  
  .size-card ul {
  list-style: none;
  background-color: #fff5ed;
  border-radius: 8px;
  padding: 15px;
  margin-top: 15px;
  }
  
  .size-card li {
  margin-bottom: 6px;
  }
  
  .size-card li:last-child {
  margin-bottom: 0;
  }
  
  /* ==============================
  DELIVERY
  ============================== */
  
  .delivery-section {
  background-color: #4b2818;
  color: white;
  text-align: center;
  }
  
  .delivery-content {
  max-width: 1000px;
  margin: 0 auto;
  }
  
  .delivery-section h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 15px;
  }
  
  .delivery-section .eyebrow {
  color: #e8c5af;
  }
  
  .delivery-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
  }
  
  .delivery-details div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  }
  
  .delivery-details span:first-child {
  font-size: 2rem;
  }
  
  .delivery-details strong {
  color: white;
  }
  
  /* ==============================
  PARCEIROS
  ============================== */
  
  .partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  }
  
  .partner-card {
  background-color: white;
  border: 1px solid #ead8ca;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(75, 40, 24, 0.08);
  }
  
  .partner-card span {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 10px;
  }
  
  .partners-note {
  text-align: center;
  margin-top: 25px;
  color: #6b3b25;
  }
  
  /* ==============================
  BROWNIETTONE
  ============================== */
  
  .seasonal-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 300px;
  align-items: center;
  gap: 40px;
  background-color: #f1dfd2;
  border-radius: 20px;
  }
  
  .seasonal-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  }
  
  .seasonal-price {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #4b2818;
  }
  
  .seasonal-image {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
  }
  
  .seasonal-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  }
  
  /* ==============================
  CHAMADA FINAL
  ============================== */
  
  .cta-section {
  background-color: #6b3b25;
  color: white;
  padding: 50px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  }
  
  .cta-section h2 {
  color: white;
  font-size: 2rem;
  }
  
  .cta-section .eyebrow {
  color: #f1dfd2;
  }
  
  .cta-actions {
  margin-top: 0;
  }
  
  /* ==============================
  PÁGINAS INTERNAS
  ============================== */
  
  .page-hero {
  background-color: #f1dfd2;
  text-align: center;
  padding: 60px 20px;
  }
  
  .page-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  }
  
  .page-hero p:last-child {
  color: #5c4639;
  font-size: 1.1rem;
  }
  
  /* ==============================
  INFORMAÇÕES DOS TAMANHOS
  ============================== */
  
  .size-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto 30px;
  }
  
  .size-info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background-color: white;
  border: 1px solid #ead8ca;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(75, 40, 24, 0.08);
  }
  
  .size-info-card > span {
  font-size: 2.5rem;
  }
  
  .size-info-card h3 {
  margin-bottom: 5px;
  }
  
  .size-info-card p {
  margin-bottom: 0;
  color: #5c4639;
  }
  
  /* ==============================
  CARDS DOS SABORES
  ============================== */
  
  .flavor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: 30px auto 0;
  }
  
  .flavor-card {
  background-color: white;
  border: 1px solid #ead8ca;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(75, 40, 24, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  
  .flavor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(75, 40, 24, 0.2);
  }
  
  .flavor-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4b2818, #8a5235);
  color: white;
  font-size: 3.5rem;
  overflow: hidden;
  }
  
  .flavor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  }
  
  .flavor-content {
  padding: 22px;
  }
  
  .flavor-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  }
  
  .flavor-content p {
  color: #5c4639;
  margin-bottom: 12px;
  }
  
  .flavor-sizes {
  background-color: #fff5ed;
  border-radius: 8px;
  padding: 12px;
  margin-top: 15px;
  font-size: 0.95rem;
  line-height: 1.8;
  }
  
  .favorite-button {
  width: 100%;
  margin-top: 15px;
  padding: 12px;
  border: 2px solid #4b2818;
  border-radius: 8px;
  background-color: white;
  color: #4b2818;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  }
  
  .favorite-button:hover {
  background-color: #4b2818;
  color: white;
  }
  
  /* ==============================
  FILTRO DE SABORES
  ============================== */
  
  .filter-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 1100px;
  margin: 30px auto 0;
  padding: 18px;
  background-color: #f1dfd2;
  border-radius: 12px;
  }
  
  .filter-area label {
  font-weight: bold;
  }
  
  .filter-area select {
  padding: 10px 35px 10px 12px;
  border: 1px solid #b99a89;
  border-radius: 8px;
  background-color: white;
  color: #3d2418;
  font-size: 1rem;
  }
  
  .flavor-message {
  text-align: center;
  font-weight: bold;
  margin-top: 20px;
  color: #6b3b25;
  }
  
  /* ==============================
  FAVORITO
  ============================== */
  
  .favorite-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  }
  
  .favorite-display {
  background-color: #f1dfd2;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  }
  
  .favorite-display > span {
  display: block;
  font-size: 3rem;
  margin-bottom: 10px;
  }
  
  .favorite-display p {
  font-weight: bold;
  color: #4b2818;
  }
  
  /* ==============================
  MINI BROWNIES
  ============================== */
  
  .mini-brownie-section {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 40px;
  background-color: #4b2818;
  color: white;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 40px;
  align-items: center;
  }
  
  .mini-brownie-section h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 15px;
  }
  
  .mini-brownie-section .eyebrow {
  color: #e8c5af;
  }
  
  .mini-brownie-section p {
  color: white;
  }
  
  .mini-brownie-highlight {
  background-color: white;
  color: #4b2818;
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  }
  
  .mini-brownie-highlight span {
  display: block;
  font-size: 3rem;
  font-weight: bold;
  }
  
  .mini-brownie-highlight strong {
  display: block;
  font-size: 1.1rem;
  }
  
  .mini-brownie-highlight small {
  display: block;
  margin-top: 8px;
  font-size: 1.3rem;
  font-weight: bold;
  }
  
  /* ==============================
  PÁGINA DE CONTATO
  ============================== */
  
  .pagina-contato {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 20px;
  }
  
  .pagina-contato .section-heading,
  .informacoes-contato .section-heading {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 35px;
  }
  
  .pagina-contato .section-heading h2,
  .informacoes-contato .section-heading h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  }
  
  .pagina-contato .section-heading p,
  .informacoes-contato .section-heading p {
  color: #5c4639;
  }
  
  /* ==============================
  FORMULÁRIO
  ============================== */
  
  #form-contato {
  background-color: white;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(75, 40, 24, 0.12);
  border: 1px solid #ead8ca;
  }
  
  .campo {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  }
  
  .campo label {
  color: #4b2818;
  font-weight: bold;
  }
  
  .campo input,
  .campo select,
  .campo textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #c9aa97;
  border-radius: 10px;
  background-color: #fff8f2;
  color: #3d2418;
  font-family: inherit;
  font-size: 1rem;
  }
  
  .campo input:focus,
  .campo select:focus,
  .campo textarea:focus {
  outline: none;
  border-color: #8a5235;
  box-shadow: 0 0 0 3px rgba(138, 82, 53, 0.15);
  }
  
  .campo textarea {
  resize: vertical;
  min-height: 140px;
  }
  
  #form-contato button {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 10px;
  background-color: #4b2818;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  }
  
  #form-contato button:hover {
  background-color: #6b3b25;
  }
  
  .mensagem-sucesso {
  margin-top: 20px;
  text-align: center;
  font-weight: bold;
  color: #6b3b25;
  }
  
  /* ==============================
  INFORMAÇÕES DE CONTATO
  ============================== */
  
  .informacoes-contato {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 20px 70px;
  }
  
  .contato-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  }
  
  .contato-info > div {
  background-color: #f1dfd2;
  border: 1px solid #ead8ca;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(75, 40, 24, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .contato-info > div:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(75, 40, 24, 0.13);
  }
  
  .contato-info h3 {
  color: #4b2818;
  font-size: 1.3rem;
  margin-bottom: 10px;
  }
  
  .contato-info p {
  color: #5c4639;
  margin-bottom: 0;
  }
  
  /* ==============================
  REDES SOCIAIS
  ============================== */
  
  .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #4b2818;
  text-decoration: none;
  }
  
  .social-link img,
  .social-links img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
  }
  
  .social-link:hover {
  text-decoration: underline;
  }
  
  .social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 15px;
  }
  
  .social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #f1dfd2;
  font-weight: bold;
  }
  
  .social-links a:hover {
  text-decoration: underline;
  }
  
  /* ==============================
  RODAPÉ
  ============================== */
  
  .site-footer {
  background-color: #4b2818;
  color: white;
  padding: 45px 5% 20px;
  }
  
  .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 50px;
  }
  
  .footer-brand img {
  width: 180px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 15px;
  }
  
  .footer-brand p {
  color: #f1dfd2;
  }
  
  .footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  }
  
  .footer-links h2 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 10px;
  }
  
  .footer-links a {
  color: #f1dfd2;
  text-decoration: none;
  }
  
  .footer-links a:hover {
  text-decoration: underline;
  }
  
  .copyright {
  max-width: 1200px;
  margin: 35px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  }
  
  .copyright p {
  color: #f1dfd2;
  margin-bottom: 0;
  }
  
  /* ==============================
  TABLET
  ============================== */
  
  @media screen and (max-width: 900px) {
  
  .hero,
  .story-content,
  .favorite-section {
      grid-template-columns: 1fr;
  }
  
  .hero {
      text-align: center;
  }
  
  .hero-content {
      max-width: 700px;
      margin: 0 auto;
  }
  
  .hero-actions {
      justify-content: center;
  }
  
  .size-grid,
  .flavor-grid,
  .partners-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .seasonal-section,
  .mini-brownie-section {
      grid-template-columns: 1fr;
      text-align: center;
  }
  
  .delivery-details {
      grid-template-columns: 1fr;
  }
  
  .mini-brownie-highlight {
      max-width: 300px;
      margin: 0 auto;
  }
  
  .footer-content {
      grid-template-columns: 1fr 1fr;
  }
  
  }
  
  /* ==============================
  CELULAR
  ============================== */
  
  @media screen and (max-width: 600px) {
  
  .site-header {
      flex-wrap: wrap;
      padding: 12px 20px;
  }
  
  .logo,
  .logo img {
      width: 140px;
  }
  
  .logo img {
      height: 55px;
  }
  
  .menu-button {
      display: block;
  }
  
  .site-nav {
      display: none;
      width: 100%;
      flex-direction: column;
      text-align: center;
      gap: 10px;
      padding-top: 15px;
  }
  
  .site-nav.open {
      display: flex;
  }
  
  section {
      padding: 40px 15px;
  }
  
  .hero {
      padding: 40px 15px;
  }
  
  .hero h1,
  .page-hero h1 {
      font-size: 2.2rem;
  }
  
  .hero-card img {
      height: 220px;
  }
  
  .section-heading h2,
  .pagina-contato .section-heading h2,
  .informacoes-contato .section-heading h2 {
      font-size: 1.7rem;
  }
  
  .page-hero {
      padding: 45px 15px;
  }
  
  .size-grid,
  .size-info-grid,
  .flavor-grid,
  .contato-info {
      grid-template-columns: 1fr;
  }
  
  .pagina-contato {
      padding: 45px 15px;
  }
  
  #form-contato {
      padding: 25px 20px;
  }
  
  .informacoes-contato {
      padding: 20px 15px 50px;
  }
  
  .contato-info {
      gap: 18px;
  }
  
  .contato-info > div {
      padding: 25px 20px;
  }
  
  .filter-area {
      flex-direction: column;
      text-align: center;
  }
  
  .flavor-image {
      height: 200px;
  }
  
  .seasonal-section {
      margin: 20px 15px;
      padding: 30px 20px;
  }
  
  .mini-brownie-section {
      margin: 20px 15px 40px;
      padding: 30px 20px;
  }
  
  .cta-section {
      padding: 40px 20px;
      flex-direction: column;
      text-align: center;
  }
  
  .cta-actions {
      justify-content: center;
  }
  
  .footer-content {
      grid-template-columns: 1fr;
      gap: 30px;
      text-align: center;
  }
  
  .footer-brand img {
      margin: 0 auto 15px;
  }
  
  .footer-links {
      align-items: center;
  }
  
  .social-links {
      flex-direction: column;
      gap: 12px;
  }
  
  .social-links img,
  .social-link img {
      width: 32px;
      height: 32px;
  }
  
  }
  