/* ==== GLOBAL ==== */
body {
    font-family: 'Inter', Arial, sans-serif;
    background: #fafcfb;
    margin: 0;
    padding: 0;
    color: #222;
  }
  .header-img-wrap {
    width: 100vw;
    height: 180px;
    background: url('/images/image_background.webp') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .logo-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    z-index: 2;
    max-width: 110px;
    max-height: 110px;
  }
  nav {
    width: 100%;
    padding: 1rem 0 0.5rem 0;
    text-align: center;
    background: none;
  }
  nav a {
    color: #31917b;
    margin: 0 18px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.08rem;
    transition: color 0.18s;
  }
  nav a:hover,
  nav a[style*="font-weight:bold"] {
    color: #1b6254;
    text-decoration: underline;
  }
  .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2.5rem 1rem 0 1rem;
    text-align: center;
  }
  h1 {
    font-size: 2.35rem;
    font-weight: bold;
    margin: 2rem 0 1.2rem 0;
    letter-spacing: -0.03em;
  }
  .footer {
    text-align: center;
    padding: 1.3rem 0 1rem 0;
    background: #eee;
    font-size: 1rem;
    color: #555;
    margin-top: 2.5rem;
    width: 100vw;
  }
  @media (max-width: 1000px) {
    .container { padding: 1.2rem 0.2rem 0.2rem 0.2rem;}
    h1 { font-size: 1.4rem; }
    .header-img-wrap { height: 110px;}
    .logo-centered { max-width: 70px; max-height: 70px;}
  }
  
  /* ==== WHATSAPP FLOAT ==== */
  .wa-float-container {
    position: fixed;
    right: 0.6em;
    bottom: 1.6em;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .wa-float-btn {
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    display: block;
  }
  .wa-float-icon {
    width: 46px;
    height: 46px;
    display: block;
  }
  .wa-float-text {
    color: #208200;
    font-size: 1em;
    margin-top: 0.25em;
  }
  /* ==== BEVERAGES FLIP CARDS ==== */
  .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.2rem 2.2rem;
    justify-content: center;
    margin-top: 2.2rem;
    align-items: start;
    max-width: 590px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 700px) {
    .grid {
      grid-template-columns: 1fr;
      gap: 1.1rem;
      max-width: 98vw;
    }
  }
  .flip-card {
    background: transparent;
    width: 260px;
    height: 260px;
    perspective: 1200px;
    cursor: pointer;
    margin-bottom: 0;
    transition: box-shadow 0.18s;
  }
  @media (max-width: 700px) {
    .flip-card {
      width: 96vw;
      max-width: 330px;
      height: 96vw;
      max-height: 330px;
    }
  }
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.45s cubic-bezier(.6,.2,.2,1.1);
    transform-style: preserve-3d;
  }
  .flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
  }
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    box-shadow: 0 5px 22px rgba(80,160,110,0.13);
    background: #fff;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    justify-content: flex-start;
    overflow: hidden;
  }
  .flip-card-front img {
    width: 100%;
    height: 125px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    margin: 0;
    display: block;
  }
  .card-content {
    padding: 0.7rem 1rem 0.8rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    justify-content: center;
  }
  .drink-title {
    font-size: 1.18rem;
    font-weight: bold;
    color: #31917b;
    display: flex;
    align-items: center;
  }
  .drink-icon { font-size: 1.27rem; margin-right: 0.27em; }
  .drink-desc { font-size: 1.01rem; color: #444; margin-top: 0.18rem; }
  .flip-card-back {
    transform: rotateY(180deg);
    text-align: left;
    background: #e6f4ee;
    padding: 1.2em 1em;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .back-title {
    font-size: 1.13rem;
    font-weight: bold;
    margin-bottom: 0.4rem;
    color: #31917b;
  }
  .tap-tip {
    text-align: center;
    font-size: 1rem;
    margin-top: 1.7rem;
    color: #208200;
  }
    
  /* ==== PRICING PLANS ==== */
  .pricing-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2.5rem;
  }
  .plan-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 3px 18px rgba(0,0,0,0.09);
    max-width: 320px;
    flex: 1 1 290px;
    padding: 2.2rem 1.2rem 1.4rem 1.2rem;
    margin: 0 0.5rem 2rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  .plan-title {
    font-size: 1.23rem;
    font-weight: bold;
    color: #208200;
    margin-bottom: 0.15rem;
  }
  .plan-price {
    font-size: 2.23rem;
    font-weight: 600;
    color: #31917b;
    margin-bottom: 0.4rem;
  }
  .plan-desc {
    color: #555;
    margin-bottom: 1.15rem;
    text-align: center;
    font-size: 1.03rem;
  }
  .plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.15rem 0;
  }
  .plan-features li {
    margin-bottom: 0.7em;
    color: #3b3b3b;
    font-size: 1.03rem;
    text-align: left;
  }
  .plan-btn {
    background: #31917b;
    color: #fff;
    padding: 0.8em 1.5em;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 1.1em;
    transition: background 0.17s;
    font-size: 1.09rem;
    letter-spacing: 0.01em;
  }
  .plan-btn:hover {
    background: #208200;
  }
  .most-popular {
    border: 2.2px solid #208200;
    position: relative;
    z-index: 2;
  }
  .most-popular-badge {
    position: absolute;
    top: -1.1em;
    left: 50%;
    transform: translateX(-50%);
    background: #31917b;
    color: #fff;
    font-size: 0.95rem;
    font-weight: bold;
    border-radius: 7px;
    padding: 0.25em 1.1em;
    z-index: 3;
    box-shadow: 0 2px 7px rgba(80,160,110,0.10);
    letter-spacing: 0.01em;
  }
  @media (max-width: 1100px) {
    .pricing-row {
      flex-direction: column;
      align-items: center;
      gap: 1.6rem;
    }
  }
  
  /* ==== HOMEPAGE SPECIAL ==== */
  .subheadline {
    font-size: 1.13rem;
    color: #208200;
    margin-bottom: 0.5em;
    font-weight: 500;
  }
  .desc {
    font-size: 1.03rem;
    margin-bottom: 1.7em;
    color: #444;
  }
  .cta {
    display: inline-block;
    padding: 0.9em 1.7em;
    background: #31917b;
    color: #fff !important;
    border-radius: 9px;
    font-size: 1.11rem;
    font-weight: bold;
    text-decoration: none;
    margin: 1.3em 0 0.6em 0;
    transition: background 0.15s;
  }
  .cta:hover { background: #208200; }
  .bonus-row {
    margin: 2em 0 1em 0;
  }
  .bonus-link {
    margin-left: 0.6em;
    color: #31917b;
    font-size: 1.07rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1.5px dotted #31917b;
  }
  .bonus-link:hover { color: #208200; border-bottom: 2px solid #208200;}
  .emoji { font-size: 1.19em; vertical-align: middle; }

   /* ==== NEWS SECTION  ==== */
  .news-article {
    max-width: 700px;
    margin: 2.5rem auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 18px rgba(80,160,110,0.05);
    padding: 2.1rem 1.5rem 1.5rem 1.5rem;
  }
  .news-header { text-align: center; }
  .news-cover {
    width: 100%; max-height: 280px; object-fit: cover; border-radius: 12px; margin-bottom: 1.3em;
  }
  .news-title { font-size: 2rem; margin-bottom: 0.2em; color: #208200;}
  .news-meta { color: #676767; font-size: 1.01em; margin-bottom: 1.4em;}
  .news-body { font-size: 1.18em; color: #282828; line-height: 1.72; margin-bottom: 2.1em;}
  .news-actions {
    display: flex; gap: 1.1em; justify-content: center; flex-wrap: wrap;
  }
  .news-btn {
    background: #31917b;
    color: #fff;
    padding: 0.6em 1.25em;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.18s;
  }
  .news-btn:hover { background: #208200; }
  