@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --header-height: 100px;
    --header-movil-height: 56px;

    /*===== Background Colors ======*/
    --navbar-color: #1db172;
    --slide-one: #1db1717c;
    --slide-two: #e3d53f5e;
    --slide-one-button: #d96fdc;
    --slide-two-button: #5db0ee; /* Fíjate que corregí un typo aquí */
    --slide-one-button-hv: #943297;
    --slide-two-button-hv: #254c94; /* Fíjate que corregí un typo aquí */
    --nosotros-section: #9a1378;
    --catalogo-section: #1db172;
    --contact-form: #b0d9f8;
    --enviar-button: #d96fdc; /* Typo corregido: 'botton' */
    --enviar-button-cliked: #a51eaa; 
    --copy: #121212;

    /*==== Text-colors =====*/
    --menu-var: #d400d4;
    --white-text: #f2f2f2;
    --slide-two-text: #d400d4;

    /*====tamaño de texto====*/
    --font-small: 14px;   /* Pequeño */
    --font-medium: 18px;  /* Mediano */
    --font-large: 24px;   /* Grande */

    /*=== Space ====*/
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 16px;
    --space-4: 24px;
    --space-5: 32px;
}

body{
    background-color: var(--navbar-color);
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* 100% de la altura de la ventana */
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Abril Fatface", serif;
    font-weight: 400;
    font-style: normal;
}


#header{
    width: 100%;
    background-color: var(--navbar-color);
    position: relative;
    z-index: 9999;
}

/* Barra de navegación para escritorio */
#header .nav_container .nav_logo {
    max-height: 80px;
    min-height: 56px;
    width: auto;
}

#header .nav_container .nav_menu .nav_img {
    max-height: 80px;
    min-height: 56px;
    width: auto;
}

#header .nav_container {
    display: flex;
    justify-content: left;
    align-items: center;
    height: var(--header-height);
    line-height: var(--header-height); 
    padding: 0 30px;
    color: white;
}


/* Menú de navegación */
.nav_menu {
    display: flex; /* Menú visible por defecto en desktop */
    flex-direction: row; /* Alinea los ítems horizontalmente */
    align-items: center;
    gap: var(--space-6);
}

/* Listado de navegación */
#nav-menu .nav_list {
    margin-left: 20px;
    list-style: none;
    display: flex;
    flex-direction: row; /* Alineación horizontal */
    gap: var(--space-5); /* Espacio entre ítems */
}

/* Elementos del menú */
.nav_item {
    text-align: center;
}


#nav-menu .nav_list .nav_item .nav_link{
    text-decoration: none;
    font-family: "Abril Fatface", serif;
    font-weight: 700;
    font-size: var(--font-large);
    letter-spacing: 4px;
    color: var(--white-text);
}
#nav-menu .nav_list .nav_item .nav_link:hover{
    color: var(--menu-var);
}

/* Imagen dentro del menú */
.nav_img {
    display: none;
}

/* Icono de cierre (solo en móvil) */
#header #nav-menu #nav-close {
    display: none;
}

/* Botón de toggle (hamburguesa) */
#header .nav_container #nav-toggle {
    display: none;
}


/*====== Banner ======*/
  /* Main*/
  #home {
    width: 100vw;
    height: 100vh;
    flex: 1; /* Empuja al footer hacia abajo cuando hay poco contenido */
  }
    /* Home Section */
  .bannerContent {
    width: 100vw;
    height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    padding-top: 3rem;
    padding-bottom: 1rem;
    background-image: url("../images/textura papel de colores.webp");
  }
  
  /* Swiper Container */
  .swiper {
    width: 88vw;
    height:80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
  }
  
  .swiper-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .swiper-wrapper{
    width: 100%;
    height: 100%;
  }
  
  .swiper-pagination{
    width: 100%;
    height:60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .sldOne{
    background-color: var(--slide-one);
    background-image: url("../images/background-nieves-pepe.gif");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .sldTwo{
    background-color: var(--slide-two);
    background-image: url("../images/Celebra-con-nieves-pepe.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
   .sldThree{
    background-image: url("../images/papel-crema.webp");
    background-position: center 50%;   /* Centrado horizontal y vertical */
    background-size: cover;   /* Ajusta para cubrir todo el fondo */
    background-repeat: no-repeat; /* Evita que se repita */
    background-position: center;
    background-repeat: no-repeat;
  }

  /* Grid Layout for Slide Content */
  .home_content.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 3rem;
  }
  
  .home_content .home_group{
    display: grid;
    place-items: center;
  }

  /* Image Styles */
  .home_img {
    max-width: 70%;
    height: auto;
    animation: swing 3s ease-in-out infinite; /* Animación infinita */
  }

  /* Definición de la animación */
  @keyframes swing {
    0% {
      transform: translateY(0); /* Punto inicial */
    }
    50% {
      transform: translateY(20px); /* Mover hacia abajo */
    }
    100% {
      transform: translateY(0); /* Regresar al punto inicial */
    }
  }


  
  /* Title and Description Styling */

  .home_data{
    animation: fadeInRight 1s infinite alternate;
    opacity: 0; /* Comienza transparente */
    transform: translateX(50%); /* Comienza desplazado a la derecha */
    animation: fadeInRight 0.6s ease-out forwards; /* Animación al cargar */
  }

  .home_title {
    font-weight: bold;
    margin-bottom: 1rem;
  }

  .tsldOne{
    color:var(--white-text);
    font-size: 5rem;
  }

  .tsldTwo{
    color:var(--slide-two-text);
  }
  
  .tsldThree{
    color:var(--slide-two-text);
  }

  .slideTwoA{
    font-size: 5rem;
  }
  
  .slideThreeA{
    font-size: 4rem;
  }
  
  .slideTwoB{
    font-size: 5rem;
  }
  
  .home_description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: "Roboto Condensed", sans-serif;
  }

  .hdescriptionA{
    color:var(--white-text);
  }

  .hdescriptionB{
    color:var(--slide-two-text);
  }
  
  /* Button Styles */
  .button {
    padding: 0.8rem 2rem;
    border-style: solid;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 600;
    font-size: 35px;
  }

  .btnOne{
    color: #fff;
    background-color: var(--slide-one-button);
  }

  .btnOne:hover {
    background-color: var(--slide-one-button-hv);
  }
  .btnTwo{
    color: #fff;
    background-color: var(--slide-two-button);
  }
  
  .btnTwo:hover {
    background-color: var(--slide-two-button-hv);
  }
  .btnThree{
    color: #fff;
    background-color: var(--slide-two-button);
  }
  
  .btnThree:hover {
    background-color: var(--slide-two-button-hv);
  }
  
/* ===== Estilos para Móvil ===== */
@media (max-width: 768px) {

  #header{
      width: 100%;
      background-color: var(--navbar-color);
      position: relative;
      z-index: 9999;
  }

 /* Menú de navegación */
  .nav_menu {
      position: absolute;
      top: 100px;
      left: 0px;
      padding-bottom: 0px;
      display: flex; /* Menú visible por defecto en desktop */
      flex-direction: column; /* Alinea los ítems horizontalmente */
      align-items: center;
      z-index: 9999;
      width: 100%;
      height: 90vh;
      background-color: var(--navbar-color);
  }

  /* Listado de navegación */
  #nav-menu .nav_list {
      margin-left: 20px;
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0px; /* Espacio entre ítems */
      z-index: 9999;
  }

  /* Mostrar el menú cuando esté activo */
  .nav_menu.active {
      display: flex;              /* Mostrar el menú al activar */
  }

  /* Estilo de los ítems del menú */
  .nav_menu li {
      width: 100%;                /* Cada ítem ocupa toda la fila */
      text-align: center;         /* Centrado horizontal */
      margin: 0;             /* Espaciado vertical */
  }

  .nav_menu a {
      display: block;             /* Cada enlace como bloque completo */
      padding: 4px;              /* Espacio dentro de cada enlace */
      font-size: 20px;          /* Tamaño de texto más grande */
      color: var(--white-text);
      text-decoration: none;
      transition: background-color 0.3s ease;
  }

  .nav_menu a:hover {
      background-color: var(--hover-color); /* Cambiar fondo al pasar cursor */
  }

  /* Imagen dentro del menú */
  .nav_img {
      display: block;
      margin: 1rem auto;
  }

  /* Mostrar el botón de toggle en móviles */
  #header .nav_container #nav-toggle {
      display: block;
      font-size: 2rem;
      cursor: pointer;
  }

  /* Icono de cierre */
  #header #nav-menu #nav-close {
      display: block;
      text-align: right;
      margin: 1rem 20px;
      cursor: pointer;
  }

  /* Ajuste del contenido Home en móviles */
  .home_content.grid {
      grid-template-columns: 1fr; /* Coloca todo en una columna */
      text-align: center;
  }

  .home_img {
      width: 70%;
      margin: 0 auto;
  }

  .home_title {
      font-weight: bold;
      margin-bottom: 0.5rem;
  }

  .tsldOne {
      color: var(--white-text);
      font-size: 1.6rem;
  }

  .tsldTwo {
      color: var(--slide-two-text);
  }
  
  .tsldThree {
      color: var(--slide-two-text);
  }

  .slideThreeA {
      font-size: 1.6rem;
  }

  .slideTwoA, .slideTwoB {
      font-size: 1.6rem;
  }

  .home_description {
      text-warp: balance;
      font-size: 1rem;
      line-height: 1.4;
      margin-bottom: 2rem;
  }
  
    .sldOne{
    background: var(--slide-one);
    background-image: url("../images/background-nieves-pepe.gif");
     background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .sldTwo{
    background: var(--slide-two);
    background-image: url("../images/Celebra-con-nieves-pepe.png");
    background-size: auto; 
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .sldThree{
    background: #E5D09E;
    background-size: auto; 
    background-position: center;
    background-repeat: no-repeat;
  }
}



/*=====seccion de nosotros====*/
 .section_about{
    position: relative;
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction:column;
    align-items: center;
    align-content: center;
    background-image: url("../images/cadereyta - copia.webp");
    background-position: center 50%;   /* Centrado horizontal y vertical */
    background-size: cover;   /* Ajusta para cubrir todo el fondo */
    background-repeat: no-repeat; /* Evita que se repita */
    background-attachment: fixed;  /* Fija la imagen durante el scroll */
    box-sizing: border-box;
 }
 .section_about .container_about{
    width:80%;
    height:100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    padding: 4rem;
    box-sizing: border-box;
 }
 
 .container_about .info_about{
   width: 50%;
   margin: 0px;
   padding: 0px;
   display: flex;
   flex-direction: column;
   align-items: center;
   align-content: center;
   box-sizing: border-box;
   background-image:url("../images/papel-morado.webp");
   background-position: center 50%;   /* Centrado horizontal y vertical */
   background-size: cover;   /* Ajusta para cubrir todo el fondo */
   background-repeat: no-repeat; /* Evita que se repita */
   border-radius: 4px;
   opacity: 0; /* Comienza transparente */
   animation: fadeInLeft 0.6s ease-out forwards; /* Animación al cargar */
  }
  
 .info_about .img_pilancon{
   margin-top: 10px;
   width: 65%;
   height: auto;
 }
 
 .info_about .about_text{
     padding: 2rem;
 }
 
 .info_about .about_text .about_title{
   text-align: center;
   font-family: "Abril Fatface", serif;
   font-size: 30px;
   font-weight: 600;
   font-style: normal;
   color: white;
   padding-bottom: 16px;
 }
 
 .info_about .about_text p{
    font-size: 18px;
    color: white;
    font-weight: 400;
    margin-bottom: 12px;
    font-family: "Roboto Condensed", sans-serif;
    text-warp: balance;
 }

 .info_about .about_text p:first-of-type::first-letter {
    text-transform: uppercase;
    font-size: 1.5em; /* Opcional: Aumenta el tamaño de la primera letra */
    font-weight: bold; /* Opcional: Hazla más gruesa */
    color: #ffffff; /* Opcional: Cambia su color */
}

 .img-container {
    perspective: 1000px;
    width: 50%;
    height: auto;
    display: grid;
    align-content: flex-start;
    align-items: center;
    justify-items: center;
    margin: 100px auto;
 }

 .img-container img {
    width: 90%; /* Ajusta el tamaño de la imagen */
    transition: transform 0.1s; /* Transición rápida para suavizar el efecto */
    will-change: transform; /* Optimización del renderizado */
    pointer-events: none; /* Evita que la imagen interrumpa el tracking del puntero */
 }

 /*=====seccion de nosotros Movil====*/
@media (max-width: 768px) {
  .section_about {
    height: auto; /* Permite que la altura se ajuste al contenido */
    padding: 30px 0; /* Añade padding para espacio en móviles */
    background-attachment: scroll; /* Cambia a scroll para evitar problemas de rendimiento y visualización en móviles */
    background-position: center top; /* Ajusta la posición de fondo para móviles */
  }

  .section_about .container_about {
    width: 90%; /* Ajusta el ancho para móviles */
    flex-direction: column; /* Apila los elementos verticalmente */
    height: auto;
    padding: 2rem 0; /* Ajusta el padding para móviles */
  }

  .container_about .info_about {
    width: 100%; /* Ocupa el ancho completo */
    margin-bottom: 30px; /* Espacio entre la información y la imagen */
    padding: 1rem; /* Ajusta el padding interno */
  }

  .info_about .img_pilancon {
    width: 80%; /* Aumenta el tamaño de la imagen dentro de la caja de información */
    margin-top: 20px; /* Ajusta el margen superior */
  }

  .info_about .about_text {
    padding: 1.5rem; /* Reduce el padding del texto */
  }

  .info_about .about_text .about_title {
    font-size: 26px; /* Reduce el tamaño del título */
    padding-bottom: 10px;
  }

  .info_about .about_text p {
    font-size: 16px; /* Reduce el tamaño del párrafo */
    margin-bottom: 10px;
  }

  .img-container {
    width: 90%; /* Ajusta el ancho del contenedor de la imagen */
    margin: 30px auto; /* Ajusta el margen para móviles */
  }

  .img-container img {
    width: 95%; /* Asegura que la imagen sea un poco más grande dentro de su contenedor */
  }
}



 /*====seccion catalogo=====*/
.section_catalog {
  width: 100%;
  height: 60vh;
  background-image:url("../images/papel-verde.webp");
  background-position: center 50%;   /* Centrado horizontal y vertical */
  background-size: cover;   /* Ajusta para cubrir todo el fondo */
  background-repeat: no-repeat; /* Evita que se repita */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.section_catalog .container_catalog {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.section_catalog .container_catalog .info_catalog {
  width: 50%;
  height: 100%;
  margin: 0;
  padding: 0;
  display:flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  box-sizing: border-box;
}

.section_catalog .container_catalog .img-container {
  width: 50%;
  height: 100%;
  display: flex; /* Usar flex para centrar */
  align-items: end;
  justify-content: center; /* Centrar horizontalmente */
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  overflow: hidden;
}

/*la imagen*/
#nieves-pepe-tradicion {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.section_catalog .container_catalog .info_catalog .content-list-catalog {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 30px;
  box-sizing: border-box;
  border-left: 4px solid #dfdfdf;
}

.catalog-title-container .catalog_title{
  font-size: 40px;
  padding-left: 20px;
  margin-bottom: 14px;
  color: var(--white-text);
}

.catalog-left {
  margin: 0;
  padding: 0;
  width: 50%;
  box-sizing: border-box;
  color: var(--white-text);
}

.catalog-left .list-catalog-a{
  list-style: none;
  color:var(--white-text);
  font-size: 25px;
  font-family: "Roboto Condensed", sans-serif;
}

.catalog-right {
  margin: 0;
  padding: 0;
  width: 50%;
  box-sizing: border-box;
  color: var(--white-text);
}

.catalog-right .list-catalog-b{
  list-style: none;
  color:var(--white-text);
  font-size: 25px;
  font-family: "Roboto Condensed", sans-serif;
}

.saboresEspeciales{
    margin-top:1rem;
    width:100%;
    height:70px;
    display: flex;
    flex-direction:column;
    align-items: start;
    justify-content: center; /* Centrar horizontalmente */
}

.saboresEspeciales h4{
    color:var(--white-text);
    font-size: 30px;
    font-weight: 300;
    font-family: "Roboto Condensed", sans-serif;
    text-warp: balance;
}

/* ===== Estilos para Móvil catalogo ===== */

@media (max-width: 768px) {
  .section_catalog {
    height: auto; /* Ajusta la altura automáticamente */
    padding: 40px 0; /* Añade padding para espacio en móviles */
  }

  .section_catalog .container_catalog {
    flex-direction: column; /* Apila los elementos verticalmente */
    height: auto;
  }

  .section_catalog .container_catalog .info_catalog,
  .section_catalog .container_catalog .img-container {
    width: 100%; /* Ocupan el ancho completo */
    height: auto; /* Altura automática */
    padding: 20px; /* Ajusta el padding */
  }

  .section_catalog .container_catalog .info_catalog {
    align-items: center; /* Centra el contenido */
    text-align: center; /* Centra el texto */
    order: 2; /* Cambia el orden para que la imagen aparezca primero */
  }

  .section_catalog .container_catalog .img-container {
    order: 1; /* La imagen aparecerá primero */
    padding-bottom: 20px; /* Espacio debajo de la imagen */
  }

  #nieves-pepe-tradicion {
    width: 80%; /* Reduce el tamaño de la imagen */
    height: auto;
    max-height: 250px; /* Establece una altura máxima para la imagen */
    object-fit: contain; /* Asegura que la imagen se ajuste dentro de su contenedor */
  }

  .catalog-title-container .catalog_title {
    font-size: 32px; /* Reduce el tamaño del título */
    padding-left: 0; /* Elimina el padding izquierdo */
    margin-bottom: 10px;
  }

  .section_catalog .container_catalog .info_catalog .content-list-catalog {
    flex-direction: column; /* Apila las listas verticalmente */
    padding: 20px; /* Ajusta el padding */
    border-left: none; /* Quita el borde izquierdo */
    border-top: 4px solid #dfdfdf; /* Añade un borde superior */
  }

  .catalog-left,
  .catalog-right {
    width: 100%; /* Ocupan el ancho completo */
    margin-bottom: 15px; /* Espacio entre las listas */
  }

  .catalog-left .list-catalog-a,
  .catalog-right .list-catalog-b {
    font-size: 20px; /* Reduce el tamaño de la fuente de las listas */
    text-align: left; /* Alinea el texto de la lista a la izquierda */
  }

  .saboresEspeciales {
    height: auto;
    align-items: center; /* Centra los elementos */
    text-align: center; /* Centra el texto */
    margin-top: 20px; /* Más espacio superior */
  }

  .saboresEspeciales h4 {
    font-size: 24px; /* Reduce el tamaño del título de sabores especiales */
  }
}


    /* Definición de los keyframes */
    @keyframes fadeInRight {
        0% {
            opacity: 0.5; 
            transform: translateX(50%); /* Comienza un poco a la derecha */
        }
        100% {
            opacity: 1;
            transform: translateX(0); /* Llega a su posición original */
        }
    }

    
    @keyframes fadeInLeft {
        0% {
            opacity: 0.5; 
            transform: translateX(-50%); /* Comienza un poco a la derecha */
        }
        100% {
            opacity: 1;
            transform: translateX(0); /* Llega a su posición original */
        }
    }

/*====formulario====*/

.content-form{
  display: flex;
  justify-content: center; /* Centrado horizontal */
  align-items: center; /* Centrado vertical */
  background-image: url("../images/papel-crema.webp");
  background-position: center 50%;   /* Centrado horizontal y vertical */
  background-size: cover;   /* Ajusta para cubrir todo el fondo */
  background-repeat: no-repeat; /* Evita que se repita */
  /*background: #E5D09E;*/
  background-position: center 50%;
  background-size: cover;  
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  height: auto;
}

.contact-form{
  padding: 70px 0px 70px 0px;
}

.form-group {
  margin-bottom: 15px;
}
.row {
  display: flex;
  gap: 10px;
}
.row div {
  flex: 1;
}

.contact-form input, 
.contact-form textarea {
    font-family: "Roboto Condensed", sans-serif;
    font-size: medium;
    width: 100%; /* Ocupa todo el ancho del contenedor */
    padding: 10px; /* Espaciado interno para un mejor aspecto */
    margin: 8px 0; /* Espacio entre los campos */
    border: 0px; /* Borde para los campos */
    border-radius: 10px; /* Bordes redondeados */
    box-sizing: border-box; /* Incluye padding y border en el ancho total */
}

.contact-form textarea {
  height: 150px;
}

#btn-submit{
  width: 100%;
  background-color: var(--enviar-button);
  color:var(--white-text);
  font-weight: bold;
  font-size: 28px;
  font-family: "Roboto Condensed", sans-serif;
  height: 54px;
  border-style: solid;
  border-width: 3px;
  border-color: var(--white-text);
  border-radius: 20px; /* Bordes redondeados */
}

#btn-submit:hover{
  background-color: var(--enviar-button-cliked);
}

/*====conito====*/
.cono {
  position: absolute;
  display: flex;
  align-items: center;
  align-content: center;
  width: 280px;
  height: 280px;
  background-color: rgb(216, 141, 194);
  right: 16%;
  border-radius: 50%;
  animation: swingOne 3s ease-in-out infinite;
  box-sizing: border-box;
  overflow: hidden;
}
.cono a img{
  width: 100%;
  height: auto;
  animation: swingTwo 3s ease-in-out infinite;
  filter: brightness(93%);
}

.cono a #cono-full:hover{
  filter: brightness(100%);
  height: auto;
  animation: swingTwo 3s ease-in-out infinite;
}

#Whats-min{
  display: none;
}

/* ===== Estilos para Móvil footer ===== */
@media (max-width: 768px) {
  #Whats-min{
    display: block;
  }
  .contact-form{
    padding: 85px 20px 85px 20px;
  }
  .cono {
    position: absolute;
    display: flex;
    align-items: center;
    align-content: center;
    width: 100px;
    height: 100px;
    background-color: rgb(216, 141, 194);
    top: -60px;
    right: 37%;
    border-style: solid;
    border-width: 2px;
    border-color: var(--white-text);
    border-radius: 50%;
    animation: swingOne 3s ease-in-out infinite;
    overflow: hidden;
  }
  .cono a #Whats-min{
    width: 100%;
    height: auto;
    animation: swingTwo 3s ease-in-out infinite;
  }
  .cono a #Whats-min:hover{
    width: 110%;
    height: auto;
    animation: swingTwo 3s ease-in-out infinite;
  }

  #cono-full{
    display: none;
  }
  
}

 /* Definición de la animación */
 @keyframes swingOne {
  0% {
    transform: translateY(0); /* Punto inicial */
  }
  50% {
    transform: translateY(20px); /* Mover hacia abajo */
  }
  100% {
    transform: translateY(0); /* Regresar al punto inicial */
  }
 }

 @keyframes swingTwo {
  0% {
    transform: translateY(0); /* Punto inicial */
  }
  50% {
    transform: translateY(13px); /* Mover hacia abajo */
  }
  100% {
    transform: translateY(0); /* Regresar al punto inicial */
  }
}

.copy-right {
  position:relative;
  min-height: 60px;
  background-color: #A59172;
  display: flex;
  align-items: center; /* Alinea verticalmente */
  justify-content: center; /* Alinea horizontalmente */
}

.copy-right span{
  color: var(--white-text);
  text-align: center;
  font-size: large;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
}

.copy-right a{
  text-decoration: none;
  color: var(--white-text);
  text-align: center;
  font-size: large;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 600;
}