  @font-face {
  font-family: Regular;
  src: url(Fonts/Fonts/Hartwell\ Ultralight.otf);
}

@font-face {
  font-family: Italico;
  src: url(Fonts/Fonts/Hartwell\ Bold\ Italic.otf);
}

@font-face {
  font-family: Blacks;
  src: url(Fonts/Fonts/Hartwell\ Bold.otf);
}

@font-face {
  font-family: Medio;
  src: url(Fonts/Fonts/Hartwell\ Medium.otf);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Regular, Arial, sans-serif;
  background: #2b2b2b;
  color: #ffffff;
  padding-top: 80px; /* para que no se esconda bajo la navbar */
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  background: #000;
}

.logo img {
  height: 40px;
}

.navbar ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.navbar a {
  text-decoration: none;
  font-size: 0.95rem;
  color: white;
}

/* Ajuste del color y forma del boton de AGENDA TU DIA */
.agenda {
 background: white;
  color: black;
  padding: 0.4rem 1rem;
  border-radius: 3px;
}


.Titulo {
  font-family: Regular;
  font-size: 3rem;
  text-align: left;
  margin-left: 100px;
  color: #fff;
}

.boton {
  background: #fff;
  color: black;
  padding: 0.8rem 1.5rem;
  font-size: 1.5rem;
  margin-left: 100px;
  font-family: Medio;
  border: 1px solid #fff;
}


/* FOOTER */
.liston-negro {
  background-color: #2b2b2b;
  width: 100%;
  padding: 2rem 4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.liston-negro .social {
  display: flex;
  gap: 15px;
}

.descripcion{
  display: flex;
  gap: 150px; 
  padding: 50px;
  text-align: left;
}

.descripcion .primeraDescripcion{
  max-width: 100px;

}

.formula-section{
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 4rem 6rem;
  background-color: #2b2b2b;
  color: white;
}

.formula-card{
  display: flex;
  align-items: center;
  justify-content:space-between;
  gap: 3rem;
}


.formula-texto{
  flex: 1;
  max-width: 450px;
  background-color: white;
  color: black;
  padding: 20px;
  border-radius: 10px;
}

.formula-texto h2{
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.formula-texto p{
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.agenda-btn{
  background-color: #2b2b2b;
  border: 2px solid white;
  color: rgb(255, 255, 255);
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.agenda-btn:hover{
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}

.formula-imagen{
  flex: 1;
}

.formula-imagen img{
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}


.hero{
  text-align: center;
  padding: 3rem 1rem;
  background-color: #2b2b2b;
}

.hero h1{
  font-size: 2.5rem;
  font-weight: 300;
}

.hero h1 span{
  font-weight: 700;
}