/* Complete redesign to match premium layout with modern styling */
html {
  scroll-behavior: smooth;
}

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

:root {
  --lime-green: #c2e93a;
  --bright-yellow: #f0f21c;
  --orange-red: #ff8065;
  --pink: #ff4081;
  --white: #ffffff;
  --black: #3e4037;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-300: #e0e0e0;
  --gray-600: #757575;
  --gray-900: #212121;
  --gray-500: #9e9e9e; /* Added for flip hint color */
  --gray-400: #cccccc; /* Added for share button disabled state */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --border-radius: 16px;
  --border-radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  line-height: 1.6;
  color: var(--black);
  background: #f9fbee;
  overflow-x: hidden;
}

.verde {
  color: #c2e93a;
}

/* NOVO */

.banner {
  grid-area: 1 / 1;
  height: calc(95vh + 75px);
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  justify-content: flex-start;
}

/* conteúdo do slide */
.mm-content {
  max-width: 1600px;
  padding: 0 30px;
  margin: 0 auto;
  width: -webkit-fill-available;
}
.mm-title {
  font-size: 150px;
  line-height: 1.08;
  max-width: 800px;
  font-weight: 500;
  color: #f8fbee;
  letter-spacing: -6px;
  margin-bottom: 30px;
}

.mm-subtitle {
  font-size: 50px;
  max-width: 640px;
  font-weight: 400;
  letter-spacing: -3px;
  line-height: 1.2;
  color: #f8fbee;
}

.mm-btn {
  display: inline-block;
  background: #c2e93a;
  color: #000000;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 55px;
  letter-spacing: -0.5px;
  font-size: 20px;
  font-weight: 600;
  transition: 200ms ease-in-out;
  margin-top: 55px;
}
.mm-btn:hover {
  background: #f8fbee;
  color: #000000;
}

/* chips */
.mm-chips {
  display: flex;
  gap: 10px;
  margin: 80px auto 0 auto;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}
.mm-chips li {
  background: rgb(248 251 238 / 29%);
  color: #f8fbee;
  backdrop-filter: blur(7px);
  padding: 9px 30px;
  border-radius: 999px;
  line-height: 1;
  font-size: 20px;
  letter-spacing: -1px;
}

.card-saude svg {
  height: 50px;
  background: #f9fbee;
  padding: 11px;
  border-radius: 100px;
  fill: #41423a;
  margin-bottom: 10px;
  overflow: visible;
}

.icon-brinde {
  height: 85px;
  background: #c2e93a;
  position: absolute;
  border-radius: 100px;
  padding: 25px;
  fill: #3e4037;
  top: -40px;
  right: -33px;
  transition: 200ms ease-in-out;
}

.container-cards-saude {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  margin-top: 60px;
}

.cards-esq {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}

.foto.direita {
  flex: 1;
  background-image: url(https://mistymocktails.com.br/wp-content/uploads/2025/09/fotobrinde.webp);
  background-size: cover;
  background-position: center center;
  border-radius: 30px;
  padding: 30px;
  max-width: 45%;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-end;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.foto.direita:hover .icon-brinde {
  scale: 1.1;
  box-shadow: 0px 8px 20px #00000045;
}

.foto.direita:hover .kicker-brinde {
  background: #f8fbee;
  color: #0b0e13;
}

.card-saude {
  flex: 1 1 30%;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  transition: 200ms ease-in-out;
  cursor: default;
}

.card-saude:hover {
  transform: translate(0, -14px) rotate(-2deg);
}

.card-saude h3 {
  font-size: 35px;
  text-transform: none;
  letter-spacing: -2px;
  font-weight: 500;
  line-height: 1.1;
  color: #41423a;
}

.card-saude {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -1px;
  color: #41423a;
}

.card-saude p {
  max-width: 268px;
}

.cards-esq .card-saude:nth-child(1) {
  background: #c2e93a;
  flex: 1 1 100%;
}

.cards-esq .card-saude:nth-child(1) h3 {
  font-size: 40px;
}

.cards-esq .card-saude:nth-child(1) p {
  max-width: 80%;
}

.pills-gingerol {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: stretch;
  gap: 10px;
}

.pills-gingerol p {
  background: #41423a5c;
  color: #f9fbee;
  padding: 4px 17px;
  border-radius: 100px;
  font-size: 15px;
  letter-spacing: 0;
  max-width: 100% !important;
}

.cards-esq .card-saude:nth-child(2) {
  background: #f0f21c;
}

.cards-esq .card-saude:nth-child(3) {
  background: #ff8065;
}

.cards-esq .card-saude:nth-child(4) {
  background: #fa8ca7;
}

.container-head {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  flex-direction: row;
  justify-content: space-between;
}

#sec-saude .title-geral {
  max-width: 800px;
  flex: 2.2;
}

.sub-sec-saude {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -1.3px;
  font-weight: 400;
  flex: 0.4;
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  opacity: 70%;
}

.kicker-brinde {
  font-size: 20px;
  letter-spacing: -1px;
  font-weight: 500;
  background: #0000006b;
  padding: 5px 25px;
  border-radius: 100px;
  color: #f9fbee;
  backdrop-filter: blur(8px);
  transition: 150ms ease-in-out;
}

#sec-saude {
  padding-top: 120px;
  padding-bottom: 120px;
}

.title-geral {
  color: #3e4037;
  font-size: 80px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -4.4px;
  line-height: 1.1;
}

#sec-saude .title-geral {
  max-width: 800px;
  flex: 2.2;
}

/* NOVO */

.container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Header */
.header {
  background: #cde84e;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 14px;
  max-width: 1600px;
  margin: 0 auto;
}

.nav-brand .logo {
  height: 80px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-900);
  font-weight: 500;
  font-size: 16px;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--lime-green);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gray-900);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 120px 0 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/images/hero-background.jpg"); /* Add your hero background image here */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(135deg, rgba(196, 255, 0, 0.9) 0%, rgba(255, 193, 7, 0.8) 100%); */
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.hero-text {
  max-width: 600px;
}

.hero-title {
  font-size: clamp(48px, 8vw, 90px);
  font-weight: 500;
  letter-spacing: -5px;
  line-height: 80px;
  color: var(--white);
  margin-bottom: 24px;
}

.highlight {
  color: var(--lime-green);
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); */
}

.hero-subtitle {
  font-size: 30px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.4;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 40px;
  line-height: 1.5;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 18px 36px;
  border-radius: var(--border-radius-lg);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background: var(--lime-green);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(196, 255, 0, 0.4);
}

/* Benefits Section */
.benefits {
  padding: 15px 0;
  font-size: 14px;
  background: var(--gray-50);
}

.section-title {
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 80px;
  color: var(--black);
  line-height: 1.2;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  padding: 40px 32px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.benefit-card.green {
  background: var(--lime-green);
  color: var(--black);
}

.benefit-card.yellow {
  background: var(--bright-yellow);
  color: var(--black);
}

.benefit-card.orange {
  background: var(--orange-red);
  color: var(--white);
}

.benefit-card.pink {
  background: var(--pink);
  color: var(--white);
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: 24px;
}

.benefit-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.benefit-card p {
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.9;
}

/* Products Section */
.products {
  padding: 80px 0;
  background: #eef0e3;
  min-height: 100vh;
}

.products .container {
  width: 100%;
  max-width: 1600px;
}

/* Tab Navigation */
.tab-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  margin-top: 45px;
  background: #f9fbee;
  padding: 8px;
  border-radius: 100px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.tab-btn {
  background: transparent;
  border: none;
  color: var(--black);
  padding: 12px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  min-width: 140px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.tab-btn:hover {
  background: var(--gray-50);
  color: var(--gray-900);
  transform: translateY(-1px);
}

.tab-btn.active {
  background: linear-gradient(
    135deg,
    var(--lime-green) 0%,
    var(--bright-yellow) 100%
  );
  color: var(--black);
  box-shadow: 0 4px 16px rgba(196, 255, 0, 0.3);
  transform: translateY(-1px);
}

/* Tab Content */
.tab-content {
  display: none;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
  opacity: 1 !important;
  visibility: visible !important;
}

@keyframes fadeIn {
  from {
    opacity: 0.3;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 20px;
  width: 100%;
  margin: 0 auto;
}

.product-card {
  background: #f8fbee;
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  opacity: 1 !important;
  visibility: visible !important;
}

.product-image {
  /* height: 250px; */ /* Updated height */
  overflow: hidden;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  pointer-events: none !important;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 30px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.product-info h3 {
  font-size: 35px;
  font-weight: 600;
  letter-spacing: -1.5px;
  color: var(--black);
}

.calories {
  background: var(--lime-green);
  color: var(--black);
  padding: 4px 30px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  width: fit-content;
  display: inline-block;
  margin-bottom: 16px;
}

.description {
  font-size: 16px;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  font-weight: 500;
  opacity: 70%;
  letter-spacing: -0.5px;
}

.ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.ingredients span {
  background: #eef0e3;
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}

.product-btn {
  background: var(--black);
  color: #ffffff;
  border: none;
  padding: 17px 28px;
  border-radius: 100px;
  font-size: 18px;
  text-transform: none;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}

.product-btn:hover {
  background: var(--lime-green);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 255, 0, 0.4);
}

/* Builder Section */
.builder-header {
  text-align: center;
  margin-bottom: 60px;
}

.builder-header h2 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -2px;
  color: var(--black);
  margin-bottom: 0;
}

.builder-header p {
  font-size: 18px;
  color: var(--gray-600);
}

.builder-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.builder-steps {
  background: #f9fbee;
  padding: 40px;
  border-radius: 20px;
}

.step {
  display: none;
}

.step.active {
  display: block;
}

.step h3 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 25px;
  color: var(--black);
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.option-btn {
  background: #eef0e3;
  border: 2px solid #ffffff;
  padding: 24px 16px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.option-btn:hover {
  border-color: var(--lime-green);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.option-btn.selected {
  background: var(--lime-green);
  border-color: var(--lime-green);
  color: var(--black);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.option-btn.tropical.selected {
  background: var(--bright-yellow);
}

.option-btn.berries.selected {
  background: var(--pink);
  color: var(--white);
}

.option-btn.citrus.selected {
  background: var(--lime-green);
}

.option-icon {
  font-size: 32px;
}

.option-btn span {
  font-size: 14px;
  font-weight: 600;
}

/* Builder Result */
.builder-result {
  position: sticky;
  top: 120px;
}

.custom-drink-card {
  background: #f9fbee;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 30px #eaebe1;
  text-align: center;
}

.drink-visual {
  margin-bottom: 24px;
}

.custom-bottle {
  width: 120px;
  height: auto;
}

.custom-drink-card h3 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--black);
  margin-bottom: 16px;
}

.custom-calories {
  background: var(--lime-green);
  color: var(--black);
  padding: 12px 20px;
  border-radius: var(--border-radius);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  display: inline-block;
}

.custom-ingredients {
  background: #eef0e3;
  padding: 20px;
  border-radius: var(--border-radius);
  margin-bottom: 24px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: var(--gray-600);
}

.custom-experience {
  background: var(--orange-red);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--border-radius);
  margin-bottom: 32px;
  font-weight: 600;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
}

.share-btn {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 16px 32px;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.share-btn:hover:not(:disabled) {
  background: var(--gray-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.share-btn:disabled {
  cursor: not-allowed;
  background: var(--gray-400);
  color: var(--gray-600);
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: var(--black);
  color: var(--white);
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-content h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
}

.cta-content p {
  font-size: 18px;
  color: var(--gray-300);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-primary {
  background: var(--lime-green);
  color: var(--black);
  border: none;
  padding: 16px 32px;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cta-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 16px 32px;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cta-primary:hover,
.cta-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cta-image img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--gray-300);
  margin-top: 16px;
  font-size: 16px;
}

.footer-logo {
  height: 40px;
  width: auto;
}

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

.footer-column h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-column a {
  display: block;
  color: var(--gray-300);
  text-decoration: none;
  margin-bottom: 12px;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--lime-green);
}

.footer-bottom {
  border-top: 1px solid var(--gray-600);
  padding-top: 40px;
  text-align: center;
}

.footer-bottom p {
  color: var(--gray-300);
  font-size: 14px;
}

/* Drink Card Styles for Flip Functionality */
.drink-card {
  background: #f9fbee;
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  perspective: 1000px;
  min-height: 750px;
  cursor: pointer;
  opacity: 1 !important;
  visibility: visible !important;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 14px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.drink-card.flipped .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  padding: 30px;
  justify-content: space-between;
}

.card-front h3 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -1.5px;
  color: var(--black);
  text-align: left;
}

.card-front .ingredients {
  margin-bottom: 0;
}

.card-back {
  transform: rotateY(180deg);
  background: #f9fbee;
  display: block;
}

.drink-image {
  pointer-events: none !important;
}

.experience-badge {
  background: var(--orange-red);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin: 12px 0;
}

.flip-hint {
  font-size: 12px;
  color: var(--gray-500);
  margin: 8px 0;
}

/* Smaller and centered modal styles */
.recipe-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 24px;
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  margin: auto;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
}

.recipe-header {
  text-align: center;
  padding: 30px 30px 15px;
  background: linear-gradient(135deg, var(--lime-green), var(--bright-yellow));
}

.recipe-icon img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 17px;
}

.recipe-header h2 {
  font-size: 35px;
  font-weight: 600;
  letter-spacing: -1.5px;
  color: var(--black);
}

.recipe-calories {
  background: var(--black);
  color: white;
  padding: 6px 12px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 14px;
}

.recipe-body {
  padding: 25px 30px;
}

.recipe-section {
  margin-bottom: 20px;
}

.recipe-section h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}

.recipe-ingredients {
  list-style: none;
  padding: 0;
}

.recipe-ingredients li {
  background: var(--gray-100);
  padding: 8px 12px;
  margin-bottom: 6px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
}

.recipe-experience {
  background: var(--orange-red);
  color: white;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  font-size: 14px;
}

.recipe-footer {
  padding: 15px 30px 25px;
  display: flex;
  gap: 12px;
}

.recipe-share-btn,
.recipe-close-btn {
  flex: 1;
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.recipe-share-btn {
  background: var(--lime-green);
  color: var(--black);
  border: none;
}

.recipe-close-btn {
  background: transparent;
  color: var(--gray-600);
  border: 2px solid var(--gray-300);
}

.recipe-share-btn:hover,
.recipe-close-btn:hover {
  transform: translateY(-2px);
}

/* Filter Section Styles */
.filter-section {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.search-input {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #ffffff;
  background: #3e4037;
  color: #f9fbee;
  transition: var(--transition);
}

.search-input:focus {
  outline: none;
  border-color: var(--lime-green);
  box-shadow: 0 0 0 3px rgba(196, 255, 0, 0.1);
  transform: translateY(-1px);
}

.search-input::placeholder {
  color: var(--gray-500);
  font-weight: 400;
}

.category-filter {
  min-width: 200px;
  padding: 13px 20px;
  border-radius: 100px;
  font-size: 16px;
  border: 1px solid #ffffff;
  background: #f9fbee;
  font-weight: 500;
  color: #3e4037;
  cursor: pointer;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 48px;
}

.category-filter:focus {
  outline: none;
  border-color: var(--lime-green);
  box-shadow: 0 0 0 3px rgba(196, 255, 0, 0.1);
  transform: translateY(-1px);
}

.category-filter:hover {
  border-color: var(--lime-green);
  transform: translateY(-1px);
}

/* Adicionando estilos para imagens do cardápio em formato 3:4 */
.menu-item-image {
  width: 100% !important;
  height: 300px !important;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
  border-radius: 20px !important;
}

.menu-item-image:hover {
  transform: scale(1.02);
  filter: brightness(1.1);
}

/* Estilos para o modal de ampliação de imagem */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.image-modal.active {
  opacity: 1;
  visibility: visible;
}

.image-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.image-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 20px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.image-modal.active .image-modal-content {
  transform: scale(1);
}

.image-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 30px;
  color: var(--gray-600);
  cursor: pointer;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.image-modal-close:hover {
  background: var(--gray-100);
  color: var(--black);
}

#modal-image {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}

#modal-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  padding: 0 40px;
}

.foto-drinks {
  max-width: 100%;
  border-radius: 15px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .builder-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cta-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .cards-esq .card-saude:nth-child(1) {
    flex: initial;
  }

  .pills-gingerol p {
    font-size: 13px;
  }
  .pills-gingerol {
    gap: 8px;
  }

  .cards-esq .card-saude:nth-child(1) p {
    max-width: 100%;
  }

  .cards-esq .card-saude:nth-child(1) h3 {
    font-size: 35px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-content {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-description {
    font-size: 16px;
  }

  .section-title {
    font-size: 32px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tab-nav {
    padding: 15px;
    gap: 6px;
    margin-bottom: 20px;
    border-radius: 20px;
  }

  .tab-btn {
    min-width: 120px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .title-geral {
    font-size: 50px;
    letter-spacing: -3px;
    text-align: center;
  }

  .sub-sec-saude {
    font-size: 23px;
    line-height: 1.4;
    letter-spacing: -1px;
  }

  .cards-esq {
    gap: 10px;
    flex-direction: column;
  }

  .card-saude {
    flex: initial;
    width: -webkit-fill-available;
  }

  .card-saude h3 {
    font-size: 35px;
  }

  .foto.direita {
    max-width: 100%;
    height: 500px;
  }

  .icon-brinde {
    height: 45px;
    top: -24px;
    right: -21px;
  }

  .kicker-brinde {
    text-align: center;
    padding: 10px 25px;
    border-radius: 15px;
  }

  .banner {
    width: -webkit-fill-available;
    height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .mm-content {
    max-width: 100%;
    padding: 0 30px;
    width: -webkit-fill-available;
    text-align: center;
  }

  .mm-title {
    font-size: 80px;
    margin-bottom: 20px;
  }

  .mm-subtitle {
    font-size: 30px;
    letter-spacing: -2px;
  }

  .mm-btn {
    width: -webkit-fill-available;
    margin-top: 30px;
    text-align: center;
  }

  .header {
    position: static;
  }

  .banner {
    background-image: linear-gradient(
        90deg,
        #0000009c 0% 0%,
        #0000006b 50%,
        #000000ab 100%
      ),
      url(https://mistymocktails.com.br/wp-content/uploads/2025/11/BG-HOME.webp) !important;
  }

  .container-head {
    flex-direction: column;
    text-align: center;
  }

  #sec-saude {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .product-image .menu-item-image {
    height: 225px !important;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 32px;
  }

  .benefit-card {
    padding: 24px 20px;
  }

  .product-info {
    padding: 24px;
  }

  .builder-steps {
    padding: 24px;
  }

  .custom-drink-card {
    padding: 24px;
  }

  .options-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}