/* Spicy Cat landing styles */
:root{
  --green:#B8D076;
  --black:#000000;
  --beige:#F4F3F0;
  --wrap: 1240px;
}

/* Fonts */
@font-face{
  font-family:"PP Editorial";
  src:url("../fonts/PPEditorialOld-Regular.otf") format("truetype");
  font-weight:400;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"PP Editorial";
  src:url("../fonts/PPEditorialOld-Italic.otf") format("opentype");
  font-weight:400;
  font-style:italic;
  font-display:swap;
}


@font-face{
  font-family:"PP Editorial";
  src:url("../fonts/PPEditorialOld-Ultralight.otf") format("truetype");
  font-weight:100;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"PP Editorial";
  src:url("../fonts/PPEditorialOld-UltralightItalic.otf") format("opentype");
  font-weight:100;
  font-style:italic;
  font-display:swap;
}
@font-face{
  font-family:"PP Editorial";
  src:url("../fonts/PPEditorialOld-Ultrabold.otf") format("truetype");
  font-weight:600;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"PP Editorial";
  src:url("../fonts/PPEditorialOld-UltraboldItalic.otf") format("opentype");
  font-weight:600;
  font-style:italic;
  font-display:swap;
}


@font-face{
  font-family:"PP Editorial";
  src:url("../fonts/PP-Editorial-Old.ttf") format("truetype");
  font-weight:400;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Basis";
  src:url("../fonts/BasisGrotesqueArabicPro-Regular.ttf") format("truetype");
  font-weight:400;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Basis";
  src:url("../fonts/BasisGrotesqueArabicPro-Bold.ttf") format("truetype");
  font-weight:700;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:"Basis";
  src:url("../fonts/BasisGrotesqueArabicPro-Light.ttf") format("truetype");
  font-weight:300;
  font-style:normal;
  font-display:swap;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  color:var(--black);
  font-family:"Basis", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--green);
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

.wrap{
  width:min(var(--wrap), calc(100% - 64px));
  margin:0 auto;
}

.grid{
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:28px;
  align-items:start;
}
.col{ position:relative; z-index:10; }
.col--left{grid-column: 1 / span 4;}
.col--right{grid-column: 9 / span 4;}












.rail-btn--cima {
  right: 3%;
  top: 24px;
  position: fixed;
  z-index: 10001;
  transform: none;
  transform-origin: center;
  border: 1px solid rgba(0,0,0,.7);
  border-radius: 999px;
  padding: 10px 25px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: transparent;
  text-decoration: none;
  color: #111;
}

.wine-menu {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: #bdd57a;
  z-index: 59;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .45s ease, visibility .45s ease;
  font-family: "PP Editorial", serif;
}

.wine-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.wine-menu__inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1.15fr 1fr .9fr;
    align-items: flex-start;
    padding: 60px 70px;
    gap: 40px;
}
.wine-menu__col.wine-menu__left, .wine-menu__col.wine-menu__right {
    padding-top: 160px;
}
.wine-menu__col {
  position: relative;
  z-index: 2;
}

.wine-menu__eyebrow {
    display: inline-block;
    margin-bottom: 34px;
    line-height: 17px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(0,0,0,.85);
    font-family: "Basis", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.wine-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wine-menu__item {
  position: relative;
  margin: 0;
  line-height: .95;
}

.wine-menu__item + .wine-menu__item {
  margin-top: 8px;
}

.wine-menu__link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #111;
    font-size: 99px;
    line-height: 119px;
    font-weight: 300;
    letter-spacing: -.03em;
    transition: opacity .3s ease, transform .3s ease;
    font-family: "PP Editorial", serif;
}
.wine-menu__item--active .wine-menu__link {
  font-style: italic;
}

.wine-menu__item--soon .wine-menu__link::after {
    content: attr(data-soon);
    position: absolute;
    left: calc(100% + 20px);
    top: 0%;
    width: 68px;
    font-size: 24px;
    letter-spacing: 1px;
    line-height: 25px;
    /* white-space: nowrap; */
    opacity: 0;
    transition: opacity .3s ease, transform .3s ease;
    font-style: italic;
    font-family: "PP Editorial", serif;
}

.wine-menu__item--soon:hover .wine-menu__link::after {
  opacity: 1;
}

.wine-menu__item--soon:hover .wine-menu__link {
  opacity: 1;
}

.wine-menu__center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.wine-menu__bottle {
  display: block;
  max-height: 78vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 10px rgba(0,0,0,.18));
}
.wine-menu__socials a i {
  font-size: 14px;
  line-height: 1;
}
.wine-menu__right {
  justify-self: start;
  max-width: 320px;
}

.wine-menu__contact p {
    margin: 0 0 28px;
    color: #111;
    font-size: 29px;
    line-height: 40px;
    font-family: "PP Editorial", serif;
    font-weight: 300;
}

.wine-menu__contact a {
  color: inherit;
  text-decoration: none;
  font-family: "PP Editorial", serif;
}

.wine-menu__socials {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.wine-menu__socials a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #111;
  color: #bdd57a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  font-family: "PP Editorial", serif;
}

body.wine-menu-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .wine-menu__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    align-items: start;
    padding: 80px 24px 32px;
    gap: 24px;
    overflow-y: auto;
  }
.wine-menu__link {
    line-height: 70px;
}
  .wine-menu__left {
    order: 1;
  }
.wine-menu__col.wine-menu__left, .wine-menu__col.wine-menu__right {
    padding-top: 25px;
}
  .wine-menu__center {
    order: 2;
    min-height: 320px;
  }

  .wine-menu__right {
    order: 3;
    max-width: 100%;
  }

  .wine-menu__link {
    font-size: clamp(34px, 9vw, 58px);
  }

  .wine-menu__item--soon .wine-menu__link::after {
    opacity: .75;
    font-size: 14px;
    line-height: 16px;
  }

  .wine-menu__bottle {
    max-height: 46vh;
  }
}






































/* Header */
.site-header{
  /* position:fixed; */
  top:0;
  left:0;
  right:0;
  z-index:100;
  padding:22px 0;
  pointer-events:none;
  z-index: 1;
}
.site-header .brand{ pointer-events:auto; display:inline-block; }
.logo {
    height: auto;
    width: 94%;
    z-index: 1;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 30%);
}
.logo--mobile{display:none;}

/* Right rail */
.rail-btn{
  position:fixed;
  right:22px;
  top:50%;
  transform:translateY(-50%) rotate(90deg);
  transform-origin:center;
  z-index:120;
  border:1px solid rgba(0,0,0,.7);
  border-radius:999px;
  padding:10px 16px;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  background:transparent;
}
.rail-btn--down{
  top:auto;
  bottom: 108px;
  right: 17px;
  z-index: 3;
}
.rail-btn--top{
  top: auto;
  bottom: 860px;
  transform:rotate(90deg);
  display:none;
  position: absolute;
}



/* Fixed bottle (green only) */
.bottle-fixed{
  position:fixed;
  left:50%;
  top:5%;
  transform:translateX(-50%);
  width:380px;
  z-index:60;
  pointer-events:none;
  opacity:1;
  /* z-index: 3; */
  transition:opacity .25s ease;
}

@media  (max-width:2560px){
  .bottle-fixed {
    top: 12%;
}
}

.bottle-fixed.is-hidden{ opacity:0; }

/* Zones */
.zone{ position:relative; overflow:hidden; }
.zone--green{
  background:var(--green);
  padding-top:120px;
  padding-bottom:280px;
}
.zone--beige{
  background-color: transparent;
  z-index: 90;
  background-image: url(../img/composixao-footer.png),
        linear-gradient(
            to top,
            var(--beige) 0%,
            var(--beige) 80%,
            rgba(244,243,240,0) 81%
        );
  background-size: contain, 100% 100%;
  background-repeat: no-repeat, no-repeat;
  background-position: top center,bottom center;
}

/* HERO */
.hero{ position:relative; min-height:980px; }
.big-title{
  font-family:"PP Editorial", serif;
  font-weight:400;
  letter-spacing:-0.02em;
  line-height:.85;
  font-size:200px;
  margin:0;
  padding:10px 40px 0;
  display:flex;
  justify-content:space-between;
  position:relative;
  z-index:20;
  display: none;
}
.hero .grid{
  position: relative;
  top: 47vh;
  transform: translateY(-50%);
}
.big-title__word{ display:block; }
.headline{
  font-family:"PP Editorial", serif;
  font-weight: 100;
  font-size:36px;
  line-height: 1.25;
  margin:0 0 14px;
  margin-bottom: 55px;
}
.headline em{ font-style:italic; }
.body{
  font-size: 20px;
  line-height:1.35;
  margin:0;
  max-width: 317px;
}

/* Content sections spacing */
.content-block{ padding:120px 0 0; }
.content-block--right{ padding-top:190px; }
.content-block--photo{ padding-top:120px; }
.content-block--bottom{padding-top: 260px;padding-bottom:40px;}

/* Photo + stamp */
.photo-stack{position:relative;width: 360px;}
.photo{ width:100%; border-radius:2px; }
.badge{
  position: absolute;
  left: -84px;
  bottom: 44px;
  width: 165px;

  animation: rotate 12s linear infinite;
}

@keyframes rotate{
  from{
    transform: rotate(0deg);
  }
  to{
    transform: rotate(360deg);
  }
}


/* Big statement */
.statement{
  padding:190px 0 0;
  position:relative;
  z-index:20;
}
.statement__text{
  font-family:"PP Editorial", serif;
  font-weight: 100;
  font-size: 9vw;
  line-height: 1.08;
  letter-spacing:-0.02em;
  margin:0;
  text-align:center;
    white-space: nowrap;
    width: max-content;
    animation: marquee 800s linear infinite;
}

  @keyframes marquee{
    0%{
      transform: translateX(0);
    }

    100%{
      transform: translateX(-100%);
    }
  }

.statement__text em{ font-style:italic; }

/* Bottom vineyard image */
.vine{
  width: 290px;
  margin-left:auto;
  margin-top:140px;
  border-radius:2px;
}

/* Wave */
.wave img{
  width:100%;
  height:auto;
  display:block;
}

/* Footer top */
.footer-top{
  padding:120px 0 0;
  position:relative;
  z-index:110;
  text-align:center;
}
.footer-middle{
  /* background: var(--beige); */
  position: relative;
  z-index: 3;
  width: auto;
  padding-top: 275px;
}
.footer-title{
  font-family: "PP Editorial", sans-serif;
  font-weight: 100;
  font-size: 99px;
  line-height:.9;
  margin: 430px 0 12px;
}
.footer-copy{
  margin:0 auto;
  font-size: 44px;
  line-height:1.5;
  max-width: 100%;
  width: 736px;
  font-weight: 100;
  margin-top: 73px;
  font-family: 'PP Editorial';
}

/* CTA block on left like preview */
.footer-cta{
  margin: 0px auto 0;
  width:min(var(--wrap), calc(100% - 64px));
  display:flex;
  align-items: flex-start;
  justify-content:flex-start;
  gap: 24px;
  flex-direction: column;
}
.cta-copy{
  font-family:"PP Editorial", serif;
  font-weight: 100;
  font-size: 44px;
  line-height: 1.25;
  margin:0;
  text-align:left;
}
.cta-copy em{ font-style:italic; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:10px 16px;
  border:1px solid rgba(0,0,0,.65);
  background:transparent;
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  cursor:pointer;
  color: var(--black);
}
.btn:hover{ background:rgba(0,0,0,.06); }

/* Footer bottle + big type */
.footer-bottle{
  position:relative;
  z-index:105;
  display:flex;
  justify-content:center;
  margin-top:40px;
  background: var(--beige);
  padding-top: 300px;
  margin-top: -510px;
  z-index: 2;
}
.footer-bottle img{width:380px;/* position: relative; *//* z-index: 9999; */}

.footer-bigtype{
  position:relative;
  z-index:100;
  padding:0 0 20px;
  background: var(--beige);
}
.footer-bigtype__row{
  text-align:center;
  position: absolute;
  bottom: 50px;
  z-index: -1;
  width: 100%;
}
.footer-bigtype__row .logo-footer{
  width: 94%;
  margin: auto;
}

/* Site footer */
.site-footer{
  position:relative;
  z-index:130;
  padding:18px 0 26px;
  background: var(--beige);
}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  font-size:11px;
  letter-spacing:.06em;
  text-transform:uppercase;
  width: 94%;
}
.footer-right{display:flex;gap:22px;justify-content: space-between;padding-top: 30px;}
.footer-link{ opacity:.9; }
.footer-link:hover{ opacity:1; text-decoration:underline; }

/* Modal */
.modal{
  position:fixed;
  inset:0;
  z-index:300;
  display:none;
}
.modal.is-open{ display:block; }
.modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.35);
}
.modal__panel{
  position:relative;
  width:min(680px, calc(100% - 32px));
  margin:80px auto 0;
  background:var(--beige);
  border-radius:18px;
  padding:28px 26px 22px;
  box-shadow:0 20px 50px rgba(0,0,0,.25);
}
.modal__close{
  position:absolute;
  top:10px;
  right:14px;
  font-size:28px;
  line-height:1;
  background:transparent;
  border:0;
  cursor:pointer;
  color: var(--black);
}
.modal__title{
  font-family:"PP Editorial", serif;
  font-size:40px;
  margin:0 0 10px;
  font-weight:400;
}
.modal__text{ margin:0; font-size:14px; line-height:1.55; }
.modal__actions{ margin-top:18px; display:flex; justify-content:flex-end; }

/* =========================
   TECH SHEET POPUP (preview-popup)
========================= */

.modal.modal--sheet { z-index: 9999; }

.modal__backdrop{
  background: rgba(0,0,0,.0); /* no preview parece ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œsem dark overlayÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â */
}

/* Painel full-bleed verde */
.modal__panel.modal__panel--sheet{
  width: calc(100% - 0px);
  height: calc(100% - 0px);
  margin: 0px auto;
  background: var(--green);
  border-radius: 0;              /* preview ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â© ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œtela cheiaÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â */
  padding: 0;
  box-shadow: none;
  overflow: hidden;
}

/* BotÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¾ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â¦ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â£o close circular (top right) */
.modal__close.modal__close--round{
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 41px;
  line-height: 0.1;
  display: grid;
  place-items: center;
  z-index: 10;
  font-weight: 100;
  font-family: sans-serif;
  padding-top: 0px;
  padding-left: 7px;
  color: var(--black);
}

/* Grid 3 colunas (left / center / right) */
.sheet{
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  gap: 28px;
  padding: 70px 56px 56px;
}

/* Left kicker */
.sheet__kicker{
  font-family: "PP Editorial", serif;
  font-weight: 100;
  font-size: 44px;
  line-height: 1.25;
  margin: 0;
  margin-left: 40%;
}
.sheet__kicker em{ font-style: italic; }

/* Center big word + bottle */
.sheet__center{
  position: relative;
  height: 100%;
  display: grid;
  place-items: center;
}

.sheet__bigtype{
  position: absolute;
  bottom: 20px;
  font-family: "PP Editorial", serif;
  font-weight: 400;
      /* ajusta se precisa */
  z-index: 1;
  pointer-events: none;
  width: 100%;
}

.sheet__bottle{
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: -50px;
  text-align: center;
}
.sheet__bottle img{
  width: 426px;
  height: 100vh;
  margin: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: drop-shadow(0 18px 18px rgba(0,0,0,.18));
}

/* Right column */
.sheet__title{
  font-family: "PP Editorial", serif;
  font-weight: 100;
  font-size: 54px;
  line-height: 1.25;
  margin: 10px 0 18px 0;
}

.sheet__cols{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-top: 4px;
}

.kv{ margin-bottom: 18px; }
.kv__k{
  font-family: "Basis", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.kv__v{
  font-family: "Basis", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.45;
  max-width: 260px;
}

.footer-left{
    display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding-top: 30px;
}


.sheet__bigtype .logo-pop{
  width: 95%;
}

/* Responsivo */
@media (max-width: 1100px){
  .sheet{
    grid-template-columns: 1fr;
    padding: 64px 18px 18px;
    gap: 22px;
    overflow: auto;
  }
  .sheet__center{ order: 2; min-height: 360px; }
  .sheet__right{ order: 3; }
  .sheet__bigtype{
    font-size: 160px;
    top: 74%;
  }
  .sheet__bottle{ width: min(420px, 78vw); margin-top: 0; }
  .sheet__cols{ grid-template-columns: 1fr; gap: 18px; }
  .sheet__kicker{ font-size: 34px; }
  .sheet__title{ font-size: 44px; }
}
/* =========================================================
   RESPONSIVE a partir de 1100px
   - 1100px: ajustes Ã¢â‚¬Å“tablet/compactÃ¢â‚¬Â
   - 991px: entra o mobile (strip ao centro como preview-mobile)
   - popup mobile: sÃƒÂ³ coluna direita visÃƒÂ­vel
========================================================= */

/* 1100 -> abaixo: compactar sem mudar para Ã¢â‚¬Å“stripÃ¢â‚¬Â ainda */
@media (max-width: 1100px){
  .wrap{ width:min(var(--wrap), calc(100% - 48px)); }

  /* grid mais Ã¢â‚¬Å“apertadaÃ¢â‚¬Â */
  .grid{ gap:20px; }

  /* colunas um pouco mais largas */
  .col--left{ grid-column: 1 / span 5; }
  .col--right{ grid-column: 8 / span 5; }

  /* ajustes gerais de escala */
  .bottle-fixed{ width:300px; }
  .headline{ font-size:32px; }
  .body{ font-size:18px; }

  .statement__text{ font-size: 9.5vw; }

  .footer-title{ font-size:82px; }
  .footer-copy{ font-size:34px; width: 640px; }

  /* rail */
  .rail-btn--down{ right:14px; }
}


/* 991 -> abaixo: MOBILE Ã¢â‚¬Å“strip ao centroÃ¢â‚¬Â como preview-mobile */
@media (max-width: 991px){
.footer-left{
  justify-content: center;
  gap: 25px;
}
.rail-btn--cima {
    right: 20px;
}
.logo {
    transform: translate(-50%, 15%);
}
  body{
    background: var(--green); /* Ã¢â‚¬Å“margensÃ¢â‚¬Â brancas fora do strip */
  }

  /* O strip central: aplica ao green e ao beige */
  .zone{
    width: 100%;              /* largura do strip (ajusta se quiseres) */
    max-width: calc(100% - 0px);
    margin: 0 auto;
    overflow: hidden;
  }

  .zone--green{
    padding-top: 110px;
    padding-bottom: 220px;
    background: var(--green);
    padding-left: calc(50% + 24px);
  }

  .zone--beige{
    /* mantÃƒÂ©m o que jÃƒÂ¡ tens (imagem + gradiente), sÃƒÂ³ garantimos que segue o strip */
    background-position: top center, bottom center;
    background-image: url(../img/composixao-footer.png),        linear-gradient(            to top,            var(--beige) 0%,            var(--beige) 95%,            rgba(244,243,240,0) 95%        );
    background-position: top center,bottom center;
  }

  /* Header / Logos */
  .logo{ position: relative; width: 100%; margin-left: 0; }
  .logo--desktop{ display:none; }
  .logo--mobile{ display:block; }

  .site-header{
    padding: 18px 0;
    width: 100%;
    max-width: calc(100%);
    margin: 0 auto;
    background: transparent;
    padding-left: 24px;
    position: fixed;
    z-index: 60;
  }

  /* Garrafa fixa no mobile (centrada no strip) */
  .bottle-fixed{
    left: 24px;
    transform: translateX(0%);
    width: 50%;
    top: 175px;
    max-height: 80vh;
  }
  .bottle-fixed img{
    object-fit: contain;
    object-position: left;
    height: 80vh;
    width: auto;
  }

  /* Oculta rails (no preview mobile nÃƒÂ£o aparecem) */
  .rail-btn{ display:none !important; }

  /* ConteÃƒÂºdo vira 1 coluna */
  .wrap{
    width: calc(100% - 32px);
  }
  .grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .col--left, .col--right{ grid-column: 1 / -1; }

  .hero{ min-height: 760px; }
  .hero .grid{
    top: 23vh;
    transform: translateY(-50%);
  }

  .headline{
    font-size: 26px;
    margin-bottom: 22px;
  }
  .body{
    font-size: 16px;
    max-width: 100%;
  }

  .content-block{ padding-top: 120px; }
  .content-block--right{ padding-top: 220px; }
  .content-block--bottom{ padding-top: 220px; }

  .photo-stack{width: 100%;}
  .badge{width: 70%;left: inherit;bottom: 0px;position: relative;margin-left: auto;margin-top: 70px;}

  .statement{padding-top: 140px;width: 200%;margin-left: -50vw;}
  .statement__text{ font-size: 78px; line-height: 1.02; }

  .vine{width: 100%;margin: 34px auto 0;}

  /* Footer mobile */
  .footer-top{padding-top: 90px;}
  .footer-title{
    font-size: 54px;
    margin: 320px 0 10px;
    background: transparent;
  }
  .footer-copy{
    font-size: 18px;
    width: 100%;
    margin-top: 24px;
    line-height: 1.55;
  }
  .footer-cta{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: auto;
    width: 100%;
  }
  .footer-cta br{
    display: none;
  }
  .footer-cta em{
    padding-left: 10px;
  }
  .footer-bigtype__row .logo-footer{
    display: none;
  }

  .footer-middle{padding-top: 0px;text-align: center;position: absolute;bottom: 0px;padding-bottom: 200px;width: 100%;}
  .cta-copy{font-size: 32px;text-align: center;width: 300px;max-width: 100%;}
  .footer-bottle{padding-top: 0px;margin-top: -200px;background: var(--beige);}
  .footer-bottle img{width: 280px;margin-top: 300px;padding-bottom: 270px;}

  .site-footer{
    text-align: center;
    width: 100%;
    background: var(--green);
    padding-top: 50px;
    padding-bottom: 20px;
  }
  .footer-bottom{
    flex-direction: column;
    align-items: stretch;
    display: flex;
    gap: 10px;
    width: calc(100% - 32px);
    align-content: space-between;
  }


  /* =========================
     POPUP (mobile): sÃƒÂ³ coluna direita
     ========================= */

  .modal__panel.modal__panel--sheet{
    width: 100%;
    height: 100%;
    margin: 0;
  }

  /* ocultar esquerda/centro/bigtype */
  .sheet__left,
  .sheet__center,
  .sheet__bigtype{
    display: none !important;
  }

  /* sheet vira 1 coluna (sÃƒÂ³ right) */
  .sheet{
    grid-template-columns: 1fr !important;
    padding: 78px 18px 18px !important;
    gap: 0 !important;
    overflow: auto;
  }

  .sheet__right{
    display:block;
  }

  .sheet__title{
    font-size: 44px;
    margin-bottom: 16px;
  }

  .sheet__cols{
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }

  .kv__v{ max-width: 100%; }

  .modal__close.modal__close--round{
    top: 14px;
    right: 14px;
  }
}




@media (max-width:509px){
  .footer-left {
    flex-direction: column;
    gap: 10px;
}

.site-footer {
    padding-top: 0px;
}
}

@media (max-width: 450px) {
.footer-left {
    gap: 10px;
    display: flex;
    flex-direction: column;
}

    .footer-title {
        font-size: 54px;
        margin: 200px 0 10px;
        background: transparent;
    }
      .statement__text {
        white-space: nowrap;
    }
    .headline br{
      display: none;
    }
    .zone--beige {
        background-position: top center, bottom center;
        background-image: url(../img/composixao-footer.png), linear-gradient(to top, var(--beige) 0%, var(--beige) 95%, rgba(244, 243, 240, 0) 95%);
        background-position: top right, bottom center;
        background-size: 140%;
    }
    .hero .grid {
        top: 270px;
        transform: translateY(-50%);
    }
    .bottle-fixed {
        top: 120px;
    }
    .footer-bottle img {
        width: 250px;
    }

    .modal__close.modal__close--round {
      
        font-size: 30px;
        line-height: 40px;
  }

  .statement__text{
    white-space: nowrap;
    width: max-content;
    animation: marquee 300s linear infinite;
    font-size: 64px;
  }

  @keyframes marquee{
    0%{
      transform: translateX(0);
    }
    100%{
      transform: translateX(-100%);
    }
  }

}
@media (max-width: 390px) {
    .headline {
        font-size: 22px;
    }
    .body {
        font-size: 14px;
    }

}
