*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html, body {
  touch-action: manipulation;
  -ms-touch-action: manipulation;
  overflow-x: hidden;
}

body{
    background-color: #F5F3EE;
    overflow-x: hidden;
}

.interface{
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4%;
}

/* Estilo do header */

    header .btn-contato button, .hero-site button{
        font-size: 18px;
        background-color: transparent;
        color: #fff;
        cursor: pointer;
        transition: 0.5s;
        border-radius: 13px;
    }


header{
    width: 100%;
    padding: 6px 0;
    position: fixed;
    top: 0;
    transition: 0.5s;
    z-index: 1300;
}

header .interface{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img{
max-width: 100px;
cursor: pointer;
}


/* estilo menu dinamico */
header .logo img.logo-preta{
    display: none;
    cursor: pointer;
}

 header.rolar .logo img.logo-preta{ 
        display: block;
    cursor: pointer;
}

header.rolar .logo img.logo-branca{
        display: none;
    cursor: pointer;
}

header.rolar{
    background-color: #F5F3EE;
    padding: 10px 0;
    box-shadow: 0 0 10px #000000a1;
}

header.rolar .menu-desktop nav ul li a{
    color: #000;
}

header.rolar .btn-contato button{
    color: #000;
}

header.rolar .btn-contato button:hover{
transform: scale(1.05);
}

header.rolar .logo .logo-branca{
    cursor: pointer;
}
*/

/* --------------------------- */

header .menu-desktop nav ul{
list-style-type: none;
}

header .menu-desktop nav ul li{
display: inline-block;
margin: 0 40px;
}

    header .menu-desktop nav ul li a{
        color: white;
        text-decoration: none;
        display: inline-block;
        transition: 0.2s;
    }

    .menu-desktop nav a:hover{
transform: scale(1.05);
    }
    header .btn-contato button{
        width: 30px;
        height: 30px;
        padding: 0 10px;
        border: none;
    }


    header .btn-contato button:hover, .hero-site button:hover{
        background-color: transparent;
    transform: scale(1.05);
    }

    header .logo:hover{
         transform: scale(1.05);
    }

    header.rolar .logo:hover{
         transform: scale(1.05);
    }


/* ---------------- HEADER MOBILE ---------------- */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: transparent;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    backdrop-filter: blur(0px);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.mobile-header .interface-mob {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-mobile {
    max-height: 40px;
}
/* ---------------- BOTÃO HAMBURGER ---------------- */
.menu-btn {
    position: relative;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    z-index: 1001;
}

.menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.logo-mobile {
    content: url('https://imagedelivery.net/byoCLdsSBwTViI2_vNwS4A/408b0f0d-9923-4d02-5359-8c91f4cd9e00/public');
}

.mobile-header.scrolled .menu-btn span {
    background-color: #333; 
}

.mobile-header.scrolled .logo-mobile {
    content: url('https://imagedelivery.net/byoCLdsSBwTViI2_vNwS4A/02157828-d323-40da-94bf-4147a5057900/public'); 
}

.menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -8px);
}

/* HEADER SÓLIDO AO SCROLL */
.mobile-header.scrolled {
    background-color: #F5F3EE;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ---------------- MENU OFF-CANVAS LATERAL DIREITA ---------------- */
.offcanvas-menu {
    position: fixed;
    top: 60px; 
    right: -50%; 
    width: 35%; 
    height: calc(100vh - 60px); 
    background-color: #ffffff; 
    transition: right 0.4s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.offcanvas-menu .menu-overlay {
    position: fixed;
    top: 60px;
    left: 0;
    width: 65%;
    height: calc(100% - 60px);
    background-color: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.offcanvas-menu.open {
    right: 0;
}

.offcanvas-menu.open .menu-overlay {
    opacity: 1;
    pointer-events: auto;
}

.menu-content {
    width: 100%;
    height: 100%;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.menu-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 40px; 
}

.menu-content ul li a {
    text-decoration: none;
    color: #000;
    font-size: 28px; 
    font-weight: bold;
    transition: color 0.2s ease;
}

.menu-content ul li a:hover {
    color: #777;
}

@media (max-width: 840px) {
    .menu-desktop {
        display: none;
    }
    .mobile-header {
        display: flex;
    }
    .logo {
      display: none;
    }
    .logo-mob {
      display: block;
    }
}

@media (min-width: 841px) {
    .menu-desktop {
        display: block;
    }
    .mobile-header {
        display: none;
    }
    .logo {
      display: block;
    }
    .logo-mob {
      display: none;
    }
}

@media (max-width: 600px) {
.offcanvas-menu {
    position: fixed;
    top: 60px; 
    right: -50%; 
    width: 45%; 
    height: calc(100vh - 60px); 
    background-color: #ffffff; 
    transition: right 0.4s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}
}

@media (max-width: 500px) {
.offcanvas-menu {
    position: fixed;
    top: 60px; 
    right: -80%; 
    width: 55%; 
    height: calc(100vh - 60px); 
    background-color: #ffffff; 
    transition: right 0.4s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}
}

@media (max-width: 389px) {
.offcanvas-menu {
    position: fixed;
    top: 60px; 
    right: -80%; 
    width: 60%; 
    height: calc(100vh - 60px); 
    background-color: #ffffff; 
    transition: right 0.4s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}
}

@media (max-width: 355px) {
.offcanvas-menu {
    position: fixed;
    top: 60px; 
    right: -80%; 
    width: 65%; 
    height: calc(100vh - 60px); 
    background-color: #ffffff; 
    transition: right 0.4s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}
}

.offcanvas-footer {
  display: flex;
  flex-direction: column;
  height: 100%; 
  padding: 20px;
}

.offcanvas-footer .top-footer {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.offcanvas-footer .top-footer button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #000;
  background-color: transparent;
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.offcanvas-footer .top-footer button:hover {
  background-color: #000;
  color: #fff;
  transform: scale(1.1);
}


.offcanvas-footer .bottom-footer {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
}


body.no-overflow{
    overflow: hidden;
}


     /* estilo do rodape */

     footer{
        background-color: #F5F3EE;
        width: 100%;
        text-align: center;
        padding: 30px 0;
     }

     footer .top-footer button{
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: none;
        background-color: #000;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
        margin: 0 10px;
        transition: 0.5s;
        margin-bottom: 10px;
     }

      footer .top-footer button:hover{
        background-color: transparent;
        color: #000;
        border: solid 2px #000;
      }

footer .midle-footer{
    color: #000;
    margin-bottom: 10px;
}


      footer .bottom-footer p{
        color: #000;
    margin-top: 10px;
    font-size: 12px;
      }

      footer .bottom-footer {
        border-top: 2px solid #000;
      }

   /* ====== SECTION EQUIPE DAMIANI ====== */
section.equipo-damiani {
  position: relative;
  width: 100%;
  height: 100dvh; /* mais estável que 100vh em mobile */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: justify;
  color: #F5F3EE;
  font-family: "Poppins", sans-serif;
  overflow: hidden;
  will-change: transform; /* ajuda a evitar "pulos" em mobile */
  transform: translateZ(0); /* força renderização suave */
}

section.equipo-damiani img {
  position: fixed; /* antes era absolute — causa o pulo */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* previne reflow no scroll em alguns navegadores */
html, body {
  scroll-behavior: smooth;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Título */
.equipo-damiani h2 {
  z-index: 2;
  color: #F5F3EE;
  padding-bottom: 5px;
  font-size: 2.5em;
  font-weight: 700;
}

/* Texto abaixo do título */
.equipo-damiani p {
  z-index: 2;
  color: #fff;
  max-width: 700px;
  font-size: 1.1em;
  font-weight: 100;
  line-height: 1.5;
  word-wrap: break-word;
  text-align: center;
  margin: 0 20px;
}

/* Overlay escurecido */
.equipo-damiani > .overlay2 {
  position: absolute;
  inset: 0;
  background-color: #00000083;
  z-index: 1;
}

/* ====== SETA ANIMADA ====== */
.arrow {
  position: absolute;
  bottom: 30px;
  font-size: 2.5rem;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
  animation: bounce 2s infinite;
  z-index: 2;
}

.arrow:hover {
  transform: translateY(5px);
}

.contatos-section-mob {
  display: none !important;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

@media (min-width: 886px) {
  .equipofotos {
    display: none;
  }
}

@media (max-width: 886px)  {
  .equipo-damiani img {
    display: none;
  }

  .equipofotos img {
    display: block;
  }
}

@media (min-width: 885px)  {
  .equipofotos img {
    display: none;
  }
}

@media (max-width: 885px)  {

   header .logo img.logo-preta{ 
        display: block;
    cursor: pointer;
}

header .logo img.logo-branca{
        display: none;
    cursor: pointer;
}

header{
    background-color: #F5F3EE;
    padding: 10px 0;
    box-shadow: 0 0 10px #000000a1;
}

header .menu-desktop nav ul li a{
    color: #000;
}

header .btn-contato button{
    color: #000;
}

header .btn-contato button:hover{
transform: scale(1.05);
}

header .logo .logo-branca{
    cursor: pointer;
}

section.equipo-damiani {
  background-size: contain;
  background-position: bottom;
  background-color: #F5F3EE;
  min-height: 85vh;
height: auto;
    justify-content: left;
  align-items: left;
  text-align: justify;

 }

.equipofotos {
  width: 100%;
  height: 100%;
  margin-bottom: 30px;
  margin-top: 20px;
  position: relative;
  right: 8px;
}

.equipofotos img {
  width: 100%;
  height: auto;
transform: scale(1.1);
}

.mobile-header {
    background-color: #F5F3EE;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.logo-mobile {
    content: url('https://imagedelivery.net/byoCLdsSBwTViI2_vNwS4A/02157828-d323-40da-94bf-4147a5057900/public');
}

.mobile-header .menu-btn span {
    background-color: #333; 
}

.mobile-header.scrolled .menu-btn span {
    background-color: #333; 
}

.mobile-header.scrolled .logo-mobile {
    content: url('https://imagedelivery.net/byoCLdsSBwTViI2_vNwS4A/02157828-d323-40da-94bf-4147a5057900/public'); 
}


 .arrow {
display: none;
}



.contatos-section {
  display: block !important;
}

.contatos-section-mob {
  display: none !important;
}

.contatos-section {
  position: absolute;
 
  
  right: 20px;
  display: flex;
  flex-direction: initial;
  align-items: flex-end;
  gap: 20px;
  z-index: 2;
  cursor: pointer;
}

.contato-linha a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s, transform 0.3s;
  
}

.contato-linha a:hover {
  color: #fff;
  transform: translateY(-2px);
}




 .equipo-damiani h2 {
  margin-bottom: 15px;
  margin-top: 170px;
  font-size: 2.0em;
  line-height: 1.3em;
  color: #000;
    margin-left: 25px;
  margin-right: 25px;
  text-align: justify;
 
 }

 .equipo-damiani p {
  font-size: 15px;
  line-height: 1.5;
  color: #000;
  text-align: justify;
  margin-left: 25px;
  margin-right: 25px;


}

.contato-linha a {
  color: #000 !important;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s, transform 0.3s;
}

.contato-linha a:hover {
  color: #000 !important;
  transform: translateY(-2px);
}

.contato-linha i {
  font-size: 20px;
  color: #000 !important;
  transition: transform 0.3s, color 0.3s;
}

.contato-linha:hover i {
  transform: translateY(-2px);
  color: #000 !important;
}

.scrolling-text {
  display: none !important;
}

.scrolling-text-new {
  display: none !important;
}
}


@media (min-width: 300px) and (max-width: 369px) {
 section.equipo-damiani {
  background-size: contain;
  background-position: bottom;
  background-color: #F5F3EE;
  min-height: 65vh;
height: auto;
    justify-content: left;
  align-items: left;
  text-align: justify;

 }

 section.equipo-damiani img {
display: none;           
}

.equipofotos {
  width: 100%;
  height: 100%;
  margin-bottom: 60px;
  margin-top: 20px;
  position: relative;
  right: 8px;
}

.equipofotos img {
  width: 100%;
  height: 100%;
transform: scale(1.1);
}


.mobile-header {
    background-color: #F5F3EE;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.logo-mobile {
    content: url('https://imagedelivery.net/byoCLdsSBwTViI2_vNwS4A/02157828-d323-40da-94bf-4147a5057900/public');
}

.mobile-header .menu-btn span {
    background-color: #333; 
}

.mobile-header.scrolled .menu-btn span {
    background-color: #333; 
}

.mobile-header.scrolled .logo-mobile {
    content: url('https://imagedelivery.net/byoCLdsSBwTViI2_vNwS4A/02157828-d323-40da-94bf-4147a5057900/public'); 
}


 .equipo-damiani h2 {
  margin-bottom: 15px;
  margin-top: 120px;
  font-size: 2.0em;
  line-height: 1.3em;
  color: #000;
    margin-left: 25px;
  margin-right: 25px;
  text-align: justify;
 
 }

 .equipo-damiani p {
  font-size: 15px;
  line-height: 1.5;
  color: #000;
  text-align: justify;
  margin-left: 25px;
  margin-right: 25px;


}

 .arrow {
display: none;
}




.contatos-section-mob {
display: none;
}




.equipo-damiani p {
text-align: justify;
}


.contatos-section {
  position: absolute;
  bottom: 30px;
  right: 20px;
  display: flex;
  flex-direction: initial;
  align-items: flex-end;
  gap: 20px;
  z-index: 2;
  cursor: pointer;
}

.contato-linha a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s, transform 0.3s;
}

.contato-linha a:hover {
  color: #fff;
  transform: translateY(-2px);
}

.contato-linha i {
  font-size: 20px;
  color: #000 !important;
  transition: transform 0.3s, color 0.3s;
 
}

.contato-linha:hover i {
  transform: translateY(-2px);
  color: #000 !important;
}

}


@media (min-width: 370px) and (max-width: 440px) {

 section.equipo-damiani {
  background-size: contain;
  background-position: bottom;
  background-color: #F5F3EE;
  min-height: 65vh;
height: auto;
    justify-content: left;
  align-items: left;
  text-align: justify;

 }

 section.equipo-damiani img {
display: none;           
}

.equipofotos {
  width: 100%;
  height: 100%;
  margin-bottom: 60px;
  margin-top: 20px;
  position: relative;
  right: 8px;
}

.equipofotos img {
  width: 100%;
  height: 100%;
transform: scale(1.1);
}

.mobile-header {
    background-color: #F5F3EE;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.logo-mobile {
    content: url('https://imagedelivery.net/byoCLdsSBwTViI2_vNwS4A/02157828-d323-40da-94bf-4147a5057900/public');
}

.mobile-header .menu-btn span {
    background-color: #333; 
}

.mobile-header.scrolled .menu-btn span {
    background-color: #333; 
}

.mobile-header.scrolled .logo-mobile {
    content: url('https://imagedelivery.net/byoCLdsSBwTViI2_vNwS4A/02157828-d323-40da-94bf-4147a5057900/public'); 
}


 .arrow {
display: none;
}



.contatos-section {
  display: block !important;
}

.contatos-section-mob {
  display: none !important;
}

.contatos-section {
  position: absolute;
 
  
  right: 20px;
  display: flex;
  flex-direction: initial;
  align-items: flex-end;
  gap: 20px;
  z-index: 2;
  cursor: pointer;
}

.contato-linha a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s, transform 0.3s;
}

.contato-linha a:hover {
  color: #fff;
  transform: translateY(-2px);
}




 .equipo-damiani h2 {
  margin-bottom: 15px;
  margin-top: 120px;
  font-size: 2.0em;
  line-height: 1.3em;
  color: #000;
    margin-left: 25px;
  margin-right: 25px;
  text-align: justify;
 
 }

 .equipo-damiani p {
  font-size: 15px;
  line-height: 1.5;
  color: #000;
  text-align: justify;
  margin-left: 25px;
  margin-right: 25px;


}

.contato-linha a {
  color: #000 !important;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s, transform 0.3s;
}

.contato-linha a:hover {
  color: #000 !important;
  transform: translateY(-2px);
}

.contato-linha i {
  font-size: 20px;
  color: #000 !important;
  transition: transform 0.3s, color 0.3s;
}

.contato-linha:hover i {
  transform: translateY(-2px);
  color: #000 !important;
}
}



/* ====== CONTATOS ====== */
.contatos-section {
  position: absolute;
  bottom: 25px;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  z-index: 2;
}

.contato-linha {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.contato-linha a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s, transform 0.3s;
}

.contato-linha a:hover {
  color: #fff;
  transform: translateY(-2px);
}

.contato-linha i {
  font-size: 20px;
  color: #fff;
  transition: transform 0.3s, color 0.3s;
}

.contato-linha:hover i {
  transform: translateY(-2px);
  color: #fff;
}

/* ====== RESPONSIVIDADE ====== */

/* Tablets (até 1024px) */
@media (max-width: 1024px) {
  .equipo-damiani h1 { font-size: 2.1em; }
  .equipo-damiani h3 { font-size: 1em; max-width: 600px; }
  .arrow { font-size: 2rem; }
  .contatos-section { right: 20px; bottom: 20px; }
}





.scrolling-wrapper-new {
  width: 100%;
  overflow: hidden;
  background: #000;
  border: none;
}

.scrolling-text-new {
  display: flex;
  white-space: nowrap;
  animation: scroll-new 16s linear infinite;
}

.scrolling-text-new span {
  margin-right: 45px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}

@keyframes scroll-new {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}




.scrolling-wrapper {
  width: 100%;
  overflow: hidden;
  background: #000;
  border: none;
}

.scrolling-text {
  display: flex;
  white-space: nowrap;
}

.scrolling-text span {
  margin-right: 45px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}



/* Inicio shorts */
.shortscontainer {
  width: 105%;
  display: flex;
  justify-content: center;
  padding: 0;
  background-color: #F5F3EE;
  overflow-x: hidden;
  position: relative;
}

.shorts-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  gap: 40px;
  margin-top: 0;
  overflow: hidden;
}

/* Wrapper para o texto */
.texto-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Texto à esquerda flutuante */
.shorts-texto {
  flex: 1;
  max-width: calc(100vw - 450px); /* não empurra o vídeo */
  color: #000;
  font-family: "Poppins", sans-serif;
  transition: transform 0.1s linear;
}

/* Estilos do texto */
.shorts-texto h2 {
  margin-bottom: 15px;
  margin-top: 200px;
  font-size: 2.6em;
  line-height: 1.2em;
  font-weight: 800;
}
.shorts-texto p {
  font-size: 18px;
  line-height: 1.5;
}

/* Shorts à direita */
.shorts-video {
  width: 650px;    
  max-height: 650px;
  flex-shrink: 0; /* não deixa encolher */
  pointer-events: none;
  overflow: hidden;
  position: relative;
  height: 110vh;
  overflow: hidden;
}
.shorts-video iframe {
  width: 180%;
  aspect-ratio: 9 / 16; /* vertical */
  border: none;
  display: block;
  transform-origin: center;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(1.0);
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
}

@media (min-width: 901px) and (max-width: 1200px) {
.shortscontainer {
  width: 105%;
  display: flex;
  justify-content: center;
  padding: 0;
  background-color: #F5F3EE;
  overflow-x: hidden;
  position: relative;
}

.shorts-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  gap: 40px;
  margin-top: 0;
  overflow: hidden;
}

/* Wrapper para o texto */
.texto-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Texto à esquerda flutuante */
.shorts-texto {
  flex: 1;
  max-width: calc(100vw - 450px); /* não empurra o vídeo */
  color: #000;
  font-family: "Poppins", sans-serif;
  transition: transform 0.1s linear;
}

/* Estilos do texto */
.shorts-texto h2 {
  margin-bottom: 15px;
  margin-top: 200px;
  font-size: 2.6em;
  line-height: 1.2em;
  font-weight: 800;
}
.shorts-texto p {
  font-size: 18px;
  line-height: 1.5;
}

/* Shorts à direita */
.shorts-video {
  width: 650px;    
  max-height: 650px;
  flex-shrink: 0; /* não deixa encolher */
  pointer-events: none;
  overflow: hidden;
  position: relative;
  height: 110vh;
  overflow: hidden;
}
.shorts-video iframe {
  width: 180%;
  aspect-ratio: 9 / 16; /* vertical */
  border: none;
  display: block;
  transform-origin: center;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(1.0);
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
}
}


/* Responsivo */
@media (max-width: 900px) {
  .shorts-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .shorts-video {
    width: 100%;
    margin-top: 180px;
  }
  .shorts-texto {
    max-width: 90%;
    text-align: center;
  }
}

@media(max-width: 500px) {

.scrolling-wrapper {
  display: none;
}

.scrolling-wrapper-new {
  display: none;
}


.shortscontainer {
  width: 100%;
}
}

@media (min-width: 300px) and (max-width: 369px) {
  .shorts-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .shorts-video {
    width: 100%;
    margin-top: 20px;
    max-height: 310px;
  }
  .shorts-texto {
    max-width: 90%;
    text-align: center;
  }

  .shorts-texto h2 {
  margin-bottom: 15px;
  margin-top: 120px;
  font-size: 1.5em;
  line-height: 1.2em;
      margin-left: 25px;
  margin-right: 25px;
}
.shorts-texto p {
  font-size: 14px;
  line-height: 1.5;
      margin-left: 25px;
  margin-right: 25px;
}

.arrow {
  position: absolute;
  bottom: 90px;
  font-size: 2.5rem;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
  animation: bounce 2s infinite;
  z-index: 2;
}

.shortscontainer {
  width: 100%;
}
}

@media (min-width: 370px) and (max-width: 391px) {
  .shorts-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .shorts-video {
    width: 100%;
    margin-top: 40px;
    max-height: 380px;
  }
  .shorts-texto {
    max-width: 90%;
    text-align: justify;
    margin-left: 5px;
  }

  .shorts-texto h2 {
  margin-bottom: 25px;
  margin-top: 20px;
  font-size: 2.0em;
  line-height: 1.2em;
      margin-left: 15px;
  margin-right: 0px;
}
.shorts-texto p {
  font-size: 14px;
  line-height: 1.5;
      margin-left: 15px;
  margin-right: 0px;
}

.arrow {
  position: absolute;
  bottom: 80px;
  font-size: 2.5rem;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
  animation: bounce 2s infinite;
  z-index: 2;
}

.shortscontainer {
  width: 100%;
}

.shorts-video iframe {
  width: 195% !important;
  aspect-ratio: 9 / 16; /* vertical */
  border: none;
  display: block;
  transform-origin: center;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(1.0);
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
}
}

@media (min-width: 392px) and (max-width: 500px) {
  .shorts-content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .shorts-video {
    width: 100%;
    margin-top: 25px;
    max-height: 420px;
  }
  .shorts-texto {
    max-width: 90%;
    text-align: justify;
    margin-left: 5px;
  }

  .shorts-texto h2 {
  margin-bottom: 45px;
  margin-top: 50px;
  font-size: 2.2em;
  line-height: 1.2em;
      margin-left: 15px;
  margin-right: 5px;
}
.shorts-texto p {
  font-size: 18px;
  line-height: 1.5;
      margin-left: 15px;
  margin-right: 5px;
}

.arrow {
  position: absolute;
  bottom: 60px;
  font-size: 2.5rem;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
  animation: bounce 2s infinite;
  z-index: 2;
}

.shortscontainer {
  width: 100%;
}

.shorts-video iframe {
  width: 195%;
  aspect-ratio: 9 / 16; /* vertical */
  border: none;
  display: block;
  transform-origin: center;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(1.0);
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
}

}





@media  (min-width: 901px) and (max-width: 970px) {
.shorts-video {
  width: 550px;    
  max-height: 650px;
  flex-shrink: 0; /* não deixa encolher */
  pointer-events: none;
  overflow: hidden;
  position: relative;
  height: 110vh;
}

.shorts-video iframe {
  width: 100%;
  aspect-ratio: 9 / 16; /* vertical */
  border: none;
  display: block;
  transform-origin: center;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(2.6);
  position: absolute;
  top: 50%;
  left: 50%;
}

  .shorts-texto {
    max-width: 90%;
    text-align: center;
    margin-left: 10px;
  }

  .shorts-texto h2 {
  margin-bottom: 15px;
  margin-top: 220px;
  font-size: 1.6em;
  line-height: 1.2em;
}
.shorts-texto p {
  font-size: 13px;
  line-height: 1.5;
}
}

@media  (min-width: 971px) and (max-width: 1200px) {
.shorts-video {
  width: 600px;    
  max-height: 900px;
  flex-shrink: 0; /* não deixa encolher */
  pointer-events: none;
  overflow: hidden;
  position: relative;
  height: 110vh;
}

.shorts-video iframe {
  width: 100%;
  aspect-ratio: 9 / 16; /* vertical */
  border: none;
  display: block;
  transform-origin: center;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(2.6);
  position: absolute;
  top: 50%;
  left: 50%;
}

  .shorts-texto {
    max-width: 90%;
    text-align: center;
    margin-left: 10px;
  }

  .shorts-texto h2 {
  margin-bottom: 15px;
  margin-top: 370px;
  font-size: 1.8em;
  line-height: 1.2em;
}
.shorts-texto p {
  font-size: 13px;
  line-height: 1.5;
}
}


.acessores {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0px 0;
  padding: 0 20px;
  z-index: 1;
  margin-bottom: 60px;
}

.acessor {
  flex: 1 1 calc(20% - 20px);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 15px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px;
}

.acessor:hover {
  transition: box-shadow 0.3s;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ---------- FOTO E ÍCONE WHATSAPP ---------- */
.foto-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

.foto-wrapper img {
  display: block;
  width: 100%;
  max-width: 350px;
  max-height: 250px;
  border-radius: 5px;
  object-fit: cover;
  object-position: top;
}

/* Ícone WhatsApp no canto inferior direito */
.whatsapp-link {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
  text-decoration: none;
}

.whatsapp-link:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);

}


.whatsapp-link i {
  color: #fff;
  font-size: 22px;
}
/* ---------- FIM FOTO + WHATSAPP ---------- */

.acessor:hover img {
  transition: box-shadow 0.3s;
}

.acessor h3 {
  font-size: 1.4em;
  margin: 5px 0;
  color: #333;
}

.acessor h1 {
  font-size: 1.0em;
  font-weight: 600;
  margin: 0;
  color: #555;
  text-transform: uppercase;
  font-family: "Urbanist";
}

.titulo-section {
  flex-basis: 100%;
  text-align: center;
  margin-top: 80px; 
}

.titulo-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
}

/* ---------- RESPONSIVO ---------- */
@media (min-width: 800px) and (max-width: 1030px) {
  .acessores {
    justify-content: center;
  }

  .acessor {
    flex: 1 1 calc(45% - 20px);
    margin-bottom: 20px;
  }

    .acessor:last-child {
    flex: 1 1 calc(50% - 10px); /* ocupa metade do espaço */
    max-width: calc(50% - 10px); /* evita ficar gigante */
  
  }

    .foto-wrapper {
    aspect-ratio: 4 / 3; /* mantém proporção */
    height: 350px;
  }

  .foto-wrapper img {
  max-height: 350px;
  max-width: 600px;
}
}

@media (max-width: 768px) {
  .acessor {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }

  .whatsapp-link {
    width: 32px;
    height: 32px;
    bottom: 8px;
    right: 8px;
    font-size: 18px;
  }

    .foto-wrapper {
    aspect-ratio: 4 / 3; /* mantém proporção */
    height: 600px;
  }

  .foto-wrapper img {
  max-height: 600px;
  max-width: 100%;
}

}

/* Responsivo para mobile */
@media (max-width: 480px) {
  .acessor {
    flex: 1 1 100%;
  }

    .foto-wrapper {
    aspect-ratio: 4 / 3; /* mantém proporção */
    height: 350px;
  }

  .foto-wrapper img {
  max-height: 350px;
}

  .whatsapp-link {
    width: 14%;
    max-width: 36px;
    font-size: calc(11px + 0.5vw);
}
}




@media (min-width: 769px) and (max-width: 992px) {
  .acessores {
    flex: 3 1 100%;
    margin-bottom: 20px;
  }


  .foto-wrapper {
    aspect-ratio: 4 / 3; /* mantém proporção */
    height: 350px;
  }

  .foto-wrapper img {
  max-height: 350px;
}

  .whatsapp-link {
    width: 14%;
    max-width: 36px;
    font-size: calc(11px + 0.5vw);
  }
}

/* ========================= */
/* SEÇÃO PRINCIPAL */
/* ========================= */
.distribuidoras {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 30px;
  padding: 40px 20px;
  background-color: #F5F3EE;
  flex-wrap: wrap;
  text-align: center;
  margin-bottom: 70px;
  background-image: url('https://imagedelivery.net/byoCLdsSBwTViI2_vNwS4A/790c1c19-5abf-446f-d07a-f151f166b200/public');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  overflow: hidden;
  min-height: 400px;
}

.distribuidoras .coluna {
  flex: 1 1 300px;
  background: transparent;
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.3s ease;
  max-width: 500px;
}

.distribuidoras .coluna:hover {
  transform: translateY(-5px);
}

.distribuidoras h2 {
  color: #fff;
  margin-bottom: 10px;
}

.distribuidoras p {
  color: #fff;
  margin-bottom: 20px;
}

.distribuidoras h3 span {
  color: #fff;
  line-height: 2px;
  font-weight: 300;
  font-size: 13px;
  display: block;
  margin-top: 40px;
}

.distribuidoras h3 {
  color: #fff;
  line-height: 50px;
  font-weight: 300;
  font-size: 13px;
  display: block;
}

/* ========================= */
/* BOTÕES */
/* ========================= */
.distribuidoras .coluna a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  margin: 5px 10px;
  padding: 10px 28px;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  background-color: #000;
  font-weight: 500;
  transition: all 0.3s ease;
}

.distribuidoras .coluna i {
  margin-right: 10px;
}


.distribuidoras .coluna a:hover {
  background-color: transparent;
  border: solid 2px #fff;
}

.titulo-principal {
  width: 100%;
  font-size: 2.5em;
  color: #fff;
  margin: 10px 0 40px 0;
  font-weight: 600;
  text-align: center;
  letter-spacing: 1px;
}

/* ========================= */
/* RESPONSIVIDADE */
/* ========================= */

/* Telas médias (até 1200px) */
@media (min-width: 992px) and (max-width: 1200px) {
  .distribuidoras {
    gap: 30px;
  }

  .distribuidoras .coluna {
    flex: 1 1 45%;
    max-width: 420px;
  }

    .distribuidoras .coluna a {
    margin: 5px;
    padding: 8px 14px;
    font-size: 0.9em;
  }

  .titulo-principal {
    font-size: 1.8em;
    margin: 30px 0 20px 0;
  }

  .distribuidoras h3 span {
  color: #fff;
  line-height: 35px;
  font-weight: 300;
  font-size: 11px;
  display: block;
  margin-top: 40px;
}
  .distribuidoras h3  {
  line-height: 45px;
  font-weight: 500;
  font-size: 11px;

}
}

/* Tablets e telas menores (até 991px) */
@media (max-width: 991px) {
  .distribuidoras {
    justify-content: center;
    gap: 25px;
  }

  .distribuidoras .coluna {
    flex: 1 1 80%;
    max-width: 480px;
  }

  .titulo-principal {
    font-size: 2.2em;
    margin: 40px 0 30px 0;
  }
}

/* Celulares (até 600px) */
@media (max-width: 600px) {
  .distribuidoras {
    flex-direction: column;
    align-items: center;
    padding: 20px 10px;
    gap: 20px;
  }

  .distribuidoras .coluna {
    flex: 1 1 100%;
    max-width: 95%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Container de botões lado a lado */
  .distribuidoras .coluna .botoes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .distribuidoras .coluna a {
    margin: 5px;
    padding: 8px 14px;
    font-size: 0.9em;
  }

  .titulo-principal {
    font-size: 1.8em;
    margin: 30px 0 20px 0;
  }

  .distribuidoras h3 span {
  color: #fff;
  line-height: 25px;
  font-weight: 300;
  font-size: 12px;
  display: block;
  margin-top: 40px;
}
  .distribuidoras h3  {
  line-height: 25px;
  font-weight: 500;
  font-size: 11px;

}
}

/* ==== MOBILE: sobrescreve apenas no celular ==== */
@media screen and (max-width: 768px) {


  header,
  header.rolar {
    position: fixed !important;   
    top: 0; left: 0; right: 0;
    background: transparent !important;  
    box-shadow: none !important;         
    padding: 6px 0 !important;
    z-index: 10 !important;              
  }

  header .menu-desktop { display: none !important; }
  header .btn-menu-mob { display: block !important; }

 
  body, .interface {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }


  .mobile-video-container {
    margin-top: 0 !important;
  }
}