:root {
  --cor-primary: #623996;
  --cor-button: #be85bb;
  --cor-secundary: #913e97;
}

/* Impede rolagem horizontal */
html, body {
  overflow-x: hidden;
}

/* ===== HEADER ===== */
@media (max-width: 500px) {
  .header-container {
    margin-top: -80px;
    margin-bottom: -50px;
  }

  .fundo-box-shadow {
    height: 100px;
  }

  .header-container img {
    width: 70px;
    height: auto;
  }

  .demonstra {
    position: relative;
    margin-left: -15px;
    width: 140px;
    height: 35px;
    padding: 5px;
  }
  .demonstra img {
    width: 20px;
  }

  .menu-list {
    display: flex;
    flex-wrap: wrap;
    max-width: 10px;
    gap: 10px;
    position: relative;
    top: -20px;
  }

  .nav-container a {
    font-size: 0.8rem;
    margin-left: -10px;
    color: #fff;
  }

  .nav-container {
    display: none;
  }

  .nav-container.active {
    display: block !important;
    position: absolute;
    background: var(--cor-secundary);

    padding: 30px;
    top: 170px; /* Ajuste para mover o menu mais para cima */
    right: 10px;
    width: 150px;
    height: 200px;

    border-radius: 18px;
    box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.2);
    animation: slideDown 0.3s ease-out;
    text-align: start;
  }

  .nav-container.active::before {
    content: "";
    position: absolute;
    top: -9px;
    right: 35px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--cor-secundary);
  }

  .nav-container.active li a {
    color: #fff;
  }

  .nav-container.active li {
    margin-top: 8px;
  }

  .menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 0.9rem;
    color: #fff;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    background-color: var(--cor-primary);
    border: none;
    z-index: 300;
    cursor: pointer;
    position: relative;
    margin-left: 100px;
  }

  .menu-button:hover {
    transition: 0.2s;
    background: var(--cor-secundary);
  }

  .menu-button span {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2px;
    width: 15px;
    background: #fff;
    box-shadow: 0 6px #fff, 0 -6px #fff; /* Espaçamento entre as linhas (6px) */
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 501px) and (max-width: 800px) {
  .header-container {
    margin-top: -80px;
    margin-bottom: -50px;
  }

  .fundo-box-shadow {
    height: 100px;
  }

  .header-container img {
    width: 70px;
    height: auto;
  }

  .demonstra {
    position: relative;
    margin-left: -15px;
    width: 140px;
    height: 35px;
    padding: 5px;
  }
  .demonstra img {
    width: 20px;
  }

  .menu-list {
    display: flex;
    flex-wrap: wrap;
    max-width: 10px;
    gap: 10px;
    position: relative;
    top: -20px;
  }

  .nav-container a {
    font-size: 0.8rem;
    margin-left: -10px;
    color: #fff;
  }

  .nav-container {
    display: none;
  }

  .nav-container.active {
    display: block !important;
    position: absolute;
    background: var(--cor-secundary);

    padding: 30px;
    top: 170px; /* Ajuste para mover o menu mais para cima */
    right: 10px;
    width: 150px;
    height: 200px;

    border-radius: 18px;
    box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.2);
    animation: slideDown 0.3s ease-out;
    text-align: start;
  }

  .nav-container.active::before {
    content: "";
    position: absolute;
    top: -9px;
    right: 35px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--cor-secundary);
  }

  .nav-container.active li a {
    color: #fff;
  }

  .nav-container.active li {
    margin-top: 8px;
  }

  .menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 0.9rem;
    color: #fff;
    border-radius: 50px;
    width: 50px;
    height: 50px;
    background-color: var(--cor-primary);
    border: none;
    z-index: 300;
    cursor: pointer;
    position: relative;
    margin-left: 100px;
  }

  .menu-button:hover {
    transition: 0.2s;
    background: var(--cor-secundary);
  }

  .menu-button span {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 2px;
    width: 15px;
    background: #fff;
    box-shadow: 0 6px #fff, 0 -6px #fff; /* Espaçamento entre as linhas (6px) */
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MAIN - banner 1 ===== */
@media (max-width: 500px)  {
  .intro-bg {
    flex-direction: column;
    text-align: start;
    display: grid;
    justify-items: center;
    grid-template-columns: 1fr;
    gap: 20px;
    background-attachment: scroll;
    height: 50rem;
    width: 100%;
    padding: 20px;
    position: relative; /* container relativo para posicionamento absoluto da seta */
  }

  .intro-conteudo {
    z-index: 10;
    margin-top: 20px;
    margin-left: -10px;
    display: block;
    max-width: 350px;
    width: 100%;
    padding: 10px 20px;
  }

  .intro-conteudo h1 {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 20px;
  }

  .intro-conteudo p {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 20px;
  }

  /* Empilhar botões verticalmente e manter ordem */
  .intro-botao {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: start;
    max-width: 100%;
  }

  .intro-botao button {
    width: 250px;
    font-size: 1rem;
    padding: 10px;
  }

  .intro-botao .preview img {
    position: relative;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    padding: 0%;
  }

  .intro-logo {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    margin: -100px auto 0; /* centraliza horizontalmente e mantém deslocamento superior */
    z-index: 50;
    max-width: 100%;
  }

  .intro-logo img {
    display: block;
    width: 100%;
    max-width: 300px; /* limita o tamanho máximo da logo */
    height: auto;
    margin: 0 auto;
  }

  .moldura-baixo {
    position: absolute;
    top: auto;
    bottom: 0px; /* fixa perto do rodapé da intro */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
  }

  .seta-baixo {
    position: absolute;
    bottom: 20px;
    left: 53%;
    transform: translateX(-50%);
  }
}

@media (min-width: 501px) and (max-width: 800px) {
  .intro-bg {
    flex-direction: column;
    text-align: start;
    display: grid;
    justify-items: center;
    grid-template-columns: 1fr;
    gap: 20px;
    background-attachment: scroll;
    height: 50rem;
    width: 100%;
    padding: 20px;
    position: relative; /* container relativo para posicionamento absoluto da seta */
  }

  .intro-conteudo {
    z-index: 10;
    margin-top: 20px;
    margin-left: -10px;
    display: block;
    max-width: 1000px;
    width: 100%;
    padding: 10px 20px;
  }

  .intro-conteudo h1 {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 20px;
  }

  .intro-conteudo p {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 20px;
  }

  /* Empilhar botões verticalmente e manter ordem */
  .intro-botao {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: start;
    max-width: 100%;
    margin-bottom: -200px;
  }

  .intro-botao button {
    width: 250px;
    font-size: 1rem;
    padding: 10px;
  }

  .intro-botao .preview img {
    position: relative;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    padding: 0%;
  }

  .intro-logo {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    margin: -100px auto 0; /* centraliza horizontalmente e mantém deslocamento superior */
    z-index: 50;
    max-width: 100%;
  }

  .intro-logo img {
    display: block;
    width: 100%;
    max-width: 300px; /* limita o tamanho máximo da logo */
    height: auto;
    margin: 0 auto;
  }

  .moldura-baixo {
    position: absolute;
    top: auto;
    bottom: 0px; /* fixa perto do rodapé da intro */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
  }

  .seta-baixo {
    position: absolute;
    bottom: 20px;
    left: 53%;
    transform: translateX(-50%);
  }
}

/*========== Os Obstáculos da Avaliação ==========*/
@media (max-width: 500px){
  .obs-avalia {
    margin-top: -40px;
  }

  .obs-intro h2 {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: -10px;
  }

  .obs-intro p {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }

  .cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
    align-items: center;
    justify-items: center;
  }

  .cards, .ativo ::before {
    height: 100px;
  }
  .cards, .ativo {
    align-items: center;
    justify-content: center;
    max-width: 300px;
  }

  .card-img img {
    width: 20px;
    height: 20px;
  }
  .card-img  {
    width: 110px;
    height: 50px;
  }

  .card-titulo {
    font-size: 1rem;
  }
  .card-texto p {
    font-size: 0.9rem;
  }
}

@media (min-width: 701px) and (max-width: 800px) {
  .obs-avalia {
    margin-top: -40px;
  }

  .obs-intro h2 {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: -10px;
  }

  .obs-intro p {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }

  .cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0 20px;
  }

  .cards, .ativo ::before {
    height: 100px;
  }
  .cards, .ativo {
    align-items: center;
    justify-content: center;
    max-width: 300px;
  }

  .card-img img {
    width: 20px;
    height: 20px;
  }
  .card-img  {
    width: 110px;
    height: 50px;
  }

  .card-titulo {
    font-size: 1rem;
  }
  .card-texto p {
    font-size: 0.9rem;
  }
}

/*===== O que é a ANSd =====*/
@media (max-width: 500px) {
  .Oq-ANSd {
    margin-top: -20px;
    flex-direction: column;
    padding: 40px 20px;
    text-align: left;
  }

  .oq-texto {
    width: 100%;
    gap: 16px;
    padding-bottom: 40px; /* remove aquele espaço gigante */
  }

  .oq-texto h2 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .oq-texto p {
    font-size: 0.9rem;
    line-height: 1.6rem;
  }

  .oq-botao {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .oq-botao button {
    width: 220px;
    height: auto;
    font-size: 1rem;
    margin-right: 0;
  }

  .oq-img {
    width: 100%;
    padding: 20px 0 0;
    justify-content: center;
    margin-top: -20px;
  }

  .oq-img img {
    width: 350px;
    max-width: 460px;
    height: auto;
  }
}

@media (min-width: 501px) and (max-width: 800px) {
  .Oq-ANSd {
    margin-top: -20px;
    flex-direction: column;
    padding: 40px 20px;
    text-align: left;
  }

  .oq-texto {
    width: 100%;
    gap: 16px;
    padding-bottom: 40px; /* remove aquele espaço gigante */
  }

  .oq-texto h2 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .oq-texto p {
    font-size: 0.9rem;
    line-height: 1.6rem;
  }

  .oq-botao {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }

  .oq-botao button {
    width: 220px;
    height: auto;
    font-size: 1rem;
    margin-right: 0;
  }

  .oq-img {
    width: 100%;
    padding: 20px 0 0;
    justify-content: center;
    margin-top: -20px;
  }

  .oq-img img {
    width: 350px;
    max-width: 460px;
    height: auto;
  }
}

/*========== Funcionalidades Principais ==========*/
@media (max-width: 500px) {
  .funcionalidades {
    flex-direction: column;
    padding: 40px 20px;
    text-align: left;
    margin-top: -50px;
  }

  .funcionalidades h2 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .funcion-cards-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: center;
    justify-items: center;
  }

  .card-funcion {
    max-width: 300px;
    height: 150px;
    text-align: start;
  }

  .card-conteudo{
    padding: 10px;
    max-width: 300px;
    height: 100px;
  }
  .card-conteudo p {
    padding: 10px 20px;
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
  
  .header-card {
    align-items: start;
    justify-content: start;
    margin-top: 10px;
    margin-bottom: -10px;
  }
  .header-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}

@media (min-width: 501px) and (max-width: 800px) {
  .funcionalidades {
    flex-direction: column;
    padding: 40px 20px;
    text-align: left;
    margin-top: -50px;
  }

  .funcionalidades h2 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .funcion-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 10px 50px;
    gap: 20px;
    align-items: center;
    justify-items: center;
  }

  .card-funcion {
    max-width: 300px;
    height: 150px;
    text-align: start;
  }

  .card-conteudo{
    padding: 10px;
    max-width: 300px;
    height: 100px;
  }
  .card-conteudo p {
    padding: 10px 20px;
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
  
  .header-card {
    align-items: start;
    justify-content: start;
    margin-top: 10px;
    margin-bottom: -10px;
  }
  .header-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}

/*========== Para Quem o ANSd é Indicado ==========*/
@media (max-width: 500px) {
  .praquem {
    flex-direction: column;
    padding: 40px 20px;
    text-align: left;
    margin-top: -100px;
  }

  .praquem h2 {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: -50px;
  }

  .praq-card-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: center;
    justify-items: center;
  }

  .praq-card {
    max-width: 300px;
    height: auto;
    text-align: start;
  }

  .praq-card-conteudo p {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }

  .praq-header-card {
    display: flex;              
    flex-direction: row;        
    align-items: center;        
    justify-content: flex-start;
    gap: 10px;                  
    margin-top: 10px;;
  }

  .praq-header-card img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;             
  }

  .praq-header-card h3 {
    font-size: 1rem;
    margin: 0;                 
    line-height: 1.2rem;
  }

  .praq-img{
    width: 40px;
    height: 40px;
    margin-top: 5px;
  }
}

@media (min-width: 501px) and (max-width: 800px) {
 .praquem {
    flex-direction: column;
    padding: 40px 20px;
    text-align: left;
    margin-top: -100px;
  }

  .praquem h2 {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: -50px;
  }

  .praq-card-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 10px 20px;
    align-items: center;
    justify-items: center;
  }

  .praq-card {
    height: auto;
    text-align: start;
  }

  .praq-card-conteudo p {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }

  .praq-header-card {
    display: flex;              
    flex-direction: row;        
    align-items: center;        
    justify-content: flex-start;
    gap: 10px;                  
    margin-top: 10px;;
  }

  .praq-header-card img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;             
  }

  .praq-header-card h3 {
    font-size: 1rem;
    margin: 0;                 
    line-height: 1.2rem;
  }

  .praq-img{
    width: 40px;
    height: 40px;
    margin-top: 5px;
  } 
}

/*========== Principais Benefícios do ANSd ==========*/
@media (max-width: 500px) {
  /* ===== CONTAINER GERAL ===== */
  .beneficios {
    height: auto;
    padding: 0px 0px 0px 0px;
    background-attachment: scroll;
    position: relative;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .beneficios-conteudo {
    margin-top: -30px;
    position: relative;
    overflow: hidden; /* evita símbolos vazarem */
  }

  /* ===== SÍMBOLOS DECORATIVOS ===== */
  .simbolo-roxo-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    object-fit: cover;      /* ocupa TODO o background */
    z-index: 0;
  }

  .simbolo-roxo-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 600px;
    object-fit: cover;      /* ocupa TODO o background */
    z-index: 0;
  }

  /* ===== GARANTE CONTEÚDO ACIMA DO FUNDO ===== */
  .beneficios-texto,
  .list,
  .beneficios-seta,
  .s-video-wrap {
    position: relative;
    z-index: 2;
  }

  /* ===== SETA ===== */
  .beneficios-seta {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .moldura-cima {
    position: relative;
    z-index: 1;
  }
  
  .seta-cima {
    position: absolute;
    bottom: auto;
    right: auto;
    margin: 0px auto 0;
  }

  /* ===== TEXTO ===== */
  .beneficios-texto {
    gap: 20px;
    padding-bottom: 20px;
    text-align: left;
  }

  .beneficios-texto h2 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .beneficios-texto p {
    font-size: 1rem;
    line-height: 1.6rem;
  }

  /* ===== LISTA ===== */
  .list {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    align-items: flex-start;
  }

  .list-deducao {
    gap: 25px;
  }

  .list-topic {
    width: 100%;
    padding-left: 30px; 
    max-width: 300px;
  }

  .list-topic::before {
    left: 0;
    width: 18px;
    height: 18px;
  }

  .list-topic::after {
    left: 8px;
    top: 18px;
    height: 110%;
    width: 3px;
  }

  .list-topic h3 {
    font-size: 1.1rem;
  }

  .list-topic p {
    font-size: 0.9rem;
  }

  /* ===== VÍDEO ===== */
  .s-video-wrap {
    width: 100%;
    max-width: 360px;
    height: 380px;
    margin: 0 auto;
  }
}

@media (min-width: 501px) and (max-width: 800px) {
  /* ===== CONTAINER GERAL ===== */
  .beneficios {
    height: auto;
    padding: 0px 0px 0px 0px;
    background-attachment: scroll;
    position: relative;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .beneficios-conteudo {
    margin-top: -30px;
    position: relative;
    overflow: hidden; /* evita símbolos vazarem */
  }

  /* ===== SÍMBOLOS DECORATIVOS ===== */
  .simbolo-roxo-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    object-fit: cover;      /* ocupa TODO o background */
    z-index: 0;
  }

  .simbolo-roxo-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 600px;
    object-fit: cover;      /* ocupa TODO o background */
    z-index: 0;
  }

  /* ===== GARANTE CONTEÚDO ACIMA DO FUNDO ===== */
  .beneficios-texto,
  .list,
  .beneficios-seta,
  .s-video-wrap {
    position: relative;
    z-index: 2;
  }

  /* ===== SETA ===== */
  .beneficios-seta {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .moldura-cima {
    position: relative;
    z-index: 1;
  }
  
  .seta-cima {
    position: absolute;
    bottom: auto;
    right: auto;
    margin: 0px auto 0;
  }

  /* ===== TEXTO ===== */
  .beneficios-texto {
    gap: 20px;
    padding-bottom: 20px;
    text-align: left;
  }

  .beneficios-texto h2 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .beneficios-texto p {
    font-size: 1rem;
    line-height: 1.6rem;
  }

  /* ===== LISTA ===== */
  .list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    align-items: flex-start;
  }

  .list-deducao {
    gap: 25px;
  }

  .list-topic {
    width: 100%;
    padding-left: 30px; 
    max-width: 300px;
  }

  .list-topic::before {
    left: 0;
    width: 18px;
    height: 18px;
  }

  .list-topic::after {
    left: 8px;
    top: 18px;
    height: 110%;
    width: 3px;
  }

  .list-topic h3 {
    font-size: 1.1rem;
  }

  .list-topic p {
    font-size: 0.9rem;
  }

  /* ===== VÍDEO ===== */
  .s-video-wrap {
    width: 100%;
    max-width: 260px;
    height: 380px;
    margin: 0 auto;
  }
}


/*========== Demonstração do Aplicativo ==========*/
@media (max-width: 500px) {
  .aplicativo-texto {
    padding: 40px 20px 0;
    gap: 16px;
    text-align: start;
  }

  .aplicativo-texto h2 {
    font-size: 1.5rem;
    line-height: 2rem;
    
  }

  .aplicativo-texto p {
    font-size: 1rem;
    line-height: 1.6rem;
    text-align: start;
  }

  /* ===== CARROSSEL ===== */
  .carousel-container {
    gap: 20px;
    margin: 40px 0;
  }

  .carousel-container button {
    display: flex;
    width: 50px;
    height: 40px;
  }
  .carousel-container img {
    display: flex;
    width: 10px;
    height: auto;
  }

  .carousel-slide {
    gap: 16px;
  }

  .carousel-slide img {
    width: 100%;
    max-width: 260px;
    height: auto;
  }
  
  .carousel-viewport {
    max-width: 260px;
  }
}

@media (min-width: 501px) and (max-width: 800px) {
  .aplicativo-texto {
    padding: 40px 20px 0;
    gap: 16px;
    text-align: start;
  }

  .aplicativo-texto h2 {
    font-size: 1.5rem;
    line-height: 2rem;
    
  }

  .aplicativo-texto p {
    font-size: 1rem;
    line-height: 1.6rem;
    text-align: start;
  }

  /* ===== CARROSSEL ===== */
  .carousel-container {
    gap: 20px;
    margin: 40px 0;
  }

  .carousel-container button {
    display: flex;
    width: 50px;
    height: 40px;
  }
  .carousel-container img {
    display: flex;
    width: 10px;
    height: auto;
  }

  .carousel-slide {
    gap: 16px;
  }

  .carousel-slide img {
    width: 100%;
    max-width: 260px;
    height: auto;
  }
  
  .carousel-viewport {
    max-width: 260px;
  }
}

/*========== Demonstração do Aplicativo ==========*/
@media (max-width:500px) {
  .hansen-sobre {
    flex-direction: column;
    gap: 32px;
    padding: 40px 20px;
    text-align: left;
  }

  .hansen-texto {
    gap: 20px;
    width: 100%;
  }

  .hansen-texto h2 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .hansen-texto p {
    font-size: 0.95rem;
    line-height: 1.6rem;
  }

  .hansen-texto button {
    width: 220px;
    height: 48px;
    font-size: 1rem;
  }

  .hansen-img {
    width: 100%;
    justify-content: center;
  }

  .hansen-img img {
    width: 100%;
    max-width: 320px;
    height: auto;
  }
}

@media (max-width: 500px) {
  .hansen-cuidado {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
  }

  .hansen-cuidado h2 {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: -60px;
  }

  .hansen-cuidado p {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }

  .hansen-cuidado .solicite {
    margin-top: -50px;
    width: 300px;
    height: 50px;
    font-size: 1rem;
  }
}

@media (min-width: 501px) and (max-width: 800px) {
  .hansen-sobre {
    flex-direction: column;
    gap: 32px;
    padding: 40px 20px;
    text-align: left;
  }

  .hansen-texto {
    gap: 20px;
    width: 100%;
  }

  .hansen-texto h2 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .hansen-texto p {
    font-size: 0.95rem;
    line-height: 1.6rem;
  }

  .hansen-texto button {
    width: 220px;
    height: 48px;
    font-size: 1rem;
  }

  .hansen-img {
    width: 100%;
    justify-content: center;
  }

  .hansen-img img {
    width: 100%;
    max-width: 320px;
    height: auto;
  }

  .hansen-cuidado {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
  }

  .hansen-cuidado h2 {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: -60px;
  }

  .hansen-cuidado p {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }

  .hansen-cuidado .solicite {
    margin-top: -50px;
    width: 300px;
    height: 50px;
    font-size: 1rem;
  }
}


/*===== FOOTER =====*/
@media (max-width: 500px) {
  .footer-container {
    flex-direction: column;
    align-items: start;
    padding: 40px 20px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .footer-img {
    padding: 40px 0 30px 0;
    text-align: start;
    width: 100%;
    box-sizing: border-box;
  }

  .footer-img img {
    max-width: 200px;
    height: auto;
  }

  .footer-listas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .footer-listas h3 {
    font-size: 1rem;
    margin-bottom: 16px;
    text-align: start;
    width: 100%;
  }

  .footer-colunas {
    align-items: start;
    text-align: start;
    margin-bottom: 20px;
  }

  .footer-colunas ul {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 12px;
  }

  .footer-colunas ul li {
    margin: 0;
  }

  .footer-colunas.Mapa ul li a {
    font-size: 0.9rem;
    line-height: 1rem;
  }

  .footer-colunas.contatos ul li {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 5px;
  }

  .footer-colunas.contatos ul li img {
    width: 24px;
    height: 24px;
  }

  .footer-colunas.contatos ul li a {
    margin: 0;
    font-size: 0.9rem;
  }

  .footer-container span {
    padding: 30px 0 0 0;
    text-align: start;
    font-size: 0.8rem;
    display: block;
  }
}