:root {

  --color-main-dark: #222;
  --color-main-light: #ffffff;
  --font-family: "Roboto", sans-serif;

  --color-fondo: rgb(181, 181, 181);

  --max-width: 1000px;

  /*******************/
  --bar-height: 80px;
  /* alto de header */
  --footer-height: 30px;
  /* alto de footer */
  --bar-bg: #000000;
  /* color de fondo */
  --bar-color: #ffffff;
  /* color de texto */
  --z-index-bar: 9999;
  --padding-normal: 10px;

  --padding-top: 10px;
}

/*********************************************************/
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}


body {
  background-color: var(--color-fondo);

  background-image: url('../img/fotovoltaica-3.jpg');
  /* cambia la ruta */
  background-size: cover;
  /* la imagen cubre toda la pantalla */
  background-repeat: no-repeat;
  /* evita que se repita */
  background-attachment: fixed;
  /* hace que la imagen quede fija */
  background-position: center;
  /* centrada en pantalla */
  /*font-family: "Roboto", sans-serif;*/
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-main-dark);


}

a {
  text-decoration: none;
  color: white;
}

ul {
  list-style: none;
}

/********************************* */


.wrap {
  height: 100%;
  max-width: var(--max-width);
  margin: 10px auto;
  padding: 20px 17px;
}

.wrap-1 {
  margin-top: 95px;
}

.wrap-box {
  border: 1px solid rgb(255, 255, 255);
  border-radius: 14px;
  background-color: #ffffffbd;
  padding: 0 50px;
}

.wrap-box a{
  color: rgb(61, 61, 61);
}

.btn {
    cursor: pointer;
    margin-top: 20px;
    /*height: 30px;*/
    padding: 10px 30px;
    border-radius: 4px;
    background: #ffffff61;
    border: #cecece solid 1px;
}

.h2 {
  font-size: 25px;
  font-weight: 700;
}

.h3 {
  font-size: 16px;
  font-weight: 600;
}

.center {
  text-align: center;
}

/***********************************************************************************/
/* BARRA FIJA */

/* ===== BARRA FIJA ===== */
.bar-header {
  top: 0;
  height: var(--bar-height);
}

.bar-footer {
  bottom: 0;
  height: var(--footer-height);
  display: flex;
  font-size: 12px;

}

.bar-footer-t {
  display: flex;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.bar-fixed {
  position: fixed;
  left: 0;
  right: 0;
  background: var(--bar-bg);
  color: var(--bar-color);
  z-index: var(--z-index-bar);
}

.block-inner {
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: var(--padding-normal);
  padding-right: var(--padding-normal);
  padding-top: var(--padding-top);


}

.main-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: calc(var(--bar-height) + 0px);
  padding-bottom: calc(var(--bar-height) + 0px);
  padding-left: var(--padding-normal);
  padding-right: var(--padding-normal);
}


.logo img {
  width: 130px;
}

.login{
  line-height: 30px;
}

.login a:hover{
  color: #454545;
}
/********************************************* */
.card-grid {
  display: flex;
}

.card-height {
  height: 460px;
}

@media (max-width: 820px) {
  .card-grid {
    display: block;
  }

  .card-height {
    height: 273px;
  }
}



.card-servicio {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  margin: 10px;
  padding: 15px 20px;
  min-width: 300px;

  position: relative;
  /* Necesario si el oculto va a estar posicionado */
  /*display: inline-block;*/
  cursor: pointer;
}

@media (max-width: 1000px) {
  .card-servicio {
    min-width: 200px;
  }
}

.card-servicio h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.card-servicio p {
  font-size: 17px;
  /*display: none;*/
  opacity: 0;
  /* invisible */
  visibility: hidden;
  /* no interactuable */
  transform: translateY(-10px);
  /* un poco desplazado hacia arriba */
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.card-list {
  display: inline;
  opacity: 0;
  /* invisible */
  visibility: hidden;
  /* no interactuable */
  transform: translateY(-10px);
  /* un poco desplazado hacia arriba */
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;

}

@media (max-width: 820px) {
  .card-list {
    display: ruby;
  }
}

.card-item {
  font-size: 10px;
  border: 1px solid black;
  border-radius: 4px;
  padding: 10px;
  font-weight: 700;
}

.card-servicio:hover p {
  /*display: block; /* Se muestra al hacer hover sobre el contenedor */
  opacity: 1;
  /* visible */
  visibility: visible;
  /* interactuable */
  transform: translateY(0);
  /* vuelve a su sitio */
}

/******************************* */
.fotov-img {
  position: relative;
  background-image: url('../img/fotovoltaica-1.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  /* opcional */
}

/* Capa de color entre el fondo y el contenido */
.fotov-img::before {
  content: '';
  position: absolute;
  inset: 0;
  /* top:0; right:0; bottom:0; left:0 */
  background-color: rgba(255, 255, 255, 0);
  /* transparente al inicio */
  transition: background-color 0.3s ease;
  z-index: 0;
  /* por debajo del contenido */
  pointer-events: none;
  /* no bloquea clicks */
}

.fotov-img:hover::before {
  background-color: rgba(255, 255, 255, 0.5);
  /* blanco semitransparente */
}

/* Todo lo que vaya dentro (texto, botones, etc.) por encima del overlay */
.fotov-img>* {
  position: relative;
  z-index: 1;
}

/******************************* */


.hidrog-img {
  position: relative;
  background-image: url('../img/hidrogeno-1.jpeg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  /* opcional */
}

/* Capa de color entre el fondo y el contenido */
.hidrog-img::before {
  content: '';
  position: absolute;
  inset: 0;
  /* top:0; right:0; bottom:0; left:0 */
  background-color: rgba(255, 255, 255, 0);
  /* transparente al inicio */
  transition: background-color 0.3s ease;
  z-index: 0;
  /* por debajo del contenido */
  pointer-events: none;
  /* no bloquea clicks */
}

.hidrog-img:hover::before {
  background-color: rgba(255, 255, 255, 0.5);
  /* blanco semitransparente */
}

/* Todo lo que vaya dentro (texto, botones, etc.) por encima del overlay */
.hidrog-img>* {
  position: relative;
  z-index: 1;
}


/********************************** */


.biogas-img {
  position: relative;
  background-image: url('../img/biogas-1.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  /* opcional */
}

/* Capa de color entre el fondo y el contenido */
.biogas-img::before {
  content: '';
  position: absolute;
  inset: 0;
  /* top:0; right:0; bottom:0; left:0 */
  background-color: rgba(255, 255, 255, 0);
  /* transparente al inicio */
  transition: background-color 0.3s ease;
  z-index: 0;
  /* por debajo del contenido */
  pointer-events: none;
  /* no bloquea clicks */
}

.biogas-img:hover::before {
  background-color: rgba(255, 255, 255, 0.5);
  /* blanco semitransparente */
}

/* Todo lo que vaya dentro (texto, botones, etc.) por encima del overlay */
.biogas-img>* {
  position: relative;
  z-index: 1;
}

/********************************* */

.contacto-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-around;  
}

.contacto-grid a{
  color: rgb(61, 41, 4);
  line-height: 26px;
}

.contacto-grid a ion-icon{
  font-size: 40px;
}
/****************************************/

.footer {
  width: 100%;
  height: 250px;
  background-color: black;
}

.footer .wrap {
  margin-bottom: 0;
  /*padding: 0;*/
}

.footer .bar-header {
  /*text-align: center;*/
}

.footer .block-inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px
}

.menu-footer {
  margin: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 10px;
}

.menu-footer a {
  color: grey;
}

/*********************************** */

/* SCROLL */

.scroll-btn {
    position: fixed;
    right: 20px;
    z-index: 1000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    background-color: #575757; /* color de fondo del botón */
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

/* Botón ir arriba */
.scroll-top {
    bottom: 80px;
}

/* Botón ir abajo */
.scroll-bottom {
    bottom: 30px;
}

/* Hover */
.scroll-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

/* Ocultos de inicio, se mostrarán con JS si quieres */
.scroll-btn.hidden {
    display: none;
}
