/* style-mini.css */



/* Garantir que padding e border não ultrapassem o width */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* =========================
   BOTÃO HAMBURGUER (MENU MOBILE)
   ========================= */
   .hamburger-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: rgb(255, 255, 255);
    color: #000000;
    padding: 12px 16px;
    font-size: 24px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    z-index: 1100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.459);
  }
  
  /* =========================
     MENU FLUTUANTE (DROPDOWN DO HAMBURGUER)
     ========================= */
  .floating-menu {
    position: fixed;
    top: 80px;
    right: 20px;
    background-color: #fff;
    border-radius: 0px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 1rem;
    display: none;  /* oculto inicialmente */
    flex-direction: column;
    gap: 1rem;
    z-index: 1100;
  }
  
  .floating-link {
    color: #111;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem;
    transition: background-color 0.2s;
    border-radius: 8px;
  }
  
  .floating-link:hover {
    background-color: #f2f2f2;
  }
  
  /* =========================
     RESPONSIVIDADE MENU E HAMBURGUER
     ========================= */
  
  /* Mobile: esconde navbar, mostra botão hamburger */
  @media (max-width: 768px) {
    .navbar {
      display: none;
    }
  
    .hamburger-btn {
      display: block;
    }
  
    .floating-menu {
      display: none;
    }
  }
  
  /* Desktop: esconde hamburger e menu flutuante, mostra navbar */
  @media (min-width: 769px) {
    .hamburger-btn,
    .floating-menu {
      display: none !important;
    }
  
    .navbar {
      display: flex;
      
    }
  }
  
  /* =========================
     LOGO FIXA (esconde no desktop)
     ========================= */
  .header-logo {
    display: none;
    
  }
  
  /* =========================
     ESTILIZAÇÃO MOBILE PARA HERO, OUTROS HEROS E REDFOX
     ========================= */
  @media (max-width: 768px) {
    /* Remove imagem de fundo, coloca fundo claro, centraliza texto e reduz padding */
    .hero,
    .hero3,
    .hero4,
    .hero5,
    .hero6,
    .redfox {
      background-image: none !important;
      background-color: #f8f8f8;
      padding: 60px 20px;
      text-align: center;
    }
  
    .hero2 {
      padding: 60px 20px;
    }
  
    /* Ajusta tamanho e cor do título do hero */
    .hero-content h1 {
      font-size: 1.8rem;
      color: #111; /* cor escura pois fundo é claro */
    }
  
    /* Ajusta parágrafo do hero */
    .hero-content p {
      font-size: 1rem;
      color: #333;
    }
  
    /* Botão hero ocupa largura total */
    .hero-btn {
      width: 100%;
      font-size: 1rem;
      height: auto;
      padding: 0.8rem 1rem;
    }
  
    /* Cards de recurso: coluna e centraliza */
    .feature-card {
      flex: 1 1 100%;
      min-width: unset;
      flex-direction: column;
      text-align: center;
    }
  
    /* Ícones centralizados nos cards */
    .feature-icon {
      margin: 0 auto 10px auto;
    }
  
    /* Container de features com espaçamento e padding */
    .features-container {
      gap: 1rem;
      padding: 0 1rem;
    }
  }
  
  /* =========================
     TAMANHO DA LOGO
     ========================= */
  .header-logo img {
    max-width: 200px;
    width: auto;
    height: auto;
  }
  
  .logo {
    max-width: 220px;
    width: 80%;
    height: auto;
  }
  
  /* Mostra logo fixa no mobile, esconde logo navbar */
  @media (max-width: 768px) {
    .header-logo {
      display: block !important;
    }
  
    .navbar .logo {
      display: none !important;
    }
  
    .logo {
      max-width: 120px;
    }
  }
  
  /* Ajusta logo para telas muito pequenas */
  @media (max-width: 480px) {
    .logo {
      max-width: 90px;
    }
  }
  
  /* =========================
     BOTÕES
     ========================= */


  
  /* =========================
     RESPONSIVIDADE GERAL DO FOOTER E OUTROS ITENS
     ========================= */
  @media (max-width: 768px) {
    footer {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 2rem 1rem;
    }
  
    .footer-left {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
  
    .footer-content {
      gap: 0.25rem;
      align-items: center;
    }
  
    .footer-links,
    .footer-links-secondary {
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
  
    footer .logo {
      display: none;
    }
  
    .footer-copy {
      font-size: 0.8rem;
      margin-top: 1rem;
    }
  
    .btn, .hero-btn {
      width: 100%;
      max-width: 300px;
      padding: 1rem;
      font-size: 1rem;
    }
  }
  
  /* =========================
     ESCONDER ELEMENTO FOCUS-BLOCK-HEADER EM TELAS PEQUENAS
     ========================= */
  @media (max-width: 768px) {
    .focus-block-header {
      display: none !important;
    }
  }
  
  /* ESCONDER TITULO HERO-CONTENT-2 EM TELAS PEQUENAS */
  @media (max-width: 768px) {
    .hero-content-2 h1 {
      display: none !important;
    }
  }
  
  /* =========================
     SOBRE - ESTILIZAÇÃO PARA TEXTOS E FOTOS DO PERFIL
     ========================= */
  @media (max-width: 1024px) {
    .about-hero h1 {
      font-size: 2.2rem;
    }
  
    .focus-block {
      flex: 1 1 45%;
    }
  
    .about-profile {
      flex-direction: column;
      align-items: center;
    }
  
    .about-text,
    .about-photo {
      flex: 1 1 100%;
      text-align: center;
    }
  
    .about-photo img {
      max-width: 80%;
      margin-top: 40px;
    }
  
    .focus-block-line {
      margin: 80px 20px;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .vertical-line {
      margin: 0 auto 24px auto;
      display: none;
    }
  
    .focus-block-text h2 {
      font-size: 1.5rem;
    }
  
    .focus-block-text p,
    .focus-block-header p,
    .focus-block-who p {
      font-size: 1.1em;
    }
  }
  
  /* =========================
     RESPONSIVIDADE ADICIONAL ABAIXO DE 768px PARA SOBRE
     ========================= */
  @media (max-width: 768px) {
    .about-hero h1 {
      font-size: 2rem;
    }
  
    .focus-block {
      flex: 1 1 100%;
      max-width: 100%;
    }
  
    .about-photo img {
      max-width: 90%;
    }
  
    /* Ajusta background e padding para about-background em mobile */
    .about-background {
      background-image: url("../images/background_about_responsive.png");
      padding: 190px 90px; /* ajuste o espaçamento conforme necessário */
    }
  
    .about-page {
      padding: 1rem;
    }
  
    .about-stats {
      flex-direction: column;
      gap: 1.5rem;
    }
  
    .about-stats div {
      font-size: 1.3rem;
    }
  }
  

/* Oculta apenas em telas menores que 768px */
@media (max-width: 767px) {
  .hide-on-mobile {
    display: none !important;
  }
}




  /* =========================
     RESPONSIVIDADE PARA TELAS MUITO PEQUENAS (MENOR QUE 480px)
     ========================= */
  @media (max-width: 480px) {
    .about-hero {
      padding: 2rem 0;
    }
  
    .about-hero h1 {
      font-size: 1.7rem;
    }
  
    .focus-block-text h2 {
      font-size: 1.3rem;
    }
  
    .about-photo img {
      max-width: 100%;
    }
  
    .vertical-line {
      width: 5px;
      min-height: 80px;
    }
  
    .focus-block-line {
      margin: 40px 10px;
    }
  }
  
  /* =========================
     RESPONSIVIDADE PARA FAQ EM TELAS PEQUENAS
     ========================= */
  @media (max-width: 600px) {
    .faq-section {
      padding: 40px 16px;
    }
  
    .accordion-question {
      font-size: 1rem;
      padding: 14px 16px;
    }
  
    .accordion-answer {
      padding: 0 16px;
      font-size: 0.95rem;
    }
  
    .accordion-item.active .accordion-answer {
      padding: 12px 16px;
    }
  
    .accordion-icon {
      right: 16px;
      font-size: 1rem;
    }
  }
  
  /* =========================
     PADDING EXTRA PARA TERMOS DE USO EM DESKTOP
     ========================= */
  @media (min-width: 768px) {
    .terms-of-use-black {
      padding-left: 120px; /* ajuste conforme desejar */
    }
  }
  


  /* Responsividade */
@media (max-width: 768px) {
  .hero-content {
    
    flex-direction: column-reverse;
    text-align: center;
  }
  
  .hero-image {
    justify-content: center;
    margin-top: 30px;
  }

  .hero-text, .hero-image {
    flex: none;
    width: 100%;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }
}



/* Responsividade para hero3 */
@media (max-width: 768px) {
  .hero3 {
    padding: 60px 20px;
  }

  .hero-content-2 {
    flex-direction: column-reverse; /* <-- INVERTE A ORDEM aqui */
    align-items: center;
    text-align: center;
  }

  .hero-content-2 > div.text {
    flex: 1 1 100%;
  }

  .hero-content-2 > div.image {
    flex: 1 1 100%;
    justify-content: center;
    margin-bottom: 2rem; /* distância da imagem para o texto */
  }

  .hero-content-2 h1 {
    font-size: 2rem;
  }

  .hero-content-2 p {
    font-size: 1rem;
  }

  .hero-btn {
    width: 100%;
    font-size: 1rem;
    padding: 0.8rem 1rem;
    align-self: center;
  }
}




/* Responsivo */
@media (max-width: 767px) {
  .error-content {
    flex-direction: column-reverse;
    gap: 2rem;
  }

  .error-text h1 {
    font-size: 4rem;
  }
}



@media (max-width: 768px) {
  .contact-split {
    flex-direction: column;
    min-height: auto;
  }

  .contact-left,
  .contact-form {
    width: 100%;
    padding: 30px 20px;
  }

  .contact-left h2 {
    font-size: 26px;
  }

  .contact-form .hero-btn {
    align-self: stretch;
    text-align: center;
  }
}



/* Responsividade para tablets e celulares */
@media (max-width: 1024px) {
  .redshift-photo {
    justify-content: center;
    margin-top: 20px;
  }

  .redshift-photo img {
    max-width: 100%;
    padding-right: 0;
    padding-top: 10px;
  }
}

@media (max-width: 600px) {
  .redshift-photo {
    flex: 1 1 100%;
  }

  .redshift-photo img {
    max-width: 90%;
    padding-top: 10px;
    padding-right: 0;
  }
}