@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@font-face {
  font-family: 'NewYork';
  src: url('../Font/NewYork.woff2') format('woff2'),
      url(' ../Font/NewYork.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Container padrão */
.container {
  max-width: 1900px;
  margin: 0 50px;
  padding: 0 20px;
}

/* Header */
.header {
  position: absolute;
  top: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 100;
}

.header__content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo img {
  height: 80px;
}

.header__nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    list-style: none;
    margin-left: 0rem;
    max-width: 600px;
}

.header__nav ul li a{
  text-decoration: none;
  color: #FFFFFF;
  font-family: 'Poppins';
  font-weight: 200;
  padding: 10px 20px;
  border-radius: 30px;
  transition: background 0.3s, color 0.3s;
}


.header__contact .btn-primary {
  padding: 10px 20px;
  background-color: #718B68; /* Cor verde saúde */
  color: #fff;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-family: 'Poppins';
  font-weight: 200;
  transition: background 0.3s;
}

.header__contact .btn-primary:hover {
  background-color: #546A4D;
}

.nav-toggle {
  display: none; /* Esconde o checkbox */
}


/* Hero Section */
.hero {
  height: 100vh;
  background-image: url('../img/Backgrounds/BIGHERO.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero__content {
  position: relative;
  z-index: 10;
  color: #fff;
  max-width: 800px;
  padding: 20px;
  margin-top: 300px;
}

.hero__content h1 {
  font-size: 62px;
  margin-bottom: 20px;
  font-family: 'NewYork';
  font-weight: 400;
  line-height: 1;

}

.hero__content p {
  font-size: 20px;
  margin-bottom: 30px;
  font-family: "poppins";
  font-weight: 100;
}

.hero__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary, .botao-glass{
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
  font-family: 'Poppins';
  font-weight: normal;
}

.btn-primary {
  background-color: #FFF;
  color: #000;
}

.btn-primary:hover {
  background-color: #FDE5E1;
}


.botao-glass {
  position: relative;
  padding: 12px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1); /* efeito vidro */
  color: #fff;
  font-family: 'Poppins';
  font-weight: 200;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  transition: all 0.3s ease;
}

.botao-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px; /* espessura da borda "falsa" */
  background: linear-gradient(to right, transparent, #fde5e1b7);
  -webkit-mask: 
    linear-gradient(#ffffff9c 0 0) content-box, 
    linear-gradient(#ffffff9c 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.botao-glass:hover::before {
  opacity: 1;
}

/* About Section */
.about {
  padding: 100px 0;
  background-image: url('../img/Backgrounds/SOBREACLIMES.png');
  background-size: cover;
  display: flex;
  justify-content: center;
}


.container.about__content {
  max-width: 1400px;
}

.about__content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.about__text {
  flex: 1 1 400px;
}

.about__text h1 {
  font-size: 52px;
  margin-bottom: 20px;
  color: #5D4346;
  font-family: 'NewYork';
  font-weight: 400;
  line-height: 1;
  
}

.about__text p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #645758;
  font-family: "poppins";
}

.btn-about{
  padding: 10px 20px;
  border-radius: 35px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  font-family: 'Poppins';
  font-weight: 200;
}

.gradient-btn {
  position: relative;
  display: inline-block;   /* ajusta ao tamanho do botão */
  padding: 1px;            /* espessura da borda degradê */
  border-radius: 30px;     /* raio externo */
  overflow: hidden;
}

.gradient-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #B5A0A3, #5D4346);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.gradient-btn:hover::before {
  opacity: 1;
}

/* 2) seu botão, agora dentro do wrapper */
.gradient-btn .btn-about {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 30px;     /* 20px (wrapper) - 2px (padding) */
  padding: 10px 16px;    /* ajuste ao seu gosto */
  background-color: #5D4346;
  color: #FFF;
  transition: background-color 0.3s ease;
  font-size: 18px;
}

.gradient-btn .btn-about:hover {
  background-color: #B5A0A3;
  font-weight: 300;
}

.about__gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 900px;
}

.about__grid {
  display: grid;
  gap: 10px;
}


.grid-two {
  grid-template-columns: repeat(2, 1fr);
}
.grid-three {
  grid-template-columns: repeat(3, 1fr);
}

.grid-two .wide {
  grid-column: span 2;
  height: 250px;
}

/* ========== NOVO: gradient-border wrapper ========== */
.gradient-border {
  position: relative;
  display: block;
  padding: 2px;            
  border-radius: 20px;
  overflow: hidden;            
}


.gradient-border::before {
  content: "";
  position: absolute;
  inset: 0;                    
  background: linear-gradient(
    to top right,
    #B5A0A3,
    #5D4346
  );
  border-radius: 20px;         
  opacity: 0;                  
  transition: opacity 0.9s ease; 
  z-index: 0;                  
}


.gradient-border > * {
  position: relative;
  z-index: 1;
}


.gradient-border:hover::before {
  opacity: 1;
}


.gradient-border:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.9s ease;
}





.gradient-border-mobile:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.9s ease;
}

.about__grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;  
}





/* Differentials Section */
.differentials {
  padding: 100px 0;
  background-image: url('../img/Backgrounds/DIFERENCIAIS.png');
  background-size: cover;
  display: flex;
  justify-content: center;
}

.container.differentials__content{
  max-width: 1280px;
}
.differentials__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.differentials__text {
  text-align: start;
  max-width: 800px;
}

.differentials__text h1 {
  font-size: 48px;
  margin-bottom: 32px;
  color: #0A1053;
  font-family: 'NewYork';
  font-weight: 400;
  line-height: 1;
}

.differentials__text p {
  font-size: 18px;
  color: #0a105370;
  font-family: "poppins";
}

.differentials__cards-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  
}

.differentials__cards {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: start;
  align-items: start
}

.cards{
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: start;
}

.card {
  background-color: inherit;
  padding: 30px 0px;
  border-radius: 10px;
}

.card h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #0A1053;
  font-family: 'Poppins';
  font-weight: 400;
}

.card p {
  font-size: 16px;
  color: #0a105370;
  font-family: "poppins";
}

.differentials__photos {
  flex: 1 1 300px;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.differentials__photos img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;  
}



/* Specialties Section */
.specialties {
  max-width: 1920px;
  padding: 100px 0;
  background-image: url('../img/Backgrounds/ESPECIALIDADES.png');
  background-size: cover;
  text-align: center;
  height: 75vh;
}

.specialties__rows{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.specialties__row__container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px
}

.specialties__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* 1) wrapper que desenha a borda degradê */
.gradient-h2 {
  position: relative;
  display: inline-block;    /* ajusta ao tamanho do conteúdo */
  padding: 1px;             /* espessura da “borda” */
  border-radius: 20px;      /* mesmo raio do h2 original */
  overflow: hidden;
  margin-top: -20px;        /* mantém o overlap com a imagem */
}

.gradient-h2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #B5A0A3, #5D4346);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.gradient-h2:hover::before {
  opacity: 1;
}

/* 2) estilos do <h2> dentro do wrapper */
.gradient-h2 h2 {
  margin: 0;
  font-family: 'Poppins';
  font-size: 18px;
  font-weight: 200;
  background-color: #5D4346;
  color: #fff;
  width: 250px;
  text-align: center;
  border: none;             /* removendo a borda sólida original */
  border-radius: 18px;      /* 20px - 2px de padding */
  position: relative;
  z-index: 1;
  transition: background-color 0.3s ease;
}

.gradient-h2 h2:hover {
  cursor: pointer;
  background-color: #B5A0A3;
}




.specialties h1{
  font-size: 52px;
  margin-bottom: 32px;
  color: #5D4342;
  font-family: 'NewYork';
  font-weight: 400;
  line-height: 1;
}

.specialties p {
  font-size: 18px;
  color: #5b4342;
  font-family: "poppins";
  margin-bottom: 40px;
}


.specialties-gradient{
  margin-top: -20px;
}

.specialties-btn{
  padding: 5px 10px !important;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-image: url('../img/Backgrounds/AVALIAÇÕES.png');
  background-size: cover;
}

.testimonials__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.testimonial-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.testimonial-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.testimonial-header img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-header h3 {
  font-size: 18px;
  margin: 0;
  color: #6B4045;
}

.testimonial-header span {
  font-size: 14px;
  color: #6B4045;
}

.testimonial-body img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.testimonial-body p {
  font-size: 16px;
  color: #8B686CCC;
  line-height: 1.6;
}

.card-bottom> .testimonial-body p {
  color:#0a1053ab
}

.card-top{
  border: 1px solid #C38D9399;
}

.card-bottom {
  border: 1px solid #0A105399;
}

.card-bottom>.testimonial-header  span {
  color: #0A1053;
}

.card-bottom>.testimonial-header  h3 {
  color: #0A1053;
}

.youtube-video{
  border-radius: 10px;
}

.video-container{
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer */
.footer {
  background-image: url('../img/Backgrounds/AGENDE.png');
  background-size: cover;
  /* padding: 100px 0; */
}

.footer__content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.footer__info {
      display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 250px;;
}

.footer__info h1 {
  font-size: 72px;
  color: #5b4342;
  margin-bottom: 20px;
  font-family: 'NewYork';
  font-weight: 400;
  line-height: 1;
}

.footer__info p {
  font-size: 18px;
  color: #5b4342;
  margin-bottom: 40px;
  font-family: "poppins";
  font-weight: 200;
} 

.footer__info p strong {
  font-weight: bold;
}

.footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.btn-primary-large {
  padding: 15px 30px;
  background-color: white;
  color: #5b4342;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: background 0.3s, color 0.3s;
  box-shadow: 3px 0px 0px 0px rgba(0,0,0,0.1);
}

.btn-primary-large:hover {
  background-color: #8B686C;
  color: white;
}

.footer__socials {
  display: flex;
  gap: 15px;
}

.footer__socials a {
  background-color: white;
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  transition: background 0.3s, border 0.3s;
  box-shadow: 3px 0px 0px 0px rgba(0,0,0,0.1);
}

.footer__socials a:hover {
  background-color: #8B686C;
  border-color: #5b4342;
  color: #fff;
}

.footer__socials img {
  width: 24px;
  height: 24px;
}

.footer__socials a:hover svg path{
  fill: #fff;
}

.footer__image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.footer__image img {
  max-width: 100%;
  height: auto;
  z-index: 10;
}
.brown-line {
  background-color: #5b4342;
  width: 100%;
  height: 30px;
}

.gradient-border-mobile {
  display: none;
}

/* Media query*/

@media (min-width: 1800px) {
  .header__nav ul {
  margin-left: -55rem; 
} 
}


/* Inicio */
/* ============================= */
/* 2) Notebooks (até 1280x800px) */
/* ============================= */



@media (max-width: 1280px) {
/* header */
.header__nav ul {
  margin-left: 0rem; /* Ajusta o espaçamento para telas menores */
}

.hero__content{
  margin-top: 225px;
}

/* About */
.about__content {
  flex-wrap: nowrap;
}

.about__text h1{
font-size: 35px;
}

.about__text p {
  font-size: 14px;
}

/* Defferentials  */

.differentials__text h1 {
  font-size: 35px;
}
.differentials__text p {
  font-size: 14px;
}

.card h2 {
  font-size: 18px;
}

.card p {
  font-size: 14px;
}

.differentials__photos img {
    width: 100%;
}

.gradient-border-mobile {
  display: none;
}


.footer__info {
  margin-left: 0px;
}
}
/* ============================= */
/* 2) Tablet (até 768px)         */
/* ============================= */
@media (max-width: 768px) {

    br{
      display: none;
    }


    .nav-toggle {

    display: none !important;
  }
  
  .nav__toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    cursor: pointer;
    background: transparent;
    border: none;
  }
  
  .nav__toggle span,
  .nav__toggle span::before,
  .nav__toggle span::after {
    content: "";
    display: block;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .nav__toggle span::before {
    transform: translateY(-8px);
  }
  
  .nav__toggle span::after {
    transform: translateY(8px);
  }


    .nav-toggle:checked + .nav__toggle span {
        background: transparent;
    }

/* Seu header e toggle continuam iguais */
.header__content {
  display: flex;
  flex-direction: row; /* precisa continuar em linha para abrigar logo + toggle */
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.container.header__content {
  margin: 0px 20px;
}


/* 2) Exibe o toggle (checkbox + label) */
.nav-toggle {
  display: block;
}
.nav__toggle {
  display: flex;
}

/* 3) Off-canvas escondido por padrão com display: none */
.header__nav {
  display: none;              /* esconde completamente, sem ocupar espaço */
  position: fixed;            /* retira do fluxo para que, ao exibir, não empurre nada */
  top: 60px;                  /* logo + toggle têm ~56px de altura */
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  width: 80%;                 /* largura do menu lateral */
  max-width: 220px;
  border-radius: 8px 0 0 8px;
  padding: 10px 0;
  z-index: 50;
}
.header__nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.header__nav li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.header__nav a {
  padding: 12px 20px;
  display: block;
  color: #fff;
}

/* 4) Quando o toggle for acionado, remove o display: none e exibe o menu */
.nav-toggle:checked + .nav__toggle + .header__nav {
  display: block;
}

.header__nav {
  display: none;
  position: fixed;
  top: 80px;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  width: 80%;
  max-width: 220px;
  transform: translateX(100%);    /* empurra totalmente para fora */
  transition: transform 0.3s ease;
  border-radius: 8px 0 0 8px;
  padding: 10px 0;
  z-index: 50;
}
.nav-toggle:checked + .nav__toggle + .header__nav {
  display: block;
  transform: translateX(0);        /* traz para dentro da viewport */
}
*/

/* 6) Animação do ícone para ‘X’ permanece a mesma */
.nav-toggle:checked + .nav__toggle span {
  background: transparent;
}
.nav-toggle:checked + .nav__toggle span::before {
  transform: rotate(45deg) translate(-4px, 0px);
}
.nav-toggle:checked + .nav__toggle span::after {
  transform: rotate(-45deg) translate(2px, -6px);
}

/* 7) Esconde o botão primário fora do nav (opcional) */
.header__contact {
  display: none;
}




  .hero__content {
    margin-top: 200px;
    padding: 15px;
  }

  .hero__content h1 {
    font-size: 44px;
    line-height: 1.1;
  }
  .hero__content p {
    font-size: 18px;
  }
  .hero__buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  .btn-primary,
  .botao-glass {
    width: 80%;
    padding: 10px 20px;
  }

  /* Sobre */
  .about {
    padding: 80px 0;
  }

  .container.about__content{
  margin: 0 15px;
  }


  .about__content {
    flex-direction: column;
    gap: 30px;
  }
  .about__text h1 {
    font-size: 35px;
    line-height: 1.1;
    text-align: center;
  }

  .about__text{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .about__text p {
    font-size: 17px;
    text-align: center;
  }
  .btn-about {
    padding: 10px 20px;
    font-size: 14px;
  }
  .about__gallery {
    gap: 20px;
  }
  /* Grid A passa para 2 colunas mais estreitas */
  .grid-two {
    grid-template-columns: 1fr 1fr;
  }
  .grid-two .wide {
    height: 200px;
  }
  /* Grid B vira 2 colunas para dar mais destaque */
  .grid-three {
    grid-template-columns: repeat(3, 1fr);
  }

.gradient-h2{
  margin: -15px;
}

  /* Diferenciais */
  .differentials {
    padding: 80px 0;
  }

  .differentials__text{
    text-align: center;
  }

  .differentials__text h1 {
    font-size: 36px;
    line-height: 1.2;
  }
  .differentials__text p {
    font-size: 16px;
  }

  .differentials__cards-photos {
    flex-direction: column;
    gap: 30px;
  }

  .gradient-border{
    display: none;
  }


  .gradient-border-mobile{
    display: flex;
  }


  /* Cards empilhados e menores */
  .cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }
  .card {
    padding: 20px;
  }
  .card h2 {
    font-size: 20px;
  }
  .card p {
    font-size: 13px;
  }

  /* Fotos lado a lado, ocupando 50% cada */
  .differentials__photos {
    flex-direction: column;
    gap: 20px;
  }
  .differentials__photos img {
    width: 100%;
  }

  /* Especialidades */
  .specialties {
    height: unset !important;
  }

  .specialties h1 {
    font-size: 38px;
    margin-bottom: 20px;

  }

  .specialties p {
    font-size: 14px;
  }

  .specialties__row__container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .specialties__row img {
    width: 80%;
  }

  .specialties__row h2 {
    font-size: 14px;
  }

  /* testemunhos */
  .testimonials__content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px 10px;
  }
  .testimonial-column {
    flex: 1 1 calc(50% - 20px);
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  /*Footer*/
  .footer {
    padding: 80px 0;
    padding-bottom: 0px; /* espaço para a linha marrom */
  }
  .footer__content {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 40px;
    padding: 0;
    margin: 0;
  }

  .footer__info{
    flex: 1 1 320px;
    margin-left: 0px;
  }

  .footer__info h1 {
    font-size: 48px;
    line-height: 1.1;
  }
  .footer__info p {
    font-size: 14px;
    margin: 10px 50px;
  }
  .footer__actions {
    flex-direction: column;
    gap: 20px;
  }
  .btn-primary-large {
    padding: 12px 24px;
    font-size: 16px;
  }
  .footer__socials {
    gap: 15px;
  }
  .footer__socials a {
    width: 45px;
    height: 45px;
    padding: 8px;
  }
  .footer__socials img {
    width: 20px;
    height: 20px;
  }
  .footer__image {
    order: -1; /* mostra a imagem acima do texto se preferir */
  }
  .footer__image img {
    max-width: 120%;
    height: auto;
  }
  .brown-line {
    height: 25px;
  }
}






/* ============================= */
/* 3) Mobile (até 390px)         */
/* ============================= */
@media (max-width: 390px) {
  /* 1) Ajustes gerais */
  .nav-toggle {

    display: none !important;
  }
  
  .nav__toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    cursor: pointer;
    background: transparent;
    border: none;
  }
  
  .nav__toggle span,
  .nav__toggle span::before,
  .nav__toggle span::after {
    content: "";
    display: block;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  
  .nav__toggle span::before {
    transform: translateY(-8px);
  }
  
  .nav__toggle span::after {
    transform: translateY(8px);
  }



  .header__content {
    flex-direction: row; /* precisa continuar em linha para abrigar logo + toggle */
    justify-content: space-between;
    align-items: center;
    padding: 10px;
  }

  /* 2) Exibe o toggle (checkbox + label) */
  .nav-toggle {
    display: block;
  }
  .nav__toggle {
    display: flex;
  }

  /* 3) Esconde o nav original off-canvas */
  .header__nav {
    position: absolute;
    top: 60px;    /* logo + toggle têm ~56px de altura */
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    width: 80%;   /* largura do menu lateral */
    max-width: 220px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    border-radius: 8px 0 0 8px;
    padding: 10px 0;
    z-index: 50;
  }
  .header__nav ul {
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
  }
  .header__nav li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .header__nav a {
    padding: 12px 20px;
    display: block;
    color: #fff;
  }

  /* 4) Quando o checkbox for marcado, traz o nav para dentro da tela */
  .nav-toggle:checked + .nav__toggle + .header__nav {
    transform: translateX(0);
  }

  /* 5) Animação do ícone para ‘X’ */
  .nav-toggle:checked + .nav__toggle span {
    background: transparent;
  }
  .nav-toggle:checked + .nav__toggle span::before {
    transform: rotate(45deg) translate(-4px, 0px);
  }
  .nav-toggle:checked + .nav__toggle span::after {
    transform: rotate(-45deg) translate(2px, -6px);
  }

  /* 6) Esconde o botão primário fora do nav (opcional) */
  .header__contact {
    display: none;
  }

  /* 7) Hero permanece responsivo conforme seu código */
  .hero__content {
    margin-top: 100px;
    padding: 10px;
  }
  .hero__content h1 {
    font-size: 32px;
    line-height: 1.2;
  }
  .hero__content p {
    font-size: 16px;
  }
  .hero__buttons {
    flex-direction: column;
    gap: 10px;
  }
  .btn-primary,
  .botao-glass {
    width: 80%;
    text-align: center;
  }

  /* Sobre */
  .about {
    padding: 50px 0;
  }
  .about__content {
    flex-direction: column;
    gap: 20px;
  }
  .about__text h1 {
    font-size: 34px;
    line-height: 1.2;
  }
  .about__text p {
    font-size: 14px;
  }
  .btn-about {
    width: 100%;
    padding: 8px 16px;
    text-align: center;
  }
  .about__gallery {
    gap: 15px;
  }
  /* Cada imagem ocupa toda a largura */
  .grid-two,
  .grid-three {
    grid-template-columns: 1fr;
  }
  .grid-two .wide {
    height: 180px;
  }

  /* Diferenciais */
  .differentials {
    padding: 60px 0;
  }

  .differentials__text h1 {
    font-size: 28px;
    line-height: 1.3;
  }
  .differentials__text p {
    font-size: 14px;
  }

  .differentials__cards-photos {
    flex-direction: column;
    gap: 20px;
  }

  /* Cards totalmente empilhados */
  .cards {
    flex-direction: column;
    gap: 15px;
  }
  .card {
    padding: 15px;
  }
  .card h2 {
    font-size: 18px;
  }
  .card p {
    font-size: 13px;
  }

  /* Fotos em coluna única */
  .differentials__photos {
    flex-direction: column;
    gap: 10px;
  }
  .differentials__photos img {
    width: 100%;
  }

  /* testemunhos */

  .testimonials__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 10px;
  }
  .testimonial-column {
    flex: 1 1 100%;
    gap: 15px;
  }
  .testimonial-card {
    padding: 15px;
  }
  .testimonial-header h3 {
    font-size: 16px;
  }
  .testimonial-header span {
    font-size: 12px;
  }
  .testimonial-body p {
    font-size: 14px;
    line-height: 1.4;
  }
  .testimonial-header img {
    width: 40px;
    height: 40px;
  }

  /* Footer */
  
  .footer {
    padding: 50px 0;
    padding-bottom: 0px; /* espaço para a linha marrom */
  }
  .footer__content {
    gap: 30px;
    padding: 0;
  }
  .footer__info h1 {
    font-size: 32px;
    line-height: 1.2;
  }
  .footer__info p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .footer__actions {
    gap: 15px;
  }
  .btn-primary-large {
    width: 80%;
    padding: 10px 20px;
    font-size: 14px;
  }
  .footer__socials {
    gap: 10px;
  }
  .footer__socials a {
    width: 40px;
    height: 40px;
    padding: 6px;
  }
  .footer__socials img {
    width: 18px;
    height: 18px;
  }
  .footer__image img {
    max-width: 120%;
  }
  .brown-line {
    height: 20px;
  }


}