/* 
    Document   : txt
    Created on : 16/Janeiro/2026, 17:20:00
    Author     : garedesign
    Description:
        Purpose of the stylesheet follows.
*/

/* =========================
   🔧 RESET GLOBAL MODERNO
========================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}
strong {
    font-weight: bold;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}
*, *:before, *:after {
    box-sizing: inherit;
}


/* =========================
   🌸 VARIÁVEIS GLOBAIS
========================= */
:root {
    --font-body: "Inter", sans-serif;
    --font-heading: "Space Grotesk", sans-serif;

    /*TAMANHOS*/
    --container-max: 1360px;
    --container-max2: 1800px;
    --gutter: 1rem;

    --text-xxs: clamp(12px, 0.8rem, 13px);
    --text-xs: clamp(13px, 0.85rem, 14px);
    --text-sm: clamp(14px, 1rem + 0.1vw, 16px);
    --text-base: clamp(16px, 1.1rem + 0.2vw, 17.6px);
    --line-base: 1.6;
    --font-weight-lg: 600;
    --font-weight-xl: 800;

    /* Hero / destaques */
    --tit1: clamp(38px, 3rem + 2.6vw, 72px);   /* ~4.5rem */
    --tit2: clamp(34px, 2.6rem + 2.2vw, 62px); /* ~3.9rem */

    /* Headings principais */
    --h1: clamp(30px, 2.2rem + 1.6vw, 56px);   /* ~3.3rem */
    --h2: clamp(26px, 1.8rem + 1.3vw, 46px);   /* ~2.6rem */
    --h3: clamp(22px, 1.4rem + 1vw, 36px);    /* ~2.1rem */
    --h4: clamp(19px, 1.2rem + 0.7vw, 30px);  /* ~1.75rem */
    --h5: clamp(18px, 1.1rem + 0.5vw, 24px); /* ~1.5rem */
    --h6: clamp(16px, 1rem + 0.3vw, 20px); /* ~1.25rem */

    /*ESPAÇOS*/
    --space-xs: 0.5rem;  /* 8px */
    --space-sm: 1rem;    /* 16px */
    --space-md: 1.5rem;  /* 24px */
    --space-lg: 2.5rem;  /* 40px */
    --space-xl: 4rem;    /* 64px */
    --space-2xl: 5rem;   /* 80px */
    --space-3xl: 7.5rem; /* 120px */

    /*CORES*/
    --color-text: #25140c;
    /*--color-bg: #f7f5f1;*/
    --color-bg: #fff;
    --color-bg2: #191919;
/*    --color-gold: #E1B768;
    --color-gold2: #b89b72;*/
    
    --color-gold: #F0B84A;
    --color-gold2: #C58A24;
    
    --color-brown-dark: #18100b;
    --color-brown: #241a12;
    --color-brown-light: #34261a;
}


/* =========================
   🧱 BASE
========================= */
html, body {
    font-size: var(--text-base);
    line-height: var(--line-base);
    color: var(--color-text);
    font-family: var(--font-body);
    background-color: var(--color-bg);
}

h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
h4 { font-size: var(--h4); }
h5 { font-size: var(--h5); }
h6 { font-size: var(--h6); }

h1,
h2,
h3,
h4,
h5,
h6{
  font-family: var(--font-heading);
  font-weight: var(--font-weight-lg);
  letter-spacing: -0.04em;
}

/* =========================
   ✍️ HEADINGS
========================= */
h1, h2, h3, h4, h5, h6 {margin-bottom: var(--space-sm); margin-top: var(--space-xs);}

/*h1 { margin-top: var(--space-xl); }
h2 { margin-top: var(--space-lg); }
h3 { margin-top: var(--space-md); }
h4 { margin-top: var(--space-sm); }
h5 { margin-top: var(--space-sm); }
h6 { margin-top: var(--space-xs); }*/

h1 + p,
h2 + p,
h3 + p {
    margin-top: var(--space-sm);
}

p {
    margin-bottom: var(--space-sm);
    line-height: 1.6;
}

/* =========================
   CORES E-COMMERCE
========================= */
.vm-product-title a,
.vm-page-title,
.product-short-description,
.vm-subcategory-title,
.vm-product-s-desc,
.product-related-categories a/*,
.product_s_desc,  
.PricebasePriceWithTax, 
.price-crossed span:last-child*/{
    color: var(--color-text) !important;
}


/* =========================
   Links
========================= */
a{
    color: var(--color-text);
    font-weight: 400;
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
a:hover, a:active {
    color: var(--color-text);
    text-decoration: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}


/* Estrutura INICIO */

/* Define grid areas */
.hg-header {
    grid-area: header;
}
.hg-pesq {
    grid-area: pesq;
}
.hg-main {
    grid-area: main;
}
.hg-left {
    grid-area: esq;
}
.hg-right {
    grid-area: dir;
}
.hg-footer {
    grid-area: footer;
}

.hg {
    display: grid;
    grid-template-areas:
        "header header header"
        "pesq pesq pesq"
        "esq main dir"
        "footer footer footer";

    grid-template-columns: auto 1fr auto;

    grid-template-rows:
        auto
        auto
        1fr
        auto;

    min-height: 100vh;
}

.headermaster, .hg-main{
    padding: 0 2%;
}
.hg-header{
}
.hg-pesq{
}
.hg-main{
}
.hg-left{
}
.hg-right{
}
.hg-footer{
}

/* Estrutura FIM */

.hg-main{
    position: relative;
}
.txt-master{
    width: 100%;
    max-width: var(--container-max);
    margin: 90px auto 0 auto;
    padding: 20px 1%;
}

.meio-master{
    clear: both;
}

.header2{
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    height: 100%;
    padding: 10px 1% 10px 1%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/*.logosite {
    display: block;
    width: 80px;
    height: 90px;
    background: url(../images/logo-b.svg) no-repeat center center;
    background-size: 70px auto;
    transition: all 0.3s;
    z-index: 2;
    position: relative;
    margin-right: 16px;
}*/

/* Só aplica hover em dispositivos com rato */
/*@media (hover: hover) and (pointer: fine) {
    .logosite-gr:hover {
        background-size:90px auto;
    }
}*/


.logosite,
.logosite-gr {
    display: block;
    background: url(../images/logo-b.svg) no-repeat center center;
    margin-right: 16px;
    transition:
        width 0.35s ease,
        height 0.35s ease,
        background-size 0.35s ease,
        margin-right 0.35s ease,
        margin-top 0.35s ease,
        transform 0.35s ease,
        opacity 0.35s ease;
    z-index: 2;
    position: relative;
    will-change: transform, background-size, opacity;
}


/* Logo normal quando faz scroll */
.logosite {
    width: 70px;
    height: 78px;
    background-size: 62px auto;
/*    width: 80px;
    height: 90px;
    background-size: 70px auto;*/
    margin-top: 0;
    transform: scale(1);
}


/* Logo grande no topo */
.logosite-gr {
    width: 125px;
    height: 125px;
    background-size: 100px auto;
    /*margin-right: 24px;*/
    margin-top: 39px;
    transform: scale(1);
    animation: logoGrandeEntrada 0.55s cubic-bezier(.22, 1, .36, 1);
}


/* Hover diminui o logo grande */
@media (hover: hover) and (pointer: fine) {
    .logosite-gr:hover {
        background-size: 90px auto;
        transform: scale(0.96);
    }
}


@keyframes logoGrandeEntrada {
    0% {
        opacity: 0.85;
        transform: scale(0.92) translateY(-6px);
    }

    60% {
        transform: scale(1.04) translateY(0);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}



/*### Topo Opacidade ###*/
/*.banner{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translatez(0);
    transform: translatez(0);
}
.full-opacity{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(17, 0, 8);
    opacity: 0;
}*/

.gradient-footer{
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(17,0,8,0) 30%, #110008 100%);
    z-index: 1;
}

.videotopmaster, .paginimaster{
    position: relative;
}
.videotop{
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    object-fit: cover;
}
.videotop video{
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}


/*### Slideshow CK Pag. Inicial ###*/
.txt-master--slideshow{margin-top:0;}

.slidepagini{
    height: 100vh !important;
}
/*.slidepagini img{
    width: auto;
    height: 100vh !important;
    object-fit: cover;
    margin: auto !important;
}*/
.cameraSlide::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg,rgba(37,20,12,0) 83%,#25140c 111.44%);
    z-index: 1;
}
.cameraSlide::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,rgba(37,20,12,0) 70%,#25140c 111.44%);
}
/*.slidepagini .camera_target{opacity: 0.8;}*/

.slidepagini .camera_caption{
    position: absolute;
    bottom: 13vh;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--container-max2);
}
.slidepagini .camera_caption > div{
    background-color: rgba(0, 0, 0, 0);
}
.slidepagini .camera_caption > div div.camera_caption_title{
    color: #ffffff;
    text-align: left;
    font-size: var(--h3);
    text-shadow: 0 0 40px rgba(0, 0, 0, 1);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    letter-spacing: -0.04em;
    font-weight: var(--font-weight-lg);
}
.slidepagini .cor{
    color: var(--color-gold);
}
.slidepagini .camera_caption > div div.camera_caption_title a{
    font-size: var(--text-base);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 16px 34px;
    border-radius: 5px;
    margin-left: 2%;
    vertical-align: middle;
    letter-spacing:initial;
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
    display: inline-block;
    line-height: initial;
    white-space: nowrap;
}
.camera_wrap a.camera-button{
    font-size: var(--text-base);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    padding: 10px 40px;
    border-radius: 80px;
    margin-top: 20px;
    vertical-align: middle;
    letter-spacing:initial;
    line-height: 1;
}
.slidepagini .camera_caption > div div.camera_caption_title a:hover, .camera_wrap a.camera-button:hover{
    background: var(--color-gold);
    color: var(--color-text);
    transform: translateY(-2px);
}
.slidepagini .camera_caption > div div.camera_caption_desc{
    text-align: left;
    font-size: var(--h5);
    font-weight: 300;
    text-shadow: 0 0 10px rgba(0, 0, 0, 1);
    position: relative;
    max-width: 600px;
}

.slidepagini .camera_caption > div div.camera_caption_desc a{
    color:#e86f75;
}

/*
### Slideshow CK OUTROS ###
.slidepagini-outros .camera_target{
    opacity: 0.8;
}

.slidepagini-outros .camera_caption{
    position: absolute;
    bottom: 60px;
}
.slidepagini-outros .camera_caption > div{
    background-color: rgba(0, 0, 0, 0);
}
.slidepagini-outros .camera_caption > div div.camera_caption_title{
    color: #ffffff;
    text-align: center;
    font-size: 2.5rem;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 0, 0, 1);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    padding-bottom: 5px;
    letter-spacing: 3px;
    font-weight: normal;
}
.slidepagini-outros .camera_caption > div div.camera_caption_desc{
    text-align: center;
    font-size: 1.1rem;
    text-transform: lowercase;
    font-weight: 300;
    text-shadow: 0 0 10px rgba(0, 0, 0, 1);
    position: relative;
}
.slidepagini-outros .camera_caption > div div.camera_caption_desc:before,
.slidepagini-outros .camera_caption > div div.camera_caption_desc:after{
    content: "";
    position: absolute;
    width: 50px;
    height: 5px;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    top:8px;
}
.slidepagini-outros .camera_caption > div div.camera_caption_desc:before{
    margin-left: -60px;
}
.slidepagini-outros .camera_caption > div div.camera_caption_desc:after{
    margin-left: 10px;
}

.slidepagini-outros .camera_caption > div div.camera_caption_desc a{
    color:#e86f75;
}*/



.headermaster{
    background: linear-gradient(0deg,rgba(37,20,12,0) 10%,#25140c 150%);
}

/* Header - estado base */
#headermaster {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index:2;

    transition:
        transform 0.4s cubic-bezier(.4,0,.2,1),
        background 0.4s ease,
        backdrop-filter 0.4s ease,
        box-shadow 0.4s ease,
        padding 0.4s ease;
}

/* Header - escondido */
#headermaster.hide {
    transform: translateY(-100%);
}

/* Header - quando faz scroll */
#headermaster.scrolled {
    background: rgba(24,24,24,1);
/*    background: rgba(30,21,15,0.9);*/
}

/****** MENU ******/
.menu a{
    padding: 0 5px;
}
.menu a, .dj-mobile-light a{
    font-size: var(--text-base) !important;
    color: white !important;
    font-weight: 300;
}

.menu li ul> li > a{
    color: #000 !important;
}

.menu a.active, .dj-mobileitem.active > a, .menu a:hover{
    color: var(--color-gold) !important;
}

.menu .dj-mobile-open-btn, 
.menu .dj-mobile-open-btn.active{
    background:none !important;
}
.menu .dj-mobile-open-btn span{
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transform: scaleY(0.7);
    transition: color 0.3s ease;
    color: rgba(226, 227, 228, 1);
}
.menu .dj-mobile-open-btn span:hover{
    color: rgba(198, 199, 201, 1);
    background: none;
}

.dj-megamenu-modern li ul.dj-submenu > li > a:hover, .dj-megamenu-modern li ul.dj-submenu > li > a.active{
    background: none;
    border-radius: 1rem;
}
.dj-megamenu-modern li div.dj-subwrap .dj-subwrap-in{
    border-radius: 1rem;
}

.dj-megamenu-modern li a.dj-up_a{
    padding-left: 10px;
    padding-right: 20px;
}
.dj-megamenu-modern li a.dj-up_a > span.dj-drop{
    padding-right: 15px;
}


.dj-megamenu-modern li a.dj-up_a.destaque > span span.name{
    font-size: var(--text-xs);
    padding: .35em .65em;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: .25em;
    background-color: rgba(255, 250, 201, 1);
    color: rgba(3, 3, 3, 1);
}

.dj-megamenu-modern li a.dj-up_a span.dj-badge, 
.dj-megamenu-modern li ul > li > a span.dj-badge, 
ul.dj-mobile-light li.dj-mobileitem > a span.dj-badge{
    font-size: var(--text-xxs);
    vertical-align: top;
    font-weight: normal;
    text-transform: none;
    margin-left: 5px !important;
}
/* reset nos badges */
.menu a .dj-badge {
    color: initial;
}

ul.dj-mobile-light ul li.dj-mobileitem > a{
    background: initial;
    border-top-color: #e4e4e4;
}

/*### FOOTER ###*/
.footer-master {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    padding: 40px 36px;
    background-color: var(--color-bg2);
    color: #fff;
    gap: 50px;
    margin-top: var(--space-xl);
}
.footer-esq {
    flex: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.footer-dir {
    flex: 1;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 20px;
}

.footer-esq1 {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex: 1;
}
.footer-esq1 div:first-of-type {
    background-image: url("../images/logo-b.svg");
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 160px auto;
}
.footer-esq1 div:last-of-type{
    font-size: var(--tit1);
    font-weight: var(--font-weight-lg);
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: #fff;
    flex: 1;
}

/*### Menu do Fundo ###*/
.menudofundo {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.menudofundo ul li{margin: 0 40px 15px 0;}
.menudofundo a{color: #fff;}
.menudofundo a:hover{text-decoration: underline; color: var(--color-gold);}
.menudofundo li.active a{text-decoration: underline; color: var(--color-gold);}

/*### FUNDO FAB ###*/
.footer-fab{
    display: flex;
}
.footer-fab-icon{
    display: flex;
}

/*### Blog Items ###*/
.item-content, .ini-secao{
    position: relative;
}
.item-content .item-title{
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    line-height: initial;
}
.item-content h1, .item-content h2, .item-content h3, .page-header{
    margin-bottom: 20px;
}



/*### Topo Rato Scroll ###*/
.toporatomaster {
  position: absolute;
  bottom: -95vh;
  left: 0;
  right: 0;
  z-index: 1;
  width: 30px;
  margin: 0 auto;
}

.scroll-downs {
  width: 28px;
  height: auto;
  margin: 0 auto;
}

.scroll-downs a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

/* Rato */
.mousey {
  width: 3px;
  height: 32px;
  padding: 3px 8px;
  border: 2px solid #fff;
  border-radius: 25px;
  opacity: 0.85;
  box-sizing: content-box;
}

.scroller {
  width: 3px;
  height: 9px;
  border-radius: 25px;
  background-color: #fff;
  animation: mouseScroll 2s cubic-bezier(.15, .41, .69, .94) infinite;
}

/* Seta */
.seta {
  display: flex;
  justify-content: center;
  width: 100%;
  animation: arrowFloat 1.65s ease-in-out infinite;
}

.setadown {
  width: 9px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0.9;
}

/* Animação do scroll dentro do rato */
@keyframes mouseScroll {
  0% {
    transform: translateY(-2px);
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  75% {
    transform: translateY(15px);
    opacity: 0;
  }

  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}

/* Animação da seta */
@keyframes arrowFloat {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }

  45% {
    transform: translateY(8px);
    opacity: 1;
  }
}



/* ==================================================
   CONTEUDO NAS PAGINAS
================================================== */

/* ================================
   ECOS - CSS GLOBAL
================================ */

.ecos-section {
  position: relative;
  padding: var(--space-xl) var(--gutter);
  font-family: var(--font-body);
  color: var(--color-text);
  margin: var(--space-xl) 0;
}

.ecos-section:first-of-type {
    margin-top: 0;
}
/* Blog/listagem */
.blog-items > .blog-item:last-child .ecos-section {
  margin-bottom: 0;
}
/* Artigo normal */
.com-content-article__body > .ecos-section:last-of-type {
  margin-bottom: 0;
}

.ecos-section--light {
  background: var(--color-bg);
}

.ecos-section--dark {
  background: var(--color-bg2);
  color: #fff;
}

.ecos-container {
  width: min(100%, var(--container-max));
  margin-inline: auto;
}

.ecos-container--wide {
  width: min(100%, var(--container-max2));
  margin-inline: auto;
}

/* Cabeçalhos de secção */

.ecos-section-head {
  max-width: 820px;
  margin-bottom: var(--space-xl);
}

.ecos-kicker {
  display: inline-block;
  margin-bottom: var(--space-sm);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-lg);
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--color-gold);
}

.ecos-section-title {
  margin: 0 0 var(--space-md);
  font-size: var(--h2);
  line-height: 1.08;
  color: inherit;
  font-family: var(--font-heading);
  font-weight: var(--font-weight-lg);
  letter-spacing: -0.04em;
}

.ecos-section-text {
  margin: 0;
  font-size: var(--text-base);
  line-height: var(--line-base);
  color: rgba(37, 20, 12, 0.72);
}

.ecos-section-text + .ecos-section-text {
  margin-top: var(--space-sm);
}

.ecos-section--dark .ecos-section-text {
  color: rgba(255, 255, 255, 0.72);
}

/* Grids */

.ecos-grid {
  display: grid;
  gap: var(--space-md);
}

.ecos-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ecos-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ecos-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Cards globais */

.ecos-card {
  position: relative;
  overflow: hidden;
  padding: var(--space-lg);
  background: #fff;
  border: 1px solid rgba(37, 20, 12, 0.10);
  color: var(--color-text);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.ecos-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--color-gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.25s ease;
}

.ecos-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-gold);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08);
}

.ecos-card:hover::before {
  transform: scaleY(1);
}

.ecos-card--dark {
  background: var(--color-bg2);
  border-color: var(--color-bg2);
  color: #fff;
}

.ecos-card-title {
  margin: 0 0 var(--space-sm);
  font-size: var(--h5);
  line-height: 1.25;
  color: inherit;
  font-family: var(--font-heading);
  font-weight: var(--font-weight-lg);
  letter-spacing: -0.04em;
}

.ecos-card-text {
  margin: 0;
  font-size: var(--text-sm);
  line-height: var(--line-base);
  color: rgba(37, 20, 12, 0.68);
}

.ecos-card--dark .ecos-card-text {
  color: rgba(255, 255, 255, 0.72);
}

.ecos-card-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: var(--space-md);
  border-radius: 50%;
  background: var(--color-bg2);
  color: #fff;
  font-size: var(--text-xxs);
  font-weight: var(--font-weight-xl);
  line-height: 1;
}

.ecos-card--dark .ecos-card-number {
  background: var(--color-gold);
  color: var(--color-text);
}

/* Botões globais */

.ecos-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  background: var(--color-gold);
  color: var(--color-text);
  font-weight: var(--font-weight-lg);
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.ecos-btn:hover {
  transform: translateY(-2px);
  background: var(--color-gold2);
  color: #fff;
}

.ecos-btn--dark {
  background: var(--color-bg2);
  color: #fff;
}

.ecos-btn--dark:hover {
  background: var(--color-gold);
  color: var(--color-text);
}

.ecos-btn--outline {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

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

.ecos-btn.ecos-btn--wa {
  background: #25d366;
  border-color: #25d366;
  color: #000;
  padding: 0.9rem 3rem;
}

.ecos-btn.ecos-btn--wa:hover,
.ecos-btn.ecos-btn--wa:focus {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: #000;
  transform: translateY(-2px);
}

/* Responsivo global */

@media (max-width: 1024px) {
  .ecos-grid--4,
  .ecos-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ecos-section {
    padding-block: var(--space-2xl);
  }
}

@media (max-width: 640px) {
  .ecos-section {
    padding-block: var(--space-xl);
  }

  .ecos-grid--4,
  .ecos-grid--3,
  .ecos-grid--2 {
    grid-template-columns: 1fr;
  }

  .ecos-section-head {
    margin-bottom: var(--space-lg);
  }

  .ecos-card {
    padding: var(--space-md);
  }

  .ecos-card-number {
    width: 42px;
    height: 42px;
  }
}



/* ================================
   SECÇÃO 1 - SERVIÇOS
================================ */

.ecos-servicos {
  background:
    linear-gradient(
      135deg,
      rgba(225, 183, 104, 0.08),
      transparent 34%
    ),
    var(--color-bg);
}

.ecos-servico-card {
  min-height: 255px;
}

.ecos-servico-card--cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ecos-servico-btn {
  margin-top: var(--space-md);
}

/* Pequeno detalhe visual para dar profundidade */
.ecos-servicos-grid {
  position: relative;
}

@media (max-width: 640px) {
  .ecos-servico-card {
    min-height: auto;
  }

  .ecos-servico-btn {
    width: 100%;
  }
}



/* ================================
   SECÇÃO 2 - HABITAÇÃO
================================ */

.ecos-habitacao {
  background:
    radial-gradient(
      circle at top right,
      rgba(240, 184, 74, 0.16),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #181818 0%,
      #24211d 52%,
      #111111 100%
    );
  overflow: hidden;
}

.ecos-habitacao-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: var(--space-2xl);
  align-items: center;
}

.ecos-habitacao-content {
  max-width: 650px;
}

.ecos-habitacao-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.ecos-habitacao-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-weight: var(--font-weight-lg);
  text-decoration: none;
}

.ecos-habitacao-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.ecos-habitacao-link:hover::after {
  transform: scaleX(0.65);
}

.ecos-habitacao-link:hover{
    color:inherit;
}

.ecos-habitacao-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(225, 183, 104, 0.22);
}

.ecos-habitacao-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.02) 0%,
      rgba(0, 0, 0, 0.08) 48%,
      rgba(0, 0, 0, 0.38) 100%
    );
  pointer-events: none;
}

.ecos-habitacao-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.7s ease;
}

.ecos-habitacao-media:hover img {
  transform: scale(1.07);
}

.ecos-habitacao-badge {
  position: absolute;
  left: var(--space-lg);
  right: var(--space-lg);
  bottom: var(--space-lg);
  z-index: 1;
  padding: var(--space-md);
  background: rgba(0, 0, 0, 0.72);
  border-left: 4px solid var(--color-gold);
  backdrop-filter: blur(8px);
}

.ecos-habitacao-badge strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-gold);
  font-size: var(--h5);
  font-weight: var(--font-weight-lg);
  line-height: 1.2;
}

.ecos-habitacao-badge span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--text-sm);
  line-height: var(--line-base);
}

.ecos-habitacao-servicos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.ecos-habitacao-item {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.ecos-habitacao-item span {
  display: inline-block;
  margin-bottom: var(--space-sm);
  color: var(--color-gold);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-lg);
  letter-spacing: 0.12em;
}

.ecos-habitacao-item h3 {
  margin: 0 0 var(--space-sm);
  color: #fff;
  font-size: var(--h5);
  line-height: 1.25;
}

.ecos-habitacao-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--text-sm);
  line-height: var(--line-base);
}

/* Tablet */
@media (max-width: 1024px) {
  .ecos-habitacao-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .ecos-habitacao-content {
    max-width: 820px;
  }

  .ecos-habitacao-media {
    min-height: 460px;
  }

  .ecos-habitacao-media img {
    min-height: 460px;
  }

  .ecos-habitacao-servicos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: var(--space-xl);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .ecos-habitacao-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ecos-habitacao-actions .ecos-btn {
    width: 100%;
  }

  .ecos-habitacao-link {
    width: fit-content;
  }

  .ecos-habitacao-media {
    min-height: 380px;
  }

  .ecos-habitacao-media img {
    min-height: 380px;
  }

  .ecos-habitacao-badge {
    left: var(--space-sm);
    right: var(--space-sm);
    bottom: var(--space-sm);
    padding: var(--space-sm);
  }

  .ecos-habitacao-servicos {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}



/* ================================
   SECÇÃO 3 - SERRALHARIA INDUSTRIAL
================================ */

.ecos-industrial {
  background:
    radial-gradient(
      circle at top left,
      rgba(240, 184, 74, 0.14),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #181818 0%,
      #202020 52%,
      #111111 100%
    );
  overflow: hidden;
}

.ecos-industrial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: var(--space-2xl);
  align-items: center;
}

.ecos-industrial-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(240, 184, 74, 0.22);
}

.ecos-industrial-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.02) 0%,
      rgba(0, 0, 0, 0.08) 48%,
      rgba(0, 0, 0, 0.38) 100%
    );
  pointer-events: none;
}

.ecos-industrial-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.7s ease;
}

.ecos-industrial-media:hover img {
  transform: scale(1.07);
}

.ecos-industrial-badge {
  position: absolute;
  left: var(--space-lg);
  right: var(--space-lg);
  bottom: var(--space-lg);
  z-index: 1;
  padding: var(--space-md);
  background: rgba(24, 24, 24, 0.78);
  border-left: 4px solid var(--color-gold);
  backdrop-filter: blur(8px);
}

.ecos-industrial-badge strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-gold);
  font-size: var(--h6);
  font-weight: 800;
  line-height: 1.2;
}

.ecos-industrial-badge span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--text-sm);
  line-height: var(--line-base);
}

.ecos-industrial-content {
  max-width: 700px;
}

.ecos-industrial-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.ecos-industrial-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 800;
  text-decoration: none;
}

.ecos-industrial-link:hover {
    color: inherit;
}

.ecos-industrial-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.ecos-industrial-link:hover::after {
  transform: scaleX(0.65);
}

.ecos-industrial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.ecos-industrial-item {
  position: relative;
  min-height: 260px;
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.10);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.ecos-industrial-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--color-gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.25s ease;
}

.ecos-industrial-item:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 184, 74, 0.55);
  background: rgba(255, 255, 255, 0.075);
}

.ecos-industrial-item:hover::before {
  transform: scaleY(1);
}

.ecos-industrial-item:last-of-type:hover {
  background: ivory;
}

.ecos-industrial-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: var(--space-md);
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-text);
  font-size: var(--text-xxs);
  font-weight: 800;
  line-height: 1;
}

.ecos-industrial-item h3 {
  margin: 0 0 var(--space-sm);
  color: #fff;
  font-size: var(--h6);
  font-weight: 800;
  line-height: 1.25;
}

.ecos-industrial-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--text-sm);
  line-height: var(--line-base);
}

.ecos-industrial-item--cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-text);
}

.ecos-industrial-item--cta::before {
  background: #fff;
}

.ecos-industrial-item--cta span {
  background: var(--color-bg2);
  color: #fff;
}

.ecos-industrial-item--cta h3,
.ecos-industrial-item--cta p {
  color: var(--color-text);
}

.ecos-industrial-item--cta .ecos-btn {
  margin-top: var(--space-md);
  background: var(--color-bg2);
  color: #fff;
}

/* Tablet */
@media (max-width: 1024px) {
  .ecos-industrial-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .ecos-industrial-content {
    max-width: 820px;
    order: 1;
  }

  .ecos-industrial-media {
    min-height: 460px;
    order:2;
  }

  .ecos-industrial-media img {
    min-height: 460px;
  }

  .ecos-industrial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: var(--space-xl);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .ecos-industrial-media {
    min-height: 380px;
  }

  .ecos-industrial-media img {
    min-height: 380px;
  }

  .ecos-industrial-badge {
    left: var(--space-sm);
    right: var(--space-sm);
    bottom: var(--space-sm);
    padding: var(--space-sm);
  }

  .ecos-industrial-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ecos-industrial-actions .ecos-btn {
    width: 100%;
  }

  .ecos-industrial-link {
    width: fit-content;
  }

  .ecos-industrial-grid {
    grid-template-columns: 1fr;
  }

  .ecos-industrial-item {
    min-height: auto;
    padding: var(--space-md);
  }

  .ecos-industrial-item--cta .ecos-btn {
    width: 100%;
  }
}



/* ================================
   SECÇÃO 4 - TRABALHOS REALIZADOS
================================ */

.ecos-trabalhos {
  background:
    linear-gradient(
      180deg,
      var(--color-bg) 0%,
      #fff 100%
    );
}

.ecos-trabalhos-head {
  display: flex;
  justify-content: space-between;
  gap: var(--space-xl);
  align-items: flex-end;
  margin-bottom: var(--space-xl);
}

.ecos-trabalhos-head .ecos-section-head {
  margin-bottom: 0;
}

.ecos-trabalhos-head-action {
  flex: 0 0 auto;
  padding-bottom: 0.35rem;
}

.ecos-trabalhos-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: var(--space-md);
}

.ecos-trabalhos-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
}

.ecos-trabalho-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: #111;
  isolation: isolate;
}

.ecos-trabalho-card--featured {
  min-height: 704px;
}

.ecos-trabalho-link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.ecos-trabalho-media {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
}

.ecos-trabalho-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.02) 0%,
      rgba(0, 0, 0, 0.08) 45%,
      rgba(0, 0, 0, 0.48) 100%
    );
  z-index: 1;
}

.ecos-trabalho-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.75s ease;
}

.ecos-trabalho-card:hover .ecos-trabalho-media img {
  transform: scale(1.08);
}

.ecos-trabalho-content {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-lg);
}

.ecos-trabalhos-grid .ecos-trabalho-content {
  padding: var(--space-md);
}

.ecos-trabalho-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: var(--space-sm);
  padding: 0.45rem 0.7rem;
  background: var(--color-gold);
  color: var(--color-text);
  font-size: var(--text-xxs);
  font-weight: var(--font-weight-lg);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ecos-trabalho-content h3 {
  max-width: 620px;
  margin: 0 0 var(--space-sm);
  color: #fff;
  font-size: var(--h5);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.ecos-trabalho-card--featured .ecos-trabalho-content h3 {
  font-size: var(--h3);
}

.ecos-trabalho-content p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: var(--text-sm);
  line-height: var(--line-base);
}

.ecos-trabalhos-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-gold);
  color: var(--color-text);
}

.ecos-trabalhos-cta .ecos-kicker {
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.ecos-trabalhos-cta h3 {
  margin: 0;
  max-width: 760px;
  font-size: var(--h5);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

/* Tablet */
@media (max-width: 1024px) {
  .ecos-trabalhos-head {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--space-md);
  }

  .ecos-trabalhos-layout {
    grid-template-columns: 1fr;
  }

  .ecos-trabalho-card--featured {
    min-height: 520px;
  }

  .ecos-trabalho-card {
    min-height: 320px;
  }

  .ecos-trabalhos-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .ecos-trabalhos-grid {
    grid-template-columns: 1fr;
  }

  .ecos-trabalhos-head-action,
  .ecos-trabalhos-head-action .ecos-btn {
    width: 100%;
  }

  .ecos-trabalho-card,
  .ecos-trabalho-card--featured {
    min-height: 390px;
  }

  .ecos-trabalho-content,
  .ecos-trabalhos-grid .ecos-trabalho-content {
    padding: var(--space-md);
  }

  .ecos-trabalho-card--featured .ecos-trabalho-content h3 {
    font-size: var(--h4);
  }

  .ecos-trabalhos-cta {
    padding: var(--space-md);
  }

  .ecos-trabalhos-cta .ecos-btn {
    width: 100%;
  }
}



/* ================================
   SECÇÃO 5 - COMO TRABALHAMOS
================================ */

.ecos-processo {
  background:
    radial-gradient(
      circle at top left,
      rgba(240, 184, 74, 0.13),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #181818 0%,
      #202020 52%,
      #111111 100%
    );
  overflow: hidden;
}

.ecos-processo-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: var(--space-2xl);
  align-items: end;
  margin-bottom: var(--space-xl);
}

.ecos-processo-head .ecos-section-head {
  margin-bottom: 0;
}

.ecos-processo-intro {
  padding: var(--space-md);
  border-left: 4px solid var(--color-gold);
  background: rgba(255, 255, 255, 0.045);
}

.ecos-processo-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-sm);
  line-height: var(--line-base);
}

.ecos-processo-timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.ecos-processo-timeline::before {
  content: "";
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 31px;
  width: 1px;
  background: linear-gradient(
    180deg,
    var(--color-gold),
    rgba(225, 183, 104, 0.12)
  );
}

.ecos-processo-step {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: var(--space-md);
  padding: var(--space-lg) 0;
}

.ecos-processo-step + .ecos-processo-step {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.ecos-processo-number {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-text);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-lg);
  line-height: 1;
  box-shadow: 0 0 0 8px rgba(225, 183, 104, 0.10);
}

.ecos-processo-content {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.65fr);
  gap: var(--space-lg);
  align-items: start;
  padding-top: 0.35rem;
}

.ecos-processo-content h3 {
  margin: 0;
  color: #fff;
  font-size: var(--h5);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.ecos-processo-content p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--text-base);
  line-height: var(--line-base);
}

.ecos-processo-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: #fff;
  color: var(--color-text);
}

.ecos-processo-cta .ecos-kicker {
  margin-bottom: var(--space-xs);
}

.ecos-processo-cta h3 {
  margin: 0 0 var(--space-xs);
  max-width: 760px;
  font-size: var(--h5);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.ecos-processo-cta p {
  margin: 0;
  max-width: 760px;
  color: rgba(37, 20, 12, 0.68);
  font-size: var(--text-sm);
  line-height: var(--line-base);
}

/* Tablet */
@media (max-width: 1024px) {
  .ecos-processo-head {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .ecos-processo-content {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .ecos-processo-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .ecos-processo-timeline::before {
    left: 23px;
  }

  .ecos-processo-step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: var(--space-sm);
    padding: var(--space-md) 0;
  }

  .ecos-processo-number {
    width: 48px;
    height: 48px;
    font-size: var(--text-xxs);
    box-shadow: 0 0 0 6px rgba(225, 183, 104, 0.10);
  }

  .ecos-processo-content {
    padding-top: 0.1rem;
  }

  .ecos-processo-content p {
    font-size: var(--text-sm);
  }

  .ecos-processo-cta {
    padding: var(--space-md);
  }

  .ecos-processo-cta .ecos-btn {
    width: 100%;
  }
}



/* ================================
   SECÇÃO 6 - PORQUE ESCOLHER
================================ */

.ecos-escolher {
  background:
    linear-gradient(
      135deg,
      rgba(225, 183, 104, 0.10),
      transparent 34%
    ),
    var(--color-bg);
}

.ecos-escolher-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: var(--space-2xl);
  align-items: start;
}

.ecos-escolher-head {
  position: sticky;
  top: var(--space-lg);
  margin-bottom: 0;
}

.ecos-escolher-btn {
  margin-top: var(--space-lg);
}

.ecos-escolher-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
}

.ecos-escolher-card {
  min-height: 245px;
}

.ecos-escolher-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: var(--space-md);
  border-radius: 50%;
  background: var(--color-bg2);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-lg);
  line-height: 1;
}

.ecos-escolher-card--destaque .ecos-escolher-icon {
  background: var(--color-gold);
  color: var(--color-text);
}

.ecos-escolher-frase {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: var(--color-bg2);
  color: #fff;
}

.ecos-escolher-frase p {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-size: var(--h5);
  font-weight: var(--font-weight-lg);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

/* Tablet */
@media (max-width: 1024px) {
  .ecos-escolher-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .ecos-escolher-head {
    position: static;
    max-width: 820px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .ecos-escolher-grid {
    grid-template-columns: 1fr;
  }

  .ecos-escolher-card {
    min-height: auto;
  }

  .ecos-escolher-btn {
    width: 100%;
  }

  .ecos-escolher-frase {
    padding: var(--space-md);
  }

  .ecos-escolher-frase p {
    font-size: var(--h6);
  }
}



/* ================================
   SECÇÃO 7 - PEDIDO DE ORÇAMENTO
================================ */

.ecos-orcamento {
  background:
    radial-gradient(
      circle at top right,
      rgba(225, 183, 104, 0.22),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #000 0%,
      #17110c 55%,
      #000 100%
    );
  overflow: hidden;
}

.ecos-orcamento-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: var(--space-2xl);
  align-items: center;
}

.ecos-orcamento-content {
  max-width: 820px;
}

.ecos-orcamento-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.ecos-orcamento-box {
  position: relative;
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(225, 183, 104, 0.24);
  backdrop-filter: blur(10px);
}

.ecos-orcamento-box::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--color-gold);
}

.ecos-orcamento-box h3 {
  margin: 0 0 var(--space-md);
  color: #fff;
  font-size: var(--h5);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.ecos-orcamento-box ul {
  display: grid;
  gap: var(--space-sm);
  margin: 0;
  padding: 0;
  list-style: none;
}

.ecos-orcamento-box li {
  position: relative;
  padding-left: 1.8rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: var(--text-sm);
  line-height: var(--line-base);
}

.ecos-orcamento-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-gold);
  font-weight: var(--font-weight-xl);
}

.ecos-orcamento-note {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.ecos-orcamento-note strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-gold);
  font-size: var(--text-base);
  font-weight: var(--font-weight-lg);
  line-height: 1.25;
}

.ecos-orcamento-note span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-sm);
  line-height: var(--line-base);
}

/* Tablet */
@media (max-width: 1024px) {
  .ecos-orcamento-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .ecos-orcamento-box {
    max-width: 720px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .ecos-orcamento-actions {
    flex-direction: column;
  }

  .ecos-orcamento-actions .ecos-btn {
    width: 100%;
  }

  .ecos-orcamento-box {
    padding: var(--space-md);
  }
}



/* ================================
   SECÇÃO 8 - PERGUNTAS FREQUENTES
================================ */

.ecos-faq {
  background:
    radial-gradient(
      circle at top left,
      rgba(240, 184, 74, 0.10),
      transparent 34%
    ),
    var(--color-bg);
}

.ecos-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: var(--space-2xl);
  align-items: start;
}

.ecos-faq-head {
  position: sticky;
  top: var(--space-lg);
  margin-bottom: 0;
}

.ecos-faq-btn {
  margin-top: var(--space-lg);
}

.ecos-faq-list {
  display: grid;
  gap: var(--space-sm);
}

.ecos-faq-item {
  background: #fff;
  border: 1px solid rgba(37, 20, 12, 0.10);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.ecos-faq-item:hover {
  border-color: rgba(240, 184, 74, 0.65);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.ecos-faq-item[open] {
  border-color: var(--color-gold);
}

.ecos-faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md);
  cursor: pointer;
  list-style: none;
}

.ecos-faq-item summary::-webkit-details-marker {
  display: none;
}

.ecos-faq-item summary span {
  color: var(--color-text);
  font-size: var(--text-base);
  font-weight: var(--font-weight-lg);
  line-height: 1.35;
}

.ecos-faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-bg2);
  color: #fff;
  font-size: 20px;
  font-weight: var(--font-weight-xl);
  line-height: 1;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.ecos-faq-item[open] summary::after {
  content: "−";
  background: var(--color-gold);
  color: var(--color-text);
  transform: rotate(180deg);
}

.ecos-faq-content {
  padding: 0 var(--space-md) var(--space-md);
}

.ecos-faq-content p {
  max-width: 760px;
  margin: 0;
  color: rgba(37, 20, 12, 0.70);
  font-size: var(--text-sm);
  line-height: var(--line-base);
}

/* Tablet */
@media (max-width: 1024px) {
  .ecos-faq-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .ecos-faq-head {
    position: static;
    max-width: 820px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .ecos-faq-btn {
    width: 100%;
  }

  .ecos-faq-item summary {
    align-items: flex-start;
    padding: var(--space-sm);
  }

  .ecos-faq-item summary::after {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .ecos-faq-content {
    padding: 0 var(--space-sm) var(--space-sm);
  }
}



/* ================================
   SECÇÃO 9 - CONTACTO RÁPIDO
================================ */

.ecos-contacto-rapido {
  background:
    radial-gradient(
      circle at top right,
      rgba(240, 184, 74, 0.12),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      #fff 0%,
      #f8f5ef 100%
    );
}

.ecos-contacto-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: var(--space-2xl);
  align-items: center;
}

.ecos-contacto-content {
  max-width: 820px;
}

.ecos-contacto-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.ecos-contacto-card {
  position: relative;
  padding: var(--space-lg);
  background: var(--color-bg2);
  color: #fff;
  overflow: hidden;
}

.ecos-contacto-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--color-gold);
}

.ecos-contacto-card::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(240, 184, 74, 0.16);
  pointer-events: none;
}

.ecos-contacto-info {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-md);
}

.ecos-contacto-item {
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ecos-contacto-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.ecos-contacto-item span {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-gold);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-xl);
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ecos-contacto-item a,
.ecos-contacto-item p {
  margin: 0;
  color: #fff;
  font-size: var(--text-base);
  font-weight: var(--font-weight-xl);
  line-height: 1.35;
  text-decoration: none;
}

.ecos-contacto-item a:hover {
  color: var(--color-gold);
}

.ecos-contacto-extra {
  position: relative;
  z-index: 1;
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.06);
  border-left: 4px solid var(--color-gold);
}

.ecos-contacto-extra strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: #fff;
  font-size: var(--h6);
  font-weight: var(--font-weight-lg);
  line-height: 1.2;
}

.ecos-contacto-extra p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-sm);
  line-height: var(--line-base);
}

/* Tablet */
@media (max-width: 1024px) {
  .ecos-contacto-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .ecos-contacto-card {
    max-width: 720px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .ecos-contacto-actions {
    flex-direction: column;
  }

  .ecos-contacto-actions .ecos-btn {
    width: 100%;
  }

  .ecos-contacto-card {
    padding: var(--space-md);
  }

  .ecos-contacto-extra {
    padding: var(--space-sm);
  }
}



/* ==========================
   TERMOS E CONDIÇÕES
========================== */

.legal-page {
    background: #f8f6f2;
    color: #1b1b1b;
}

/* Container */
.legal-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* HERO */
.legal-hero {
    padding: 140px 0 90px;
    text-align: center;
    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f8f6f2 100%
        );
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Conteúdo */
.legal-content {
    padding-top: 50px;
    line-height: 2;
}

.legal-page ul li{
    margin-left: 20px;
}

/* Caixa principal */
.legal-box {
    background: #ffffff;
    border-radius: 36px;
    padding: 70px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.legal-text a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {

    .legal-hero {
        padding: 110px 0 70px;
    }

    .legal-box {
        padding: 50px 35px;
        border-radius: 28px;
    }

}

@media (max-width: 576px) {

    .legal-hero {
        padding: 90px 0 60px;
    }

    .legal-box {
        padding: 35px 22px;
        border-radius: 22px;
    }

}


/*Convert Forms*/
.convertforms .cfupload .dz-message{background-color: #f5f5f5;}
.convertforms h3{margin-bottom: 30px;}



/* ================================
   MÓDULO - CONTACTOS LATERAL CLEAN
================================ */

.ecos-contact-module {
  max-width: 460px;
  width: 100%;
  z-index: 2;
  margin-top: 90px;
  margin-right: var(--space-md);
  margin-bottom: calc((var(--space-3xl) * -1) + 50px);
  margin-left: auto;
  border-radius: 5px;
  position: relative;
  padding: var(--space-lg);
  background: radial-gradient( circle at top left, rgba(240, 184, 74, 0.10), transparent 34% ), var(--color-bg);
  color: var(--color-text);
  border: 1px solid rgba(37, 20, 12, 0.10);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.055);
  overflow: hidden;
}

/*.ecos-contact-module::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--color-gold);
}*/

.ecos-contact-module-head {
  position: relative;
  margin-bottom: var(--space-lg);
}

.ecos-contact-module-head h3 {
  margin: 0 0 var(--space-sm);
  color: var(--color-text);
  font-family: var(--font-heading, var(--font-body));
  font-size: var(--h5);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.ecos-contact-module-head p {
  margin: 0;
  color: rgba(37, 20, 12, 0.68);
  font-size: var(--text-sm);
  line-height: var(--line-base);
}

.ecos-contact-module-info {
  position: relative;
  display: grid;
  gap: var(--space-md);
}

.ecos-contact-module-item {
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(37, 20, 12, 0.10);
}

.ecos-contact-module-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.ecos-contact-module-item span {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-gold2);
  font-size: var(--text-xs);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ecos-contact-module-item a,
.ecos-contact-module-item p {
  margin: 0;
  color: var(--color-text);
  font-size: var(--text-base);
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}

.ecos-contact-module-item a:hover {
  color: var(--color-gold2);
}

.ecos-contact-module-actions {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.ecos-contact-module-actions .ecos-btn {
  width: 100%;
  padding-inline: 1rem;
}

/* Botão outline dentro do módulo claro */
.ecos-contact-module .ecos-btn--outline-dark {
  background: transparent;
  border-color: rgba(37, 20, 12, 0.22);
  color: var(--color-text);
}

.ecos-contact-module .ecos-btn--outline-dark:hover {
  background: var(--color-bg2);
  border-color: var(--color-bg2);
  color: #fff;
}

.ecos-contact-module-note {
  position: relative;
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: rgba(240, 184, 74, 0.10);
  border-left: 4px solid var(--color-gold);
}

.ecos-contact-module-note strong {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
  font-size: var(--text-base);
  font-weight: 800;
  line-height: 1.25;
}

.ecos-contact-module-note p {
  margin: 0;
  color: rgba(37, 20, 12, 0.68);
  font-size: var(--text-sm);
  line-height: var(--line-base);
}

.ecos-contact-module-map {
  position: relative;
  height: 240px;
  margin-top: var(--space-lg);
  overflow: hidden;
  background: #f4f1eb;
  border: 1px solid rgba(37, 20, 12, 0.10);
}

.ecos-contact-module-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Tablet */
@media screen and (max-width: 980px) {
  .ecos-contact-module {
    max-width: none;
    width: auto;
    margin-top: var(--space-lg);
    margin-left: var(--space-sm);
    margin-right: var(--space-sm);
    z-index:1;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .ecos-contact-module {
    padding: var(--space-md);
  }

  .ecos-contact-module-actions {
    grid-template-columns: 1fr;
  }

  .ecos-contact-module-map {
    height: 220px;
  }
}



/* ================================
   EVENT GALLERY
================================ */

.eventgallery-imagelist .thumbnail-container:hover .content .data h2{
    font-family: var(--font-body);
    font-size: var(--h5);
    background: none;
}

.eventgallery-imagelist .thumbnail-container .content{
    font-size: var(--text-base);
    line-height: var(--line-base);
}