@font-face {
  font-family: Boldd;
  src: url(./Fonts//Fonts/Hartwell\ Bold.otf);
}

@font-face {
  font-family: Regular;
  src: url(./Fonts/Fonts/Hartwell\ Ultralight.otf);
}

@font-face {
  font-family: Harte;
  src: url(./Fonts/Fonts/Hartwell\ Medium.otf);
}


    :root{
    --page-bg: #000;
    --card-bg: transparent;
    --card-alt-bg: #000000;
    --text-color: #fff;
    --container-max: 1100px;
  }

  /* Reset ligero */
  *{
    margin: 0;
  padding: 0;
  box-sizing: border-box;
  }

/* Barra de navegacion (Modificar a gusto) */
  .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  font-family: Regular;
}

/* Ajuste de tamaño del logo (Modificar a gusto) */
.logo img {
  height: 40px;
}

/* Configuracion de los apartados de la barra de navegacion */
.navbar ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.navbar a {
  text-decoration: none;
  font-size: 0.95rem;
}

/* Ajuste del color y forma del boton de AGENDA TU DIA */
.agenda {
 background: white;
  color: black;
  padding: 0.4rem 1rem;
  border-radius: 3px;
}

/* Color de los apartados de la barra de navegacion */
.apartados{
    color: white;
    
}


.body{
    background: #000;
    margin:0;
    padding:40px 10px;
    color:#fff;
  }

  .sedes-list{
    max-width:1100px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:40px;
  }

  .sede{
    display:flex;
    align-items:center;
    gap:20px;
    background:#000;/* negro por defecto */
    color:#fff;
    padding:20px;
    transition:all 0.3s ease;
  }

  .sede:hover{
    background:#fff;   /* solo la sede en hover se pone blanca */
    color:#000;
    border-width: var(--text-color) ;
  }

  .sede .texto{
    flex:1;
  }

  .sede h2{
    margin:0 0 10px;
    font-family: Regular;
    font-size: 2rem;
  }

  .sede p{
    margin:0 0 15px;
    max-width: 380px;
    font-family: Harte;
    color: inherit;
    text-align: justify;
  }

  .sede a{
    font-weight:bold;
    text-decoration:none;
    color:inherit;
    font-family: Boldd;
  }

  .sede .foto{
    flex:1;
    max-width:550px;
  }

  .sede .foto img{
    width:100%;
    height:auto;
    display:block;
  }

  @media(max-width:768px){
    .sede{flex-direction:column}
    .sede .foto{max-width:100%}
  }

  /* Footer */
.liston-negro {
  width: 100%;
  padding: 1rem 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}


/* Estilos del texto del encabezado */
.hero-text {
max-width: 600px;
margin-top: 80px;
color: white;
padding: 80px;
border-radius: 10px;
}

/* Configuracion de el titulo del encabezado */
.hero-text h1 {
font-size: 3rem;
margin-bottom: 10px;
font-family: Regular;
}

/* Configuracion del texto del encabezado */
.hero-text p {
font-size: 1rem;
line-height: 1.5;
}

/* Estilo del boton  Promocion Del Mes*/
.boton{
  background: rgb(255, 255, 255);
  color: black;
  padding: 0.8rem 1.5rem;
  font-size: 1.5rem;
  border: 1px solid white;
  font-family: Regular;
}