*{
    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;
}

.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://res.cloudinary.com/dg9e84zsg/image/upload/v1760197123/logo1-Photoroom_nmxohq.png');
}

.mobile-header.scrolled .menu-btn span {
    background-color: #333; 
}

.mobile-header.scrolled .logo-mobile {
    content: url('https://res.cloudinary.com/dg9e84zsg/image/upload/v1760197123/logo1_copiar-Photoroom_a7jxxe.png'); 
}

.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: 100%;
    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;
      }

      footer .bottom-footer {
        border-top: 2px solid #000;
      }

      /* Video */

.video-container {
  position: relative;
  width: 100vw;        
  max-width: 100%;     
  overflow: hidden;
  padding-top: 56.25%;
  pointer-events: none;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

@media (max-width: 600px) {
  .video-container {
    padding-top: 125%; /* 5/4 */
  }
}
@media (min-width: 601px) and (max-width: 930px) {
  .video-container {
    padding-top: 100%; /* 1:1 */
  }
}

html, body {
  overflow-x: hidden;
}

/* Container do vídeo*/
.fullscreen-video-container {
  overflow: hidden;
}

/* ------------------- Vídeo Mobile ------------------- */
.mobile-video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 177.77%; /* 9:16 → Shorts */
  display: none;        
  pointer-events: none;
}

.mobile-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .fullscreen-video-container {
    display: none; 
  }
  .mobile-video-container {
    display: block; 
  }
}

@media (min-width: 768px) and (max-width: 931px) {
  .fullscreen-video-container {
    display: none; 
    max-height: 300px;
  }
  .mobile-video-container {
    display: block; 
  }
}

  /* fim Video */
  /* quem somos */

.txt-quemsomos{
    color: #000;
    justify-content: center;
    padding: 160px 10px;
    background-color: #F5F3EE;
    
}

.txt-quemsomos h3{
    text-align: center;
    padding: 8px ;
    margin: 2px;
  font-size: 50px;
  font-family: "Poppinst", sans-serif;
  margin-bottom: 15px;
    font-weight: 1.2em;
  font-style: normal;
}

.txt-quemsomos h1{
        text-align: center;
    padding: 25px;
        font-size: 25px;
        padding-top: 30px;
}

.txt-quemsomos p{
        text-align: justify;
        font-weight: 800px;
        margin-left: 140px;
        margin-right: 170px;
        line-height: 25px;
        color: #555;
        font-family: "Montserrat", sans-serif;
        font-size: 1.1em;
}

.txt-quemsomos span{
    text-align: left;
font-weight: bold;
font-weight: 700px;
}

@media (max-width: 440px) {
.txt-quemsomos h1{
        text-align: center;
    padding: 25px;
        font-size: 25px;
        padding-top: 30px;
}

.txt-quemsomos p{
        text-align: justify;
        font-weight: 800px;
        margin-left: 190px;
        margin-right: 190px;
        line-height: 25px;
        color: #555;
        font-family: "Poppins", sans-serif;
        font-size: 1.1em;
}

.txt-quemsomos span{
    text-align: left;
font-weight: bold;
font-weight: 700px;
}
}

  /* /quem somos/ */

  /* marcas-inicio */
.brand-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.brand-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
}

.image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1; 
  border-radius: 8px;
}

.image-wrapper:hover::after {
  opacity: 1;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  transition: transform 0.3s ease;
  z-index: 0;
  position: relative;
}

.image-wrapper:hover img {
  transform: scale(1.03);
}

.hover-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: transparent !important; 
  color: #fff !important;                 
  border: 2px solid #fff !important;       
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700 !important;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 2;
}



.image-wrapper:hover .hover-button {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

  .slider-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 8px;
    padding-bottom: 50px;
    border-radius: 8px;
  }

  .section-title {
 display: none;
  }

  .slides-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 400%; /* 4 slides */
  }

  .slide {
    flex: 0 0 25%; 
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  /* Ajustes de layout para cada tipo de slide */
  .slide.four-cards .brand-card {
    width: 22%;
  }
  .slide.four-cards2 .brand-card {
    width: 40%;
  }
  .slide.three-cards .brand-card {
    width: 22%;
  }
  .slide.two-cards .brand-card {
    width: 40%;
  }
  .slide.one-card .brand-card {
    width: 60%;
  }

  .brand-card {
    background: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-align: center;
  }

  .slide.three-cards .brand-card img{
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    object-position: top;

  }

    .slide.two-cards .brand-card img{
     width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    object-position: top;
  }

      .slide.four-cards2 .brand-card img{
     width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    object-position: top;
  }


.brand-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
  }

.slide.four-cards2 .brand-name {
  display: flex;
  justify-content: center; 
  align-items: center;     
  width: 100%;             
  height: 50px;            
  overflow: hidden;        
  padding: 0 5px;          
}

  .brand-name {
    padding: 12px 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #fff;
  }

.brand-name {
  padding: 12px 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #fff;
  height: 50px;       
  overflow: hidden;   
  display: flex;      
  justify-content: center;
  align-items: center;
}


/* Zoom por tipo de slide */
.brand-name img {
  object-fit: contain;
  display: block;
  height: 100%;
  width: auto;
  transition: transform 0.3s ease;
}


.slide.four-cards .brand-name img {
  transform: scale(2.8);
}

.slide.four-cards2 .brand-name img {
  max-height: 100%;        
  max-width: 100%;         
  width: auto;             
  height: auto;            
  object-fit: contain;
}

.slide.three-cards .brand-name img {
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
  display: block;
  transform: scale(2.9);
}

.slide.three-cards .brand-card:nth-child(4) .brand-name img {
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
  display: block;
  transform: scale(1.7);
}

.slide.two-cards .brand-name img {
  transform: scale(0.2);
}

.slide.four-cards .brand-card:nth-child(4) .brand-name img {
  transform: scale(5.4);
}

.slide.four-cards .brand-card:nth-child(3) .brand-name img {
  transform: scale(1.2);
}

  .brand-card {
  position: relative; 
  background: #f8f8f8;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}


.brand-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}


.brand-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  pointer-events: none;
  z-index: 1;
}

.brand-card:hover::before {
  opacity: 1;
}


.brand-card img {
  position: relative;
  z-index: 0;
  border-radius: 8px 8px 0 0;
}

/* Botão "Ver mais" */
.hover-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 8px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  color: #333;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: auto;
  user-select: none;
  white-space: nowrap;
}


.brand-card:hover .hover-button {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}


  .nav-buttons {
    text-align: center;
    margin-top: 20px;
  }
  .nav-buttons button {
    background: #ddd;
    border: none;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    margin: 0 6px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  .nav-buttons button.active,
  .nav-buttons button:hover {
    background: #000;
  }

  /* Setas de navegação */
  .arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    color: #000;
    border: none;
    background-color: transparent;
    font-size: 2rem;
    width: 42px;
    height: 42px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
  }

  .arrow.left {
    left: 8px;
  }
  .arrow.right {
    right: 8px;
  }


  @media (max-width: 768px) {
    .slide.four-cards .brand-card,
    .slide.three-cards .brand-card {
      width: 45%;
    }
    .slide.two-cards .brand-card,
    .slide.one-card .brand-card {
      width: 70%;
    }
  }
  @media (max-width: 480px) {
    .slide.four-cards .brand-card,
    .slide.three-cards .brand-card,
    .slide.two-cards .brand-card,
    .slide.one-card .brand-card {
      width: 90%;
    }
  }

  section.marcas-home .nossas-marcas-home h3 {
        font-size: 2em;
    font-weight: 500;
     text-align: center;

  }

  .nossasadulto {
    text-align: center;
    margin-bottom: 15px;
   color: #111;
    font-family: "Poppins" , sans-serif;
  }

  .nossasadulto h3 {
    text-align: center;
    padding: 8px ;
    margin: 2px;
  font-size: 40px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
    font-weight: 0.5em;
  
  }


    /*/ marcas-inicio/ */

    /* Desktop: ocultar mobile */
.marcas-mobile { display: none; }

@media (max-width: 1030px) {

  .marcas-home { display: none; }
  .marcas-mobile { display: block; padding: 10px; }

  
  

  .marcas-mobile-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0px;
    text-transform: uppercase;
  }


  .marcas-mobile-carousel {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 12px;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .marcas-mobile-carousel::-webkit-scrollbar {
    display: none; 
  }

  .marca-card {
    flex: 0 0 70%; 
    background: #f8f8f8;
    border-radius: 8px;
    text-align: center;
    padding: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

.marca-nome {
    display: flex;
  justify-content: center; 
  align-items: center;     
  width: 100%;             
  max-height: 50px;            
  overflow: hidden;        
  padding: 0 5px;  
  transform: scale(0.5);
 overflow: visible;
}

.marca-nome1 {
    display: flex;
  justify-content: center; 
  align-items: center;     
  width: 100%;             
  max-height: 50px;            
  overflow: hidden;        
  padding: 0 5px;  
  transform: scale(0.4);
 overflow: visible;
}

  }



@media (max-width: 500px) {
    .marca-card {
    flex: 0 0 100%; 
    background: #f8f8f8;
    border-radius: 8px;
    text-align: center;
    padding: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 40px;
}

.marca-nome {
    display: flex;
  justify-content: center; 
  align-items: center;     
  width: 100%;             
  max-height: 50px;            
  overflow: hidden;        
  padding: 0 5px;  
  transform: scale(0.5);
 overflow: visible;
}

.marca-nome1 {
    display: flex;
  justify-content: center; 
  align-items: center;     
  width: 100%;             
  max-height: 50px;            
  overflow: hidden;        
  padding: 0 5px;  
  transform: scale(0.4);
 overflow: visible;
}


}

  .marca-card img {
    max-width: 340px;
    max-height: 560px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
  }



@media (min-width: 501px) and (max-width: 650px) {
  .marca-card {
    flex: 0 0 80%;
    margin: 50px auto 0; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .marca-card img {
    width: 80vw;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }

  .marca-nome {
    display: flex;
  justify-content: center; 
  align-items: center;     
  width: 100%;             
  max-height: 50px;            
  overflow: hidden;        
  padding: 0 5px;  
  transform: scale(0.5);
 overflow: visible;
}

.marca-nome1 {
    display: flex;
  justify-content: center; 
  align-items: center;     
  width: 100%;             
  max-height: 50px;            
  overflow: hidden;        
  padding: 0 5px;  
  transform: scale(0.4);
 overflow: visible;
}


}

/* Global para garantir visibilidade */
.marca-nome,
.marca-nome1 {
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-height: 50px;
  overflow: visible !important; /* evita corte */
  padding: 0 5px;
}

@media (min-width: 651px) and (max-width: 900px) {

  .marca-card {
    flex: 0 0 50%;
    margin: 50px auto 0; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .marca-card img {
    width: 70vw;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }

  .marca-nome {
    display: flex;
  justify-content: center; 
  align-items: center;     
  width: 100%;             
  max-height: 50px;            
  overflow: hidden;        
  padding: 0 5px;  
  transform: scale(0.5);
 overflow: visible;
}

.marca-nome1 {
    display: flex;
  justify-content: center; 
  align-items: center;     
  width: 100%;             
  max-height: 50px;            
  overflow: hidden;        
  padding: 0 5px;  
  transform: scale(0.4);
 overflow: visible;
}
}

@media (min-width: 901px) and (max-width: 1030px) {

  .marca-card {
    flex: 0 0 33%;
    margin: 50px auto 0; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .marca-card img {
    width: 80vw;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }

  .marca-nome {
    display: flex;
  justify-content: center; 
  align-items: center;     
  width: 100%;             
  max-height: 50px;            
  overflow: hidden;        
  padding: 0 5px;  
  transform: scale(0.5);
 overflow: visible;
}

.marca-nome1 {
    display: flex;
  justify-content: center; 
  align-items: center;     
  width: 100%;             
  max-height: 50px;            
  overflow: hidden;        
  padding: 0 5px;  
  transform: scale(0.4);
 overflow: visible;
}

}



.marcas-mobile {
  position: relative; 
}

/* Setas apenas mobile */
@media (min-width: 200px) and (max-width: 650px) {
/* Setas flutuantes sobre os cards, centralizadas verticalmente */
.arrows-mobile-fixed {
  position: absolute;
  top: 55%;                  /* centraliza verticalmente */
  left: 0;
  right: 0;
  border-radius: 50%;
  display: flex;
  justify-content: space-between; /* seta esquerda à esquerda, direita à direita */
  padding: 0 10px;           /* espaçamento das bordas */
  transform: translateY(-50%); /* ajuste exato vertical */
  z-index: 10;
  pointer-events: none;       /* permite clicar apenas nas setas */
}

.arrow-mobile {
  pointer-events: auto;       /* ativa o clique nas setas */
  border: none;
  width: 75px;
  color: #222;
  background-color: transparent;
  height: 50px;
  font-size: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.arrow-mobile:hover {
  transform: scale(1.2);
}
}

@media (min-width: 651px) and (max-width: 1030px) {
 /* Setas flutuantes sobre os cards, centralizadas verticalmente */
.arrows-mobile-fixed {
  position: absolute;
  top: 55%;                  /* centraliza verticalmente */
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between; /* seta esquerda à esquerda, direita à direita */
  padding: 0 10px;           /* espaçamento das bordas */
  transform: translateY(-50%); /* ajuste exato vertical */
  z-index: 10;
  pointer-events: none;       /* permite clicar apenas nas setas */
}

.arrow-mobile {
  pointer-events: auto;       /* ativa o clique nas setas */
  background: transparent;
  border: none;
  border-radius: 50%;        /* deixa as setas arredondadas */
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.arrow-mobile:hover {
  transform: scale(1.2);
}
}

/* Esconde no desktop */
@media (min-width: 1030px) {
 /* Setas flutuantes sobre os cards, centralizadas verticalmente */
.arrows-mobile-fixed {
  position: absolute;
  top: 50%;                  /* centraliza verticalmente */
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between; /* seta esquerda à esquerda, direita à direita */
  padding: 0 10px;           /* espaçamento das bordas */
  transform: translateY(-50%); /* ajuste exato vertical */
  z-index: 10;
  pointer-events: none;       /* permite clicar apenas nas setas */
}

.arrow-mobile {
  pointer-events: auto;       /* ativa o clique nas setas */
  background: transparent;
  border: none;
  border-radius: 50%;        /* deixa as setas arredondadas */
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.arrow-mobile:hover {
  transform: scale(1.2);
}
}

.marca-card {
  position: relative;
  overflow: hidden;
}

.marca-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(5px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  border-radius: 8px;
}

.marca-card.active .overlay {
  opacity: 1;
  pointer-events: all;
  background-color: rgba(0,0,0,0.5);
}

.marca-card .ver-mais {
  background: transparent;
  color: #f5f5f5;
  font-weight: bold;
  padding: 14px 24px;
  border-radius: 6px;
  border: solid 2px #f5f5f5;
  cursor: pointer;
  font-size: 1rem;
  
}




    /* Estilo podcast */

    section.podcast {
        height: 600px;
        background-image: url("https://res.cloudinary.com/dg9e84zsg/image/upload/v1760197124/WhatsApp_Image_2025-07-22_at_10.48.39_oovs8g.jpg");
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        color: #Fff;
        text-align: center;
        background-attachment: fixed;
    }

.podcast > .overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000000ac;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.podcast > .interface {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    z-index: 2;
    position: relative;
   top: 10%;
}

.podcast h3 {
    font-size: 2em;
    line-height: 50px;
    font-weight: 300;
    line-height: 110px;
    color: #F5F3EE;
}

.podcast h3 span {
    display: block;
    font-weight: 400;
    font-size: 1.8em;
    color: #B49F79;
}

.podcast p {
    margin-top: 40px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 300;
    color: #F5F3EE;
    width: 700px;
}



.podcast button{
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 2px solid #B49F79;
        background-color: transparent;
        color: #B49F79;
        font-size: 24px;
        cursor: pointer;
        margin: 0 10px;
        transition: 0.5s;
        margin-top: 00px;


}

    .podcast button:hover{
        background-color: transparent;
        color: #B49F79;
        border-color: #B49F79;
        transform: scale(1.05);
      }

/* === RESPONSIVO SECTION.PODCAST === */
@media (max-width: 1024px) {
    section.podcast {
        height: 700px; /* reduz altura em telas médias */
    }

    .podcast > .interface {
        width: 85%;       /* mais espaço horizontal para textos */
        max-width: 1000px;
    }

    .podcast h3 {
        font-size: 1.8em;
        line-height: 50px;
    }

    .podcast h3 span {
        font-size: 1.6em;
    }

    .podcast p {
        font-size: 18px;
        font-weight: 400;
        width: 100%;
    }

    .podcast button {
        width: 80px;
        height: 80px;
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    section.podcast {
        height: 600px;
    }

    .podcast > .interface {
        width: 90%;
        
    }

    .podcast h3 {
        font-size: 1.6em;
        line-height: 45px;
    }

    .podcast h3 span {
        font-size: 1.4em;
    }

    .podcast p {
        font-size: 16px;
        max-width: 400px;
    }

    .podcast button {
        width: 70px;
        height: 70px;
        font-size: 20px;
    }
}

.logo-span {
  height: 25px; /* ajuste conforme o tamanho desejado */
  vertical-align: middle; /* alinha com o texto */
  transform: scale(6.4);
}

@media (max-width: 480px) {
    section.podcast {
        height: 650px;
         background-position: center center; /* centraliza vertical e horizontal */
    background-size: cover; /* cobre todo o container, corta o mínimo possível */
    background-repeat: no-repeat;
    background-attachment: scroll; /* remove fixed no mobile */
    }

    .podcast > .interface {
        width: 95%;
        top: 10%;
    }

    .podcast h3 {
        font-size: 1.4em;
        line-height: 40px;
    }

    .podcast h3 span {
        font-size: 1.4em;
        text-transform: uppercase;
    }


    .podcast button {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }

    .logo-span {
  height: 25px; /* ajuste conforme o tamanho desejado */
  vertical-align: middle; /* alinha com o texto */
  transform: scale(5.4);
}

.podcast p {
    margin-top: 40px;
    margin-bottom: 10px;
    font-size: 12px;
    font-weight: 500;
    color: #F5F3EE;
    width: 320px;
}
}




section.swiper img {
  position: relative;
  display: inline-block; 
}

section.swiper button {
  position: absolute;
  top: 45%; 
  left: 25%; 
  background-color: transparent;
  border: solid 1px #fff;
  border-radius: 8px;
  width: 150px;
  height: 40px;
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}

section.swiper button:hover {
            background-color: #0000006e;
        color: #fff;
        border-color: #fff;
}

.trabalhe-conosco {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 50px 0 30px 0;
}

.trab-cons {
  position: relative;
  width: 100%;
  height: 100%;
  background-image: url('https://res.cloudinary.com/dg9e84zsg/image/upload/v1760202669/ramoprin_mi5evy.webp'); 
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Texto sobreposto */
.trab-cons .texto-sobreposto {
  position: absolute;
  top: 55%;
  left: 80%;
  transform: translate(-50%, -50%);
  color: #f5f3f3;
  font-size: 1.3em;
  text-align: left;
  padding: 20px 40px;
  border-radius: 10px;
  z-index: 2;
  width: 500px;
  white-space: normal;
  word-wrap: break-word;
  line-height: 1.3em;
}

.trab-cons .texto-sobreposto h1 {
  line-height: 1em;
  margin-bottom: 8px;
}

.trab-cons .texto-sobreposto p span {
  display: inline;
}

/* Botão */
.trab-cons button {
  width: 190px;
  height: 35px;
  border-radius: 8px;
  border: 2px solid #f5f3f3;
  background-color: transparent;
  color: #f5f3f3;
  font-size: 18px;
  cursor: pointer;
  margin-top: 15px;
  transition: 0.5s;
}

.trab-cons button:hover {
  transform: scale(1.05);
}

/* ============= RESPONSIVIDADE ============= */

/* Tablets */
@media (max-width: 1024px) {
  .trab-cons .texto-sobreposto {
    left: 70%;
    width: 400px;
    font-size: 1.1em;
  }
}

/* Celulares grandes */
@media (max-width: 768px) {
  .trab-cons {
    background-position: 50% 30%;
  }

  .trab-cons .texto-sobreposto {
    left: 50%;
    top: 60%;
    width: 80%;
    text-align: center;
    padding: 15px 25px;
    font-size: 1em;
  }

  .trab-cons button {
    width: 160px;
    height: 32px;
    font-size: 16px;
  }
}

/* Celulares pequenos */
@media (max-width: 480px) {
  .trabalhe-conosco {
    height: auto;
  }

  .trab-cons {
    height: 100vh;
    background-position: top;
   
    
  }

  .trab-cons .texto-sobreposto {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 30px 15px;
    width: 100%;
    text-align: left;
    font-size: 0.95em;
    color: #fff;
  }

  .trab-cons button {
    width: 140px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {

  /* Header */
  header .menu-desktop { display: none; }
  header .btn-menu-mob { display: block; }


  /* Quem somos */
  .txt-quemsomos {
    padding: 40px 20px;
  }

  .txt-quemsomos h3 {
    font-size: 22px;
  }

  .txt-quemsomos h1 {
    font-size: 20px;
  }

  .txt-quemsomos p {
    margin: 0;
    font-size: 15px;
    line-height: 22px;
  }

  /* Podcast */




  /* Trabalhe conosco */
  .trab-cons .texto-sobreposto {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    font-size: 1.2em;
    padding: 15px;
  }

  .trab-cons button {
    width: 160px;
    height: 40px;
    font-size: 16px;
  }

  /* Footer */
  footer {
    padding: 20px 10px;
  }

  footer .top-footer button {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  footer .bottom-footer p {
    font-size: 14px;
  }
}


.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;
}



/* ==== MOBILE: sobrescreve apenas no celular ==== */
@media screen and (max-width: 768px) {


  header,
  header.rolar {
    position: absolute !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;
  }
}










