@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
:root {
   
    --text-dark: #000000;
    --text-light: #767268;
    --extra-light: #f3f4f6;
    --white: #ffffff;
    --max-width: 1200px;
    --header-font: "Oswald", sans-serif;
    --swiper-theme-color: #ffffff;
    --color-green: #4AC6B7;
    --color-pink: #FEC6C5;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


body {
 
    background-color: #1a1a1a; /* Fondo oscuro */
    color: #fff; /* Texto blanco */
  }
  

  .header {
    background-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0)
      ),
      url("images/fondo222.webp");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  

nav {
    position: fixed;
    isolation: isolate;
    top: 0;
    width: 100%;
    max-width: var(--max-width);
    margin: auto;
    z-index: 9;
 
}

.nav__bar {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background-color: transparent;
}

.nav__logo {
    max-width: 100px;
}

.nav__menu__btn {
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

.nav__links {
    list-style: none;
    position: absolute;
    width: 100%;
    padding: 2rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    font-size: 1.0rem;
    font-family: 'lora', sans-serif;
    color: #ffea9f;
  
    background-color: #ffffff;
    transform: translateY(-100%);
    transition: 0.s;
    z-index: -1;
}

.nav__links.open {
    transform: translateY(0);
}

.nav__links .nav__logo {
    display: none;
}

.nav__links a {
    position: relative;
    isolation: isolate;
    padding-bottom: 8px;
    color: var(--white);
    transition: 0.3s;
}
.nav-item {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;

  }
.nav-item:hover {
    color:#F2B918; /* Color azul claro al pasar el cursor */
  }
  /* Estilo para la barra de subrayado debajo del enlace activo */
.nav-item.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #F2B918; /* Barra azul debajo del enlace activo */
  }
.header__container {
    padding-block: 10rem;
}

.header__container p {
    font-size: 1.2rem;
    font-family: var(--header-font);
    color: var(--white);
}

.header__container h1 {
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 400;
    font-family: var(--header-font);
    line-height: 3rem;
    color: var(--white);
}


.main-section {
    display: grid;
    grid-template-columns: 1fr 300px 1fr;
    grid-template-rows: 1fr 1fr;
    align-items: center;
    justify-items: center;
    height: 80vh;
    position: relative;
    gap: 30px;
    padding: 20px;
    color: #aaa;
}

.text-box {
    width: 200px;
    height: 100px;


    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-box:hover {
  color:white;
}

.circle-container {
    position: relative;
    grid-row: span 2;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.beer-img {
    height: 130%;
    pointer-events: none;
    z-index: 2;
}

.color-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: none;
    z-index: 1;
}

.color-indicator {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #F2B918;
    border-radius: 50%;
    pointer-events: none;
    z-index: 3;
    transform: translate(-50%, -50%);
}

.info-text {
    grid-column: span 3;
    font-size: 18px;
    margin-top: 20px;
    text-align: center;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .main-section {
      
        flex-direction: column;
        justify-content: center;
        padding: 130px 20px 20px 20px;
        gap: 1px;
    }

    header {
        flex-direction: column;
        gap: 10px;
    }

    .logo {
        position: static;
        transform: none;
    }

    .nav-left,
    .nav-right {
        justify-content: center;
    }
    .main-section {
   
        grid-template-columns: 1fr 100px 1fr !important;
        color: white;
      
    }
    .circle-container {
        width: 200px;
    height: 200px;
    }
    .color-ring {
        width: 90%;
    height: 90%;
    }
    .text-box {
        width: 130px;
        height:0px;
        background: transparent;
        border: none;
        font-size: 11px;
    
    }
    .nav__links {
       display: none;
       background: linear-gradient(rgb(0 0 0), rgb(0 0 0 / 61%)), url(images/w.jpg) center center no-repeat;
    

       padding: 20px 20px 20px 20px;
       margin: 340px 20px 0px 20px;
       border-radius: 20px;
       width: 100%;
    }
    .nav__links.active {
        display: flex;
        opacity: 1;
        pointer-events: auto;
      }
}

@media (width > 768px) {
    nav {
        padding: 1rem 1rem;
        position: static;
        max-width: 900px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav__bar {
        display: none;
    }

    .nav__links {
        padding: 0;
        width: 100%;
        position: static;
        transform: none;
        flex-direction: row;
        justify-content: space-between;
        background-color: transparent;
    }

    .nav__links .nav__logo {
        display: block;
        max-width: 180px;
    }


  
}
@keyframes scroll {
    to {
      transform: translateX(calc(-50% - 5px));
    }
  }

  .blog__header {
    padding: 1rem;
  }
  
  .blog__header h4 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 400;
    font-family: var(--header-font);
    color: var(--text-dark);
  }

/* efecto glamorfismo o ::view-transition */
/* Efecto glassmorphism */
/* Efecto glassmorphism */
.glass {
    display: flex;
    justify-content: flex-start; /* Alinea los logotipos al principio */
    align-items: center;
    background: rgba(255, 255, 255, 0.1); /* Fondo semitransparente */
    backdrop-filter: blur(10px); /* Desenfoque del fondo */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra sutil */
  
    overflow: hidden; /* Esconde los logotipos que salgan fuera de la caja */
    white-space: nowrap; /* Evita que los logotipos se acomoden en varias líneas */
}

.logo2 {
    display: inline-block; /* Hace que los logotipos se muestren en línea */
    margin: 0px 50px 0px 50px;
}

.logo2 img {
    max-width: 100px; /* Ajusta el tamaño de los logotipos */
    transition: transform 0.3s ease-in-out; /* Agrega una transición suave al hover (opcional) */
}

/* Animación para mover los logotipos hacia la derecha */
@keyframes moveRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%); /* Desplaza todos los logotipos fuera del contenedor */
    }
}

.logo2 {
    animation: moveRight 10s linear infinite; /* Hace que la animación sea infinita */
}

/* Contenedor de la sección "Quiénes somos" */
.about-us {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 20px;
    background-color: #1a1a1a; /* Fondo oscuro */
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Asegura que el texto y la imagen estén alineados */
    gap: 30px; /* Espacio entre el texto y la imagen */
  }
  
  /* Contenido de texto */
  .about-text {
    max-width: 600px;
    align-content: center;
  }
  
  .about-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #F2B918; /* Color dorado para el título */
  }
  .about-text2 h2 {
    font-size: 56px;
    font-weight: 700;
    color: #F2B918; /* Color dorado para el título */
    margin: 20px;
   
    text-align: center;
  }
  
  .about-text h3 {
    font-size: 28px;
    font-weight: 600;
    margin: 10px 0;
  }
  
  .about-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #aaa; /* Texto más suave para la descripción */
    margin: 20px 0;
  }
  
  .cta-button {
    display: inline-block;
    background-color: #F2B918;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #ffea9f; /* Color más oscuro para el hover */
  }
  
  /* Estilo para la imagen */
  .about-image img {
    max-width: 380px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }
  
/* Estilo para el slider de imágenes */
.image-slider {
    background-color: #1a1a1a;

    text-align: center;
  }
  
  .slider-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    position: relative;
  }
  
  .slider-item img {
    max-width: 100%;
    height: auto;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }

  
  .footer {
    overflow: hidden;
    background-color: var(--primary-color);
    background-image: url('images/fondo-footer.png'); /* Ruta de la imagen */
    background-size: cover; /* Ajusta la imagen para que cubra todo el área */
    background-position: center; /* Centra la imagen en el fondo */
    border-bottom: 10px solid var(--white);
}
  
  .footer__container {
    display: grid;
    gap: 4rem;
    text-align: center;
  }
  
  .footer__col img {
    max-width: 150px;
    margin-inline: auto;

  }
  
  .footer__socials {
    margin-block: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .footer__socials a {
    padding: 5px 10px;
    font-size: 1.25rem;
    color: var(--text-dark);
    background-color: var(--white);
    border-radius: 100%;
    transition: 0.3s;
  }
  
  .footer__socials a:hover {
    color: var(--white);
    background-color: var(--text-light);
  }
  
  .footer__bar {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
  }
  
  .footer__col h4 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 400;
    font-family: var(--header-font);
    color: var(--white);
  }
  
  .footer__col p {
    margin-bottom: 1rem;
    color: var(--text-light);
  }
  
  .footer__col p span {
    font-size: 1.2rem;
    margin-right: 10px;
  }
  
  .footer__col form {
    padding: 5px;
    width: 100%;
    max-width: 350px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: var(--text-dark);
    border-radius: 5px;
  }
  
  .footer__col input {
    padding: 0.75rem 0.5rem;
    width: 100%;
    font-size: 1rem;
    color: var(--text-light);
    outline: none;
    border: none;
    background: transparent;
  }
  
  .footer__col .btn:hover {
    color: var(--primary-color);
    background-color: var(--white);
  }
  
  .footer__bar__link {
    position: relative;
    isolation: isolate;
    margin-bottom: -10px;
    margin-inline: auto;
    width: 60px;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .footer__bar__link::after {
    position: absolute;
    content: "";
    top: 25%;
    width: 125%;
    height: 125%;
    rotate: 45deg;
    background-color: var(--white);
    z-index: -1;
  }
  
  .footer__bar__link i {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
  }
  
  .footer__bar__link span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
  }
    /* Esto es de footer*/
    .section__container {
        max-width: var(--max-width);
        margin: auto;
        padding: 5rem 1rem;
        overflow: hidden;
        box-sizing: border-box;  
        grid-template-columns: repeat(3, 1fr);
      }
  /* Diseño responsivo para pantallas pequeñas */
  @media (max-width: 768px) {
    .about-us {
      flex-direction: column;
      text-align: center;
    }
  
    .container {
      flex-direction: column; /* Hace que el texto y la imagen se apilen */
    }
  
    .about-text {
      margin-bottom: 20px; /* Añade espacio entre el texto y la imagen */
    }
    .about-image img {
        max-width: 300px;
    }
    .slider-container {
        flex-direction: column;
      }
    
      .slider-item img {
        max-width: 100%; /* Ajusta el tamaño de las imágenes en móviles */
      }

      
  .footer__container {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
    gap: 2rem;
    
  }

  .footer__col:nth-child(1) {
    grid-area: 1/2/2/3;
  }

  .footer__col form {
    margin-inline-start: unset;
  }
    
  }



  @media screen and (max-width: 768px)
  {
         .adopt-a-pet .dogs, .adopt-a-pet .parrot, .adopt-a-pet .cats
      {
          flex-direction: column;
      }
      .adopt-a-pet .dogs .pic, .adopt-a-pet .parrot .pic, .adopt-a-pet .cats .pic
      {
          width: 100% !important;
      }
      .adopt-a-pet .dogs .boxes, .adopt-a-pet .parrot .boxes, .adopt-a-pet .cats .boxes
      {
          width: 100% !important;
      }
    }
      .adopt-a-pet .box-container
  {
      display: flex;
      flex-direction: column;

  }
  .adopt-a-pet .dogs,
  .adopt-a-pet .parrot,
  .adopt-a-pet .cats
  {
      display: flex;
      align-items: center;
      gap: 50px;
      background-color: var(--color-white);
      padding: 10px;
      border-radius: 20px;
      margin: 40px;
  }
  .adopt-a-pet .dogs .pic
  {
      background-image: url(images/whisky-jack-daniels-apple-botella-700ml.webp);
      background-position: top center;
      background-size: cover;
      border-radius: 30px 0 0 30px;
      height: 400px;
  }
  
  .adopt-a-pet .cats .pic
  {
      background-image: url(images/w.jpg);
      background-position: top center;
      background-size: cover;
      border-radius: 30px 0 0 30px;
      height: 400px;
  }
  
  .adopt-a-pet .parrot .pic
  {
      background-image: url(images/vaso2.jpg);
      background-position: top center;
      background-size: cover;
      border-radius: 30px 0 0 30px;
      height: 400px;
  }
  
  .adopt-a-pet .dogs .pic,
  .adopt-a-pet .parrot .pic,
  .adopt-a-pet .cats .pic
  {
      width: 30%;
  }
  
  .adopt-a-pet .dogs .pic img,
  .adopt-a-pet .parrot .pic img,
  .adopt-a-pet .cats .pic img
  {
      width: 330px;
  }
  
  .adopt-a-pet .dogs .boxes,
  .adopt-a-pet .parrot .boxes,
  .adopt-a-pet .cats .boxes
  {
      width: 70%;
      text-align: center;
      display: flex;
      gap: 30px;
  }
  
  .adopt-a-pet .dogs .boxes .box,
  .adopt-a-pet .parrot .boxes .box,
  .adopt-a-pet .cats .boxes .box
  {
      position: relative;
      overflow: hidden;
      border: 1px solid #fff;
      box-shadow: 0px 0px 5px #d9d9d9;
      border-radius: 10px;
      background: white;
  }
  
  .adopt-a-pet .dogs .boxes .box .offer,
  .adopt-a-pet .parrot .boxes .box .offer,
  .adopt-a-pet .cats .boxes .box .offer
  {
      position: absolute;
      right: 20px;
      top: 20px;
  }
  .adopt-a-pet .dogs .boxes .box .offer i,
  .adopt-a-pet .parrot .boxes .box .offer i,
  .adopt-a-pet .cats .boxes .box .offer i
  {
      color: #F2B918;
      font-size: 35px;
  }
  
  .adopt-a-pet .dogs .boxes .box:hover .offer i,
  .adopt-a-pet .parrot .boxes .box:hover .offer i,
  .adopt-a-pet .cats .boxes .box:hover .offer i
  {
      color: var(--color-green);
  }
  
  .adopt-a-pet .dogs .boxes .box img,
  .adopt-a-pet .parrot .boxes .box img,
  .adopt-a-pet .cats .boxes .box img
  {
      width: 200px;
  }
  
  .adopt-a-pet .dogs .boxes .box:hover img,
  .adopt-a-pet .parrot .boxes .box:hover img,
  .adopt-a-pet .cats .boxes .box:hover img
  {
      transform: scale(1.1);
  }
  
  .adopt-a-pet .dogs .boxes .box .content,
  .adopt-a-pet .parrot .boxes .box .content,
  .adopt-a-pet .cats .boxes .box .content
  {
      padding: 1rem;
  }
  
  .adopt-a-pet .dogs .boxes .box .content .text,
  .adopt-a-pet .parrot .boxes .box .content .text,
  .adopt-a-pet .cats .boxes .box .content .text
  {
      padding-bottom: 1rem;
  }
  
  .adopt-a-pet .dogs .boxes .box .content .text h4,
  .adopt-a-pet .parrot .boxes .box .content .text h4,
  .adopt-a-pet .cats .boxes .box .content .text h4
  {
      color: #2b2a2a;
      font-weight: 500;
      font-size: 1.2rem;
      padding-bottom: 0.5rem;
  }
  
  .adopt-a-pet .dogs .boxes .box .content .text p,
  .adopt-a-pet .parrot .boxes .box .content .text p,
  .adopt-a-pet .cats .boxes .box .content .text p
  {
      font-size: 0.8rem;
      color: var(--color-p);
  }
  
  .adopt-a-pet .dogs .boxes .box .content .price,
  .adopt-a-pet .parrot .boxes .box .content .price,
  .adopt-a-pet .cats .boxes .box .content .price
  {
      display: flex;
      flex-direction: row;
      align-items: center;
      text-align: center;
      justify-content: center;
      gap: 10px;
  }
  
  .adopt-a-pet .dogs .boxes .box .content .price h5,
  .adopt-a-pet .parrot .boxes .box .content .price h5,
  .adopt-a-pet .cats .boxes .box .content .price h5
  {
      color: var(--color-green);
      font-size: 1.2rem;
      font-weight: 600;
  }
  
  .adopt-a-pet .dogs .boxes .box .content .price span,
  .adopt-a-pet .parrot .boxes .box .content .price span,
  .adopt-a-pet .cats .boxes .box .content .price span
  {
      text-decoration: line-through;
      color: var(--color-black-light);
      font-size: 0.9rem;
      font-weight: 400;
      color: #1a1a1a;
  }
  
  .adopt-a-pet .dogs .boxes .box .btn,
  .adopt-a-pet .parrot .boxes .box .btn,
  .adopt-a-pet .cats .boxes .box .btn
  {
      padding: 10px 30px;
      background-color: #1a1a1a;
      cursor: pointer;
  }
  
  .adopt-a-pet .dogs .boxes .box .btn:hover,
  .adopt-a-pet .parrot .boxes .box .btn:hover,
  .adopt-a-pet .cats .boxes .box .btn:hover
  {
      background-color: var(--color-green);
  }
  
  .adopt-a-pet .dogs .boxes .box .btn a,
  .adopt-a-pet .parrot .boxes .box .btn a,
  .adopt-a-pet .cats .boxes .box .btn a
  {
      color: var(--color-white);
      font-size: 1rem;
  }
  @media screen and (max-width:480px)
  {
  .adopt-a-pet .dogs
      {
          flex-wrap: wrap;
      }
      .adopt-a-pet .dogs .pic
      {
          width: 100%;
      }
      .adopt-a-pet .dogs .boxes
      {
          width: 100%;
          flex-wrap: wrap;
      }
      .adopt-a-pet .dogs .boxes .box img
      {
          width: 100px;
      }
   
      /* cat */
      .adopt-a-pet .cats
      {
          flex-wrap: wrap;
      }
      .adopt-a-pet .cats .pic
      {
          width: 100%;
      }
      .adopt-a-pet .cats .boxes
      {
          width: 100%;
          flex-wrap: wrap;
      }
      .adopt-a-pet .cats .boxes .box img
      {
          width: 100%;
      }
      /* Parrot */
      .adopt-a-pet .parrot
      {
          flex-wrap: wrap;
      }
      .adopt-a-pet .parrot .pic
      {
          width: 100%;
      }
      .adopt-a-pet .parrot .boxes
      {
          width: 100%;
          flex-wrap: wrap;
      }
      .adopt-a-pet .parrot .boxes .box img
      {
          width: 100%;
      }
      /* Rabbit */
      .adopt-a-pet .rabbit
      {
          flex-wrap: wrap;
      }
      .adopt-a-pet .rabbit .pic
      {
          width: 100%;
      }
      .adopt-a-pet .rabbit .boxes
      {
          width: 100%;
          flex-wrap: wrap;
      }
      .adopt-a-pet .rabbit .boxes .box img
      {
          width: 100%;
      }
    }


    /*WHAPSAaP*/


.container-boton{

  position: fixed;
  z-index: 999;
  border-radius: 50%;
  bottom: 100px;
  right: 15px;
  padding: 2px;
  transition: ease 0.3s;
  animation: efecto 1.2s infinite;
}

.container-boton:hover{
  transform: scale(1.1);
  transition: 0.3s;
}

.boton{
  width: 50px;
  transition: ease 1s;
}

@keyframes efecto{
  0%{
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.85);
  }
  100%{
      box-shadow: 0 0 0 25px rgba(0, 0, 0, 0);
  }
}

/*WHAPSAaP*/


.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    display:none;
}
