@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;0,900;1,400;1,700&display=swap');


  :root{
    --main-color: #ac0000;  /* Rojo brillante */
    --primary-color: black;  /* Negro profundo */
    --accent-color: white;  /* Blanco claro */
    --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);  /* Sombra más intensa para un toque moderno */
    --highlight-color: #610d0d;  /* Un rojo más suave para detalles */
  }

*{
  font-family: 'Playfair Display', sans-serif;
  margin: 0; padding: 0;
  box-sizing: border-box;
  outline: none; border: none;
  
  text-decoration: none;
  list-style: none;
  transition: all .2s linear;
}

html{
  font-size: 50.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

html::-webkit-scrollbar{
  width: .6rem;
}

html::-webkit-scrollbar-track{
  background: #000000;
}

html::-webkit-scrollbar-thumb{
  background: var(--primary-color);
}

section{
  padding: 3rem 7%;
}


/* LOGO */

.footer .logo {
  text-align: center;
 
}

.footer .logo img {
  max-width: 150px; /* Ajusta el tamaño del logo */
  height: auto;
}

/* end */


.footer{
  background-color: rgb(28, 27, 27); /* Evita que la imagen se repita */
  text-align: center;
}

.footer .share{
  padding: 1rem 0;
 
}

.footer .share a{
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  color: #fff;
  border: .1rem solid #fff;
  margin: .3rem;
  border-radius: 50%;

  position: relative;
  transition: all 0.3s ease-in-out;


  box-shadow: 
  0 0 3px #ff4500,    /* Rojo brillante cercano */
  0 0 4px #ff8c00,    /* Naranja */
  0 0 5px #ffd700,    /* Amarillo */
  0 0 10px #ff4500,    /* Rojo brillante extendido */
  0 0 20px #ff8c00;    /* Naranja extendido */
}

.footer .share a:hover{
  color: #fff;
  background: var(--primary-color);
  box-shadow: 
  0 0 10px #ff4500,    /* Rojo brillante cercano */
  0 0 20px #ff8c00,    /* Naranja */
  0 0 30px #ffd700,    /* Amarillo */
  0 0 40px #ff4500,    /* Rojo brillante extendido */
  0 0 50px #ff8c00;    /* Naranja extendido */
}

.footer .credit{
  font-size: 2rem;
  color: white;
  font-weight: lighter;
 
}

.footer .credit span{
  color: white;
}

/* end */


/* BOTONES CON MENU */


/* Primer btn */
.container .service-button:first-of-type {
  background-color: #b31800;
  color: white; 
  border: 2px solid black; 
  font-weight: bold; 
}

.container .service-button:first-of-type:hover {
  background-color: #ffffff;
  color: rgb(0, 0, 0); 
  border: 2px solid black; 
  font-weight: bold; 
}
/* end */


.container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
  max-width: 1200px; /* Ancho máximo del contenedor */
  margin: 0 auto;    /* Centrar el contenedor horizontalmente */
}

.service-button {
  background-color: rgb(34, 32, 32);
  color: rgb(241, 235, 235);
  font-size:  2rem;
  padding: 15px 20px;
  border: none;
  border-radius: 8px;
  text-align: center;
  width: 100%;
  max-width: 400px;
  transition: background-color 0.3s ease;
  cursor: pointer;

}

.service-button:hover {
  background-color: #b31800;
}

.service-button strong {
  display: block;
  font-weight: bold;
  margin-top: 5px;
  font-size: 1.9rem;
}


/* end */

@media (max-width: 768px){


  .service-button {
    font-size: 1.9rem; /* Incrementa el tamaño del texto */
  }
  
  .service-button strong {
    font-size: 1.8rem; /* Ajusta el tamaño del texto en el <strong> */
  }
 

  .footer .credit{
    font-size: 2rem;
    color: white;
    font-weight: lighter;
  
  }
  
  

}

@media (max-width: 450px){
  html{
    font-size: 50%;
  }

  .service-button {
    font-size: 1.5rem; /* Incrementa el tamaño del texto */
  }
  
  .service-button strong {
    font-size: 1.4rem; /* Ajusta el tamaño del texto en el <strong> */
  }

 

}