/* Estilos base (mobile) */

@media (max-width: 375px) {
  .secao-h2 h2 {
    padding: 1em 0.1em;
    font-size: 1.6rem;
  }
  /* ----- SEÇÃO 01 - CAPA ok ----- */
  /* ----- SEÇÃO 02 - DISPONÍVEIS ----- */
  /* ----- SEÇÃO 03 - RAÇAS QUE CRIAMOS ----- */
  /* ----- SEÇÃO 04 - KIT ENTREGA ----- */
  .item-entrega {
    width: 9.5em;
    border: 4px solid #e4e4e4;
    border-radius: 15px;
  }
  /* ----- SEÇÃO 05 - GALERIA -----*/
  /* ----- SEÇÃO 06 - FAMÍLIA -----*/
  .galeria-filhotes {
    grid-template-columns: 1fr;
  }
  /* ----- SEÇÃO 07 - PARCEIROS -----*/
  .galeria-parceiros {
    grid-template-columns: 1fr;
  }
  /* ----- SEÇÃO 08 - CONTATO -----*/
}

/* ==================================================
                    Tablets
      ================================================== */

@media (min-width: 712px) {
  /* ==================================================
                    BOTÃO FLUTUANTE
      ================================================== */

  /* Container dos botões flutuantes */
  .social-float {
    position: fixed;
    bottom: 40px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
  }

  /* Estilo base para os botões */
  .social-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    text-decoration: none;
  }

  /* ------ SEÇÃO 01 - CAPA ok ------ */

  .logo_capa {
    width: 18em;
  }
  .aumigo {
    width: 22em;
    padding: 0.5em 0;
  }
  .texto_capa h2 {
    padding: 2rem;
    font-size: 1.5rem;
    max-width: 100%; /* Limita a largura do texto */
  }

  /* ----- SEÇÃO 02 - DISPONÍVEIS ----- */
  /* ----- SEÇÃO 03 - RAÇAS QUE CRIAMOS ----- */
  /* ----- SEÇÃO 04 - KIT ENTREGA ----- */

  .entrega-itens {
    gap: 1rem;
  }

  /* ----- SEÇÃO 05 - GALERIA -----*/
  .entregue {
    padding: 2rem;
  }
  .entregue h2 {
    padding-top: 1rem;
    font-size: 1.8rem;
  }
  .entregue h3 {
    font-size: 1.5rem;
  }
  .galeria_filhotes {
    height: 500px;
    display: flex;
    flex-direction: row;
    gap: 0.5rem; /* Espaçamento entre as imagens */
    padding: 1rem 2rem; /* Espaçamento interno: 2rem em cima/baixo, 5rem nas laterais */
  }
  .imagem_galeria img {
    width: auto;
    height: 100%;
  }
  .imagem_galeria.expanded {
    flex: 4; /* aumenta o tamanho */
    transform: scale(
      1.35
    ); /* Aplica um leve zoom no item para dar destaque visual */
  }
}
/* ==================================================
                    Desktops
      ================================================== */

/* Telas maiores (desktops) */
@media (min-width: 1024px) {
  .secao-h2 h2 {
    padding-top: 1.5em;
    font-size: 3rem;
  }
  

  /* -------  Navbar  --------- */
  .navbar-logo,
  .btn-contato {
    display: block;
  }

  /* ----- SEÇÃO 01 - CAPA ok ----- */
  .secao1 {
    display: flex;
    flex-direction: row;
  }
  .capa_foto {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
    padding-top: 3.9rem;
    position: relative;
  }
  .foto1 {
    display: none;
  }
  .foto2 {
    display: block;
    width: 100%;
    max-width: 1200px;
    height: auto;
    object-fit: contain;
  }
  .logo_capa {
    width: 10em;
  }
  .aumigo {
    width: 20em;
    padding: 0.5em 0;
  }
  .texto_capa {
    position: static; /* Remove posicionamento absoluto */
    transform: none;
    max-width: 500px;
    background-color: transparent;
    margin: 0 3rem;
    box-shadow: 0px 0px 0px transparent;
  }

  .texto_capa h2 {
    padding: 1rem;
    font-size: 1.1rem;
    max-width: 100%; /* Limita a largura do texto */
  }
  .texto_capa h4 {
    font-size: 1rem;
  }
  /* ----- SEÇÃO 02 - DISPONÍVEIS ----- */
  /* ----- SEÇÃO 03 - RAÇAS QUE CRIAMOS ----- */

  .entregue {
    padding: 2rem 4rem;
  }
  .galeria_filhotes {
    padding: 1rem 8rem; /* Espaçamento interno: 2rem em cima/baixo, 5rem nas laterais */
  }

  /* ----- SEÇÃO 04 - KIT ENTREGA ----- */
  .entrega-itens {
    gap: 3rem;
  }
  /* ----- SEÇÃO 05 - GALERIA -----*/
  /* ----- SEÇÃO 06 - FAMÍLIA -----*/
  .galeria-filhotes {
    grid-template-columns: repeat(4, 1fr);
  }
  /* ----- SEÇÃO 07 - PARCEIROS -----*/
  .galeria-parceiros {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    gap: 1rem;
    padding: 2rem 2rem;
  }
  .logo-parceiro {
    max-width: 200px;
  }
  /* ----- SEÇÃO 08 - CONTATO -----*/
}

/* ==================================================
                    Monitores
      ================================================== */
/* Telas maiores (monitores grandes) */
@media (min-width: 1197px) {
  /* ----- SEÇÃO 01 - CAPA ok ----- */
  .secao1 {
    display: flex;
    flex-direction: row;
  }
  .capa_foto {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
    padding-top: 3.9rem;
    position: relative;
  }
  .foto1 {
    display: none;
  }
  .foto2 {
    display: block;
    width: 100%;
    max-width: 1200px;
    height: auto;
    object-fit: contain;
  }
  .logo_capa {
    width: 18em;
  }
  .aumigo {
    width: 25em;
    padding: 0.5em 0;
  }
  .texto_capa {
    position: static; /* Remove posicionamento absoluto */
    transform: none;
    max-width: 500px;
    background-color: transparent;
    margin: 0 3rem;
    box-shadow: 0px 0px 0px transparent;
  }

  .texto_capa h2 {
    padding: 1.9rem;
    font-size: 1.4rem;
    max-width: 100%; /* Limita a largura do texto */
  }
  .texto_capa h4 {
    font-size: 1.2rem;
  }
  /* ----- SEÇÃO 06 - FAMÍLIA -----*/
  .secao6 {
    padding: 2rem 12rem;
  }
  /* SECAO PRINCIPAL RACAS */
  .foto-raca {
    padding-top: 0;
  }
  .texto-raca-chi,
  .texto-raca-spitz {
    background-color: var(--text-titulo);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #e4e4e4;
    padding: 3rem 3rem;
    margin: 0;
    position: absolute;
    top: 60%;
    left: 25%;
    transform: translate(-50%, -50%); /* Centraliza no meio exato */
    width: 100%;
    max-width: 500px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
  }
  .texto-raca-spitz {
    left: 75%;
  }
  .texto-raca h1 {
    font-size: 1.8rem;
  }
  .texto-raca h3 {
    font-size: 1.3rem;
  }
  .texto-raca p {
    font-size: 1rem;
    font-weight: 300;
  }
  .texto-raca p strong {
    color: var(--background-segunda);
    font-weight: 700;
  }
}
