.elementor-13 .elementor-element.elementor-element-48836b3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-13 .elementor-element.elementor-element-e395d77{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-13 .elementor-element.elementor-element-b082363{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-13 .elementor-element.elementor-element-7f86ba7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-13 .elementor-element.elementor-element-babc964{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-13 .elementor-element.elementor-element-d0d5eca{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-13 .elementor-element.elementor-element-d0d5eca:not(.elementor-motion-effects-element-type-background), .elementor-13 .elementor-element.elementor-element-d0d5eca > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F5F6F8;}.elementor-13 .elementor-element.elementor-element-fdcf1c2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-13 .elementor-element.elementor-element-fdcf1c2:not(.elementor-motion-effects-element-type-background), .elementor-13 .elementor-element.elementor-element-fdcf1c2 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:transparent;background-image:linear-gradient(180deg, #F6F8F7 0%, #EEF2EF 100%);}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-e80064c */:root{
  --wine: #7b3431;
  --text: #111;
  --muted: #5f6b7a;
  --border: #e5e7eb;
  --bg-card: #ffffff;
}

.hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fafafa;
}

/* Background pattern */
.hero-pattern{
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(123,52,49,.08), transparent 60%);
  z-index: 0;
}

/* Grid overlay */
.hero-grid{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0,0,0,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

/* Decorative blurs */
.blur{
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .15;
  background: var(--wine);
  z-index: 0;
}

.blur-right{
  width: 420px;
  height: 420px;
  top: 20%;
  right: -120px;
}

.blur-left{
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -80px;
}

/* Container */
.hero-container{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

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

/* Text */
.hero-content h1{
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.15;
  font-weight: 800;
  color: var(--text);
}

.hero-content .highlight{
  color: var(--wine);
}

.hero-content p{
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 520px;
}

/* Buttons */
.hero-actions{
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn{
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}

.btn-primary{
  background: var(--wine);
  color: #fff;
}

.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(123,52,49,.25);
}

.btn-outline{
  border: 2px solid var(--wine);
  color: var(--wine);
  background: transparent;
}

.btn-outline:hover{
  background: var(--wine);
  color: #fff;
}

/* Indicators */
.hero-indicators{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.indicator{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.indicator:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0,0,0,.1);
}

.indicator .icon{
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(123,52,49,.1);
  color: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.indicator span{
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

/* Responsive */
@media (max-width: 900px){
  .hero-grid-content{
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-indicators{
    padding-bottom: 40px;
  }
}
/* ===== Fix responsivo sem mudar o visual ===== */

/* iOS/Android: evita corte por 100vh */
.hero{
  min-height: 100svh; /* fallback moderno */
}
@supports (min-height: 100dvh){
  .hero{ min-height: 100dvh; }
}

/* Impede overflow do grid e dos textos */
.hero-grid-content{
  min-width: 0;
}
.hero-content{
  min-width: 0;
}
.hero-content h1{
  overflow-wrap: anywhere;
  word-break: normal;
}

/* No mobile, permitir quebra do trecho que está em nowrap */
@media (max-width: 600px){
  .hero-content .nowrap{
    white-space: normal;
  }
}

/* Ajustes de layout no mobile */
@media (max-width: 900px){
  .hero{
    align-items: flex-start;   /* evita cortar topo */
    padding-top: 96px;         /* espaço pro header fixo */
    padding-bottom: 48px;
  }

  .hero-container{
    padding: 0 18px;
  }

  .hero-content p{
    max-width: 100%;
  }
}

/* Botões: no mobile ocupam a largura e ficam bonitos */
@media (max-width: 520px){
  .hero-actions{
    gap: 12px;
  }
  .hero-actions .btn{
    width: 100%;
  }
}

/* Indicadores: garante que não “estoure” e melhora espaçamento */
@media (max-width: 900px){
  .indicator{
    padding: 18px 18px;
  }
  .indicator span{
    font-size: 16px;
  }
  .indicator .icon{
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}

/* Blurs no mobile: reduz para não “invadir” a tela */
@media (max-width: 600px){
  .blur-right{
    width: 320px;
    height: 320px;
    right: -160px;
    top: 10%;
  }
  .blur-left{
    width: 240px;
    height: 240px;
    left: -120px;
    bottom: -120px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-209cb0f */:root{
  --wine: #7b3431;
  --text: #0f172a;
  --muted: #5f6b7a;
  --border: #e5e7eb;
  --card: #ffffff;
  --bg: #f6f7f9;
}

.about{
  background: var(--bg);
  padding: 90px 0;
}

.about-container{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-top{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: start;
}

.about-copy h2{
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 18px 0;
  letter-spacing: -0.02em;
}

.about-copy p{
  margin: 0 0 14px 0;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 640px;
}

.about-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .06);
}

.about-card__header{
  font-weight: 800;
  color: var(--text);
  font-size: 16px;
  margin: 6px 0 14px 0;
}

.about-card__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}

.info{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 10px;
  border-radius: 12px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.info:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, .06);
  background: #fafafa;
}

.info-icon{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(123,52,49,.10);
  color: var(--wine);
  flex-shrink: 0;
  font-size: 18px;
}

.info-label{
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 4px;
}

.info-value{
  font-size: 14px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.25;
}

.about-bottom{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}

.about-box{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .05);
  position: relative;
  overflow: hidden;
}

.about-box::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--wine);
  opacity: .9;
}

.about-box h3{
  margin: 0 0 10px 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
}

.about-box p{
  margin: 0 0 12px 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15.5px;
}

.about-box p:last-child{
  margin-bottom: 0;
}

/* Responsivo */
@media (max-width: 980px){
  .about-top{
    grid-template-columns: 1fr;
  }

  .about-card__grid{
    grid-template-columns: 1fr;
  }

  .about-bottom{
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-4343b7e */.services{
  padding: 96px 0;
  background: #ffffff;
}

.services-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.services-header{
  text-align: center;
  margin-bottom: 64px;
}

.services-header h2{
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.services-header p{
  font-size: 17px;
  color: #667085;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Grid */
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.service-card{
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 28px;
  background: #ffffff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15,23,42,.08);
  border-color: rgba(123,52,49,.3);
}

/* Ícone */
.service-icon{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(123,52,49,.10);
  color: #7b3431;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 22px;
}

/* Texto */
.service-card h3{
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.service-card p{
  font-size: 15.5px;
  line-height: 1.7;
  color: #667085;
}

/* Responsivo */
@media (max-width: 1024px){
  .services-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px){
  .services-grid{
    grid-template-columns: 1fr;
  }

  .service-card{
    padding: 28px 24px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e23a312 */:root{
  --wine:#7b3431;
  --text:#0f172a;
  --muted:#667085;
  --border:#e6e8ee;
  --card:#ffffff;
  --bg:#f6f7f9;
}

.work-pattern{
  background: #ffffff;
  padding: 96px 0;
}

.work-pattern__container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.work-pattern__grid{
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}

/* VISUAL */
.work-visual{
  display: flex;
  justify-content: center;
}

.work-visual__frame{
  position: relative;
  width: min(460px, 100%);
  aspect-ratio: 1 / 1;
}

.work-visual__layer{
  position: absolute;
  inset: 0;
  border-radius: 26px;
  border: 2px solid rgba(123,52,49,.18);
  background: transparent;
}

.work-visual__layer--a{
  transform: rotate(3deg);
  opacity: .65;
}

.work-visual__layer--b{
  inset: 14px;
  transform: rotate(-2deg);
  border-color: rgba(123,52,49,.12);
  opacity: .9;
}

.work-visual__card{
  position: absolute;
  inset: 28px;
  border-radius: 18px;
  border: 1px solid rgba(123,52,49,.10);
  background: linear-gradient(135deg, rgba(123,52,49,.06), rgba(123,52,49,.10));
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-visual__content{
  text-align: center;
  padding: 24px;
}

.work-visual__big{
  font-size: clamp(52px, 5vw, 72px);
  font-weight: 900;
  color: var(--wine);
  letter-spacing: -0.03em;
  line-height: 1;
}

.work-visual__small{
  margin-top: 10px;
  font-size: 18px;
  color: var(--muted);
}

/* CONTEÚDO */
.work-content__title{
  margin: 0 0 12px 0;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
}

.work-content__subtitle{
  margin: 0 0 26px 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 640px;
}

/* LISTA */
.work-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.work-item{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.work-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15,23,42,.08);
  border-color: rgba(123,52,49,.22);
}

.work-item span:last-child{
  font-size: 16px;
  color: var(--text);
  font-weight: 650;
}

/* Check */
.work-check{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(123,52,49,.10);
  color: var(--wine);
  font-weight: 900;
  flex-shrink: 0;
}

/* Responsivo */
@media (max-width: 980px){
  .work-pattern__grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .work-visual{
    order: 2;
  }

  .work-visual__frame{
    width: min(420px, 100%);
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5f5b0b7 */:root{
  --wine:#7b3431;
  --text:#0f172a;
  --muted:#667085;
  --border:#e6e8ee;
  --card:#ffffff;
  --bg:#ffffff;
}

/* RESET LOCAL (evita quebra estranha) */
.location,
.location *{
  box-sizing: border-box;
}

.location{
  background: var(--bg);
  padding: 96px 0;
}

.location__container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.location__header{
  text-align: center;
  margin-bottom: 64px;
}

.location__header h2{
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  color: var(--text);
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}

.location__header p{
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}

/* GRID — isso é o que estava quebrando */
.location__grid{
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 32px;
  align-items: stretch;
}

/* CARD */
.location-card{
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 28px rgba(15,23,42,.06);
}

/* Ícone */
.location-card__icon{
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(123,52,49,.08);
  color: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

/* Título EXATAMENTE como no print */
.location-card h3{
  margin: 0 0 18px 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* Endereço */
.location-card__address p{
  margin: 0 0 10px 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}

.location-card__address .strong{
  color: var(--text);
  font-weight: 700;
}

/* Botão — flat, sem pulo */
.location-card__btn{
  margin-top: 32px;
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 2px solid var(--wine);
  background: transparent;
  color: var(--wine);
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: background .2s ease, color .2s ease;
}

.location-card__btn:hover{
  background: var(--wine);
  color: #ffffff;
}

/* MAPA — preso à altura do card */
.location-map{
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(15,23,42,.06);
  display: flex;
}

.location-map iframe{
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
}

/* RESPONSIVO — igual ao print */
@media (max-width: 980px){
  .location__grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .location-card{
    padding: 28px;
  }

  .location-map iframe{
    min-height: 320px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-22e643d */:root{
  --wine:#7b3431;
  --text:#0f172a;
  --muted:#667085;
  --border:#e6e8ee;
  --card:#ffffff;
  --alt:#f6f7f9;
}

.contact{ background: var(--alt); padding: 96px 0; }
.contact, .contact *{ box-sizing: border-box; }

.contact__container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact__header{
  text-align: center;
  margin-bottom: 64px;
}

.contact__header h2{
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  color: var(--text);
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}

.contact__header p{
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 620px;
  margin-inline: auto;
}

/* GRID central como no print */
.contact__grid{
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 34px 30px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(15,23,42,.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.contact-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(15,23,42,.08);
  border-color: rgba(123,52,49,.22);
}

/* Badge do ícone */
.contact-badge{
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(123,52,49,.10);
  color: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
}

.contact-badge svg{
  width: 30px;
  height: 30px;
}

.contact-card h3{
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.01em;
}

.contact-meta{
  font-size: 15.5px;
  color: var(--muted);
  margin-bottom: 22px;
}

.contact-meta--break{
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* Botões */
.contact-btn{
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.contact-btn .btn-ico{
  width: 18px;
  height: 18px;
}

/* WhatsApp preenchido vinho com sombra */
.contact-btn--primary{
  background: var(--wine);
  color: #fff;
  box-shadow: 0 16px 28px rgba(123,52,49,.22);
}

.contact-btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(123,52,49,.26);
}

/* E-mail outline vinho */
.contact-btn--outline{
  background: transparent;
  border: 2px solid var(--wine);
  color: var(--wine);
}

.contact-btn--outline:hover{
  background: var(--wine);
  color: #fff;
}

/* Responsivo */
@media (max-width: 820px){
  .contact__grid{
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 520px;
  }

  .contact-card{
    padding: 30px 24px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-66ee0df *//* NÃO use :root para o footer. Use variáveis só no footer */
.monte-footer{
  --wine:#7b3431;
  --wine-soft:#a35a56;

  /* fundo complementar CLARO ao vinho */
  --bg-main:#eef2ef;   /* verde acinzentado claro */
  --bg-alt:#f6f8f7;    /* quase branco com fundo frio */

  --text:#1f2933;
  --muted:#4b5563;
  --line:rgba(0,0,0,.08);

  background:
    radial-gradient(600px 280px at 10% -20%, rgba(123,52,49,.12), transparent 55%),
    linear-gradient(180deg, var(--bg-alt), var(--bg-main));
  color: var(--text);
  padding: 52px 0 30px;
}

.monte-footer,
.monte-footer *{
  box-sizing: border-box;
}

.monte-footer__container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.monte-footer__top{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 44px;
  align-items:start;
}

/* Logo */
.monte-footer__logo{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
}

.monte-footer__logoImg{
  width: 180px;
  max-width: 100%;
  height: auto;
  display:block;
  filter: none; /* sem efeito estranho */
}

.monte-footer__brandText{
  margin: 14px 0 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
}

.monte-footer__title{
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text);
}

/* Endereço */
.monte-footer__item{
  display:flex;
  gap: 12px;
  align-items:flex-start;
}

.monte-footer__lines{
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* Links */
.monte-footer__link{
  display:flex;
  align-items:flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color .2s ease;
  overflow-wrap: anywhere;
}

.monte-footer__link:hover{
  color: var(--text);
}

/* Ícones */
.monte-footer__ico{
  width: 18px;
  height: 18px;
  color: var(--wine-soft);
  flex-shrink:0;
  margin-top: 2px;
}

.monte-footer__ico svg{
  width: 18px;
  height: 18px;
  display: block;
}

/* Divisor */
.monte-footer__divider{
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  margin: 36px 0 22px;
}

/* Rodapé inferior */
.monte-footer__bottom{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
}

.monte-footer__cnpj{
  color: var(--muted);
  white-space: nowrap;
}

/* Responsivo */
@media (max-width: 980px){
  .monte-footer__top{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .monte-footer__bottom{
    flex-direction: column;
    align-items: flex-start;
  }

  .monte-footer__logoImg{
    width: 160px;
  }
}/* End custom CSS */