* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --chocolate-escuro: #2e1b1b;
  --chocolate-medio: #5d4037;
  --chocolate-claro: #8d6e63;
  --marrom-suave: #a1887f;
  --creme: #f5f5dc;
  --creme-nuts: #e7d3b0;
  --dourado: #ffb300;
  --dourado-escuro: #ffa000;
  --branco: #ffffff;
  --cinza-claro: #f7f3f0;
  --cinza-medio: #8d6e63;
  --preto-suave: #1c1c1c;

  /* Sombras suaves e elegantes */
  --sombra-suave: 0 4px 15px rgba(93, 64, 55, 0.15);
  --sombra-media: 0 8px 25px rgba(93, 64, 55, 0.25);

  /* Gradientes sofisticados */
  --gradiente-chocolate: linear-gradient(135deg, #8d6e63 0%, #5d4037 100%);
  --gradiente-dourado: linear-gradient(135deg, #ffb300 0%, #ffa000 100%);
}

/* === BASE === */
body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--preto-suave);
  background-color: var(--branco);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* === SEÇÕES HERO === */
.parallax-section {
  min-height: 80vh;
  background: url("images/background-indice.jpeg") center center no-repeat fixed;
  background-size: contain;
  background-color: var(--creme-nuts);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  padding-top: 90px;
  /* Ajuste inicial para o parallax */
  transform: translateY(0);
}

.parallax-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.parallax-section + * {
  position: relative;
  z-index: 2;
  background-color: var(--creme);
}

.hero-section-sobre {
  min-height: 50vh;
  background: url("images/background.jpeg") center center / cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  margin-top: 105px;
  background-attachment: fixed;
}

.hero-section-sobre::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(46, 27, 27, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--branco);
}

.hero-content h1 {
  font-family: "Dancing Script", cursive;
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* === SEÇÕES DE INFORMAÇÕES === */
.info-section {
  padding: 5rem 0;
  background: var(--creme);
  text-align: center;
}

.info-section h1 {
  font-family: "Dancing Script", cursive;
  font-size: 3rem;
  color: var(--chocolate-medio);
  margin-bottom: 1rem;
}

.info-section h3 {
  font-size: 1.5rem;
  color: var(--chocolate-claro);
  margin-bottom: 2rem;
  font-weight: 400;
}

.info-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  color: var(--chocolate-escuro);
}

/* === PÁGINA SOBRE === */
.sobre-content {
  padding: 4rem 0;
  background: var(--creme);
}

.sobre-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.sobre-text h1 {
  font-family: "Dancing Script", cursive;
  font-size: 3rem;
  color: var(--chocolate-medio);
  margin-bottom: 2rem;
  text-align: center;
}

.sobre-paragrafos p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--chocolate-escuro);
  text-align: justify;
}

/* === PÁGINA CONTATOS === */
.contatos-content {
  padding: 4rem 0;
  background: var(--creme);
}

.contatos-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.contatos-text h1 {
  font-family: "Dancing Script", cursive;
  font-size: 3rem;
  color: var(--chocolate-medio);
  margin-bottom: 3rem;
  text-align: center;
}

.contatos-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contato-item {
  background: var(--branco);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--sombra-suave);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--chocolate-medio);
}

.contato-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra-media);
}

.contato-icon {
  background: var(--gradiente-chocolate);
  color: var(--branco);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: var(--sombra-suave);
}

.contato-details h3 {
  color: var(--chocolate-escuro);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contato-details p {
  color: var(--chocolate-medio);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.contato-details small {
  color: var(--chocolate-claro);
  font-style: italic;
  font-size: 0.9rem;
}

.contatos-cta {
  background: var(--gradiente-chocolate);
  color: var(--branco);
  padding: 3rem;
  border-radius: 25px;
  text-align: center;
  box-shadow: var(--sombra-media);
}

.contatos-cta h3 {
  font-family: "Dancing Script", cursive;
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--dourado);
}

.contatos-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #25d366;
  color: var(--branco);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: var(--branco);
}

.whatsapp-btn i {
  font-size: 1.3rem;
}

/* === SEÇÃO DE PRODUTOS === */
.produtos-section {
  padding-block: 5rem;
  background: var(--branco);
  position: relative;
  z-index: 2;
}

.produtos-section h2 {
  text-align: center;
  font-family: "Dancing Script", cursive;
  font-size: 3rem;
  color: var(--chocolate-medio);
  margin-bottom: 3rem;
}

.no-products {
  text-align: center;
  padding: 3rem;
  background: var(--creme);
  border-radius: 20px;
  margin-top: 2rem;
}

.no-products p {
  color: var(--chocolate-claro);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.produto-card {
  background: var(--branco);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--sombra-suave);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.produto-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--sombra-media);
  border-color: var(--chocolate-medio);
}

.produto-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.produto-card:hover .produto-image {
  transform: scale(1.05);
}

.produto-info {
  padding: 1.5rem;
}

.produto-nome {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--chocolate-escuro);
  margin-bottom: 0.5rem;
}

.produto-descricao {
  color: var(--chocolate-claro);
  margin-bottom: 1rem;
  font-size: 0.82rem;
  line-height: 1.5;
  height: 60px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  word-wrap: break-word;
}

.produto-preco {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--chocolate-medio);
  margin-bottom: 1rem;
}

.produto-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-direction: column;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-btn {
  background: var(--gradiente-chocolate);
  color: var(--branco);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.quantity-btn:hover {
  transform: scale(1.1);
}

.quantity-display {
  font-weight: 600;
  font-size: 1.1rem;
  min-width: 30px;
  text-align: center;
  color: var(--chocolate-escuro);
}

.produto-buttons {
  display: flex;
  gap: 0.5rem;
  width: 100%;
}

.details-btn {
  background: var(--gradiente-chocolate);
  color: var(--branco);
  border: none;
  padding: 10px 15px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  justify-content: center;
  font-size: 0.9rem;
}

.details-btn:hover {
  transform: scale(1.05);
}

.add-btn {
  background: var(--gradiente-dourado);
  color: var(--chocolate-escuro);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  justify-content: center;
  font-size: 0.9rem;
}

.add-btn:hover {
  transform: scale(1.05);
}

/* === MODAIS === */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 1rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--branco);
  border-radius: 20px;
  overflow: hidden;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--sombra-media);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-header {
  background: var(--gradiente-chocolate);
  color: var(--branco);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-family: "Dancing Script", cursive;
  font-size: 1.8rem;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  color: var(--branco);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: background 0.2s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
}

.modal-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: var(--sombra-suave);
}

.modal-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.modal-info h4 {
  font-size: 1.8rem;
  color: var(--chocolate-escuro);
  margin-bottom: 1rem;
  font-weight: 600;
}

.modal-info p {
  color: var(--chocolate-claro);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.modal-preco {
  font-size: 2rem;
  font-weight: 700;
  color: var(--chocolate-medio);
  margin-bottom: 2rem;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quantity-controls-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.quantity-display-modal {
  font-weight: 600;
  font-size: 1.2rem;
  min-width: 40px;
  text-align: center;
  color: var(--chocolate-escuro);
}

.add-btn-modal {
  background: var(--gradiente-dourado);
  color: var(--chocolate-escuro);
  border: none;
  padding: 15px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.add-btn-modal:hover {
  transform: scale(1.05);
}

/* === MODAL DE PEDIDO === */
.modal-pedido {
  max-width: 900px;
  max-height: 95vh;
}

.modal-body-pedido {
  padding: 2rem;
  max-height: 80vh;
  overflow-y: auto;
}

.pedido-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-section {
  background: var(--cinza-claro);
  padding: 1.5rem;
  border-radius: 15px;
  border-left: 4px solid var(--chocolate-medio);
}

.form-section h4 {
  color: var(--chocolate-escuro);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-section h4 i {
  color: var(--chocolate-medio);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--chocolate-escuro);
}

.form-group input[type="text"],
.form-group input[type="tel"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--marrom-suave);
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--branco);
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus {
  outline: none;
  border-color: var(--chocolate-medio);
  box-shadow: 0 0 0 3px rgba(93, 64, 55, 0.1);
}

.form-group input::placeholder {
  color: var(--marrom-suave);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--branco);
  border: 2px solid var(--marrom-suave);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.radio-label:hover {
  border-color: var(--chocolate-medio);
  background: rgba(93, 64, 55, 0.05);
}

.radio-label input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 20px;
  height: 20px;
  border: 2px solid var(--marrom-suave);
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
  border-color: var(--chocolate-medio);
  background: var(--chocolate-medio);
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--branco);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.radio-label input[type="radio"]:checked ~ * {
  color: var(--chocolate-escuro);
}

.radio-label i {
  color: var(--chocolate-claro);
  font-size: 1.1rem;
}

.radio-label input[type="radio"]:checked ~ i {
  color: var(--chocolate-medio);
}

.pedido-resumo {
  background: var(--creme);
  padding: 1.5rem;
  border-radius: 15px;
  border: 2px solid var(--chocolate-claro);
}

.pedido-resumo h4 {
  color: var(--chocolate-escuro);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.resumo-items {
  margin-bottom: 1rem;
}

.resumo-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--marrom-suave);
}

.resumo-item:last-child {
  border-bottom: none;
}

.resumo-item-info {
  flex: 1;
}

.resumo-item-nome {
  font-weight: 600;
  color: var(--chocolate-escuro);
}

.resumo-item-desc {
  font-size: 0.9rem;
  color: var(--chocolate-claro);
}

.resumo-item-preco {
  font-weight: 600;
  color: var(--chocolate-medio);
  margin-left: 1rem;
}

.resumo-total {
  border-top: 2px solid var(--chocolate-medio);
  padding-top: 1rem;
}

.total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  color: var(--chocolate-escuro);
}

.total-line.total-final {
  font-size: 1.2rem;
  color: var(--chocolate-escuro);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--chocolate-claro);
}

.taxa-entrega.hidden {
  display: none;
}

.modal-actions-pedido {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.btn-cancelar,
.btn-confirmar {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-cancelar {
  background: var(--cinza-medio);
  color: var(--branco);
}

.btn-cancelar:hover {
  background: var(--chocolate-claro);
  transform: translateY(-2px);
}

.btn-confirmar {
  background: #25d366;
  color: var(--branco);
}

.btn-confirmar:hover {
  background: #128c7e;
  transform: translateY(-2px);
}

/* === SIDEBAR === */
.sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: var(--branco);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1001;
  display: flex;
  flex-direction: column;
}

.sidebar.active {
  right: 0;
}

.sidebar-header {
  background: var(--gradiente-chocolate);
  color: var(--branco);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-header h3 {
  font-family: "Dancing Script", cursive;
  font-size: 1.5rem;
}

.close-btn {
  background: none;
  border: none;
  color: var(--branco);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.sidebar-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
}

.empty-cart {
  text-align: center;
  color: var(--chocolate-claro);
  margin: 3rem 1rem;
  font-style: italic;
  font-size: 1.1rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--creme);
  align-items: flex-start;
}

.cart-item-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  color: var(--chocolate-escuro);
}

.cart-item-desc {
  font-size: 0.8rem;
  color: var(--chocolate-claro);
  margin-bottom: 0.5rem;
}

.cart-item-price {
  font-weight: 600;
  color: var(--chocolate-medio);
}

.cart-item-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 80px;
}

.cart-item-quantity {
  text-align: center;
  font-size: 0.9rem;
  color: var(--chocolate-claro);
  font-weight: 600;
}

.remove-item-btn {
  background: #dc3545;
  color: white;
  border: none;
  padding: 5px 8px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.remove-item-btn:hover {
  background: #c82333;
  transform: scale(1.05);
}

.cart-total {
  padding: 1.5rem;
  background: var(--creme);
  border-top: 2px solid var(--chocolate-medio);
}

.order-btn {
  width: 100%;
  background: var(--gradiente-chocolate);
  color: var(--branco);
  border: none;
  padding: 1rem;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.2s ease;
}

.order-btn:hover {
  transform: translateY(-2px);
}

/* === OVERLAY === */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* === NOTIFICAÇÃO === */
.notificacao {
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--dourado);
}

/* === RESPONSIVIDADE === */
@media (max-width: 768px) {
  .hero-section-sobre {
    margin-top: 85px;
    min-height: 40vh;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .parallax-section {
    padding-top: 85px;
    min-height: 45vh;
    background-attachment: scroll;
  }

  .hero-section-sobre {
    background-attachment: scroll;
  }

  .modal-body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .modal-image img {
    height: 300px;
  }

  .modal-info h4 {
    font-size: 1.5rem;
  }

  .modal-preco {
    font-size: 1.5rem;
  }

  .produto-buttons {
    flex-direction: column;
  }

  .produtos-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    width: 100%;
    right: -100%;
  }

  .produto-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .quantity-controls {
    justify-content: center;
  }

  .contatos-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contato-item {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
  }

  .contato-icon {
    align-self: center;
  }

  .contatos-text h1 {
    font-size: 2.5rem;
  }

  .contatos-cta {
    padding: 2rem;
    margin: 1rem;
  }

  .contatos-cta h3 {
    font-size: 1.8rem;
  }

  .modal-pedido {
    margin: 0.5rem;
    max-height: 95vh;
  }

  .modal-body-pedido {
    padding: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .modal-actions-pedido {
    flex-direction: column;
  }

  .radio-group {
    gap: 0.5rem;
  }

  .radio-label {
    padding: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-section-sobre {
    margin-top: 78px;
  }

  .parallax-section {
    padding-top: 78px;
  }

  .modal-content {
    margin: 0.5rem;
    max-height: 95vh;
  }

  .modal-header {
    padding: 1rem;
  }

  .modal-header h3 {
    font-size: 1.5rem;
  }

  .modal-body {
    padding: 1rem;
  }

  .sidebar {
    width: 100vw;
    right: -100vw;
  }

  .cart-item {
    flex-direction: column;
    text-align: center;
  }

  .cart-item-controls {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  .contatos-cta {
    padding: 1.5rem;
  }

  .contato-item {
    padding: 1rem;
  }

  .whatsapp-btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}

/* === EFEITO PARALLAX APRIMORADO === */
@media (min-width: 769px) {
  .parallax-section {
    background-attachment: fixed;
  }

  .hero-section-sobre {
    background-attachment: fixed;
  }
}
