/* BASE */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #1a1a1a;
  color: #fff;
  height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'work sans', sans serif ;
}
.menu-nav {
  background-color: #27656C;
  padding:  0.6rem 0;
  max-height: 10rem;
}
.menu-nav .menu a{
  font-size: 1.3rem;
  padding: 0.4rem 0.8rem;
  border-radius: 12%;
}
nav ul {
  list-style: none;
  display: flex;         
  justify-content: center;
  gap: 5rem;             
  padding: 1rem;

}
nav ul a{
  text-decoration: none;
  color:#DAF1DD;
  padding: 5rem 5 rem;
  border-radius: 25%;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
  font-size: 2.5rem;

}
nav ul a:hover,
nav ul a:focus{
  color: black;
  background-color: #DAF1DD;
  transform: translateY(-0.12rem) scale(1.02);
}

/* SLIDES */
.slide {
  display: none;                 
  flex: 1;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px;
  text-align: center;
}

.slide.active {
  display: flex;                 
}

h1 {
  font-size: 6rem;
  margin-bottom: 6rem;
  text-shadow: -6px 6px 10px #000;
}
h2{
    font-size: 3rem;
    margin-bottom: 2rem;
}
h3{
    font-size: 2rem;
    margin-bottom: 2rem;
}

p {
  max-width: 700px;
  font-size: 1.5rem;
  line-height: 1.6em;
  color: #e2e2e2;
  margin-bottom: 2.5rem;
}
ul {
    list-style-position: inside;
    margin-top: 20px;
}
li{
    margin-bottom: 12px;
    font-size: 1.1rem;
    line-height: 1.5rem;
    color: #cdedff;
}
img{
    width: 10rem;
    height: 10rem;
    object-fit: cover;
    border-radius: 100%;
}
/* COMITENTES */
#slide5 h2 {
    font-size: 3rem; /* Igual que los h2 de otros slides */
    margin-bottom: 3rem;
}

#slide5 .comitente {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

#slide5 .comitente img {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    object-fit: cover;
}

#slide5 .comitente h3 {
    font-size: 3.5rem; /* Más grande que h2 */
    margin: 0;
    color: #cdedff;
}

/* UL y LI del slide 5 igual a los otros slides */
#slide5 ul {
    text-transform: none;
    font-size: 1.1rem;
    margin-top: 20px;
    list-style-position: inside;
    color: #cdedff;
}

#slide5 li {
    font-size: 1.1rem;
    line-height: 1.5rem;
    margin-bottom: 12px;
    color: #cdedff;
    text-transform: none;
}
/* USER PERSONA */
#slide4 .personas {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: nowrap; /* no se apilan */
  margin-top: 40px;
}

#slide4 .persona {
  background: white;
  border-radius: 16px;
  padding: 25px;
  width: 380px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #000;
}
#slide4 .persona h3,
#slide4 .persona h4,
#slide4 .persona p {
  color: #000;
}

#slide4 .persona svg {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

#slide4 .persona h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

#slide4 .persona h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
}

#slide4 .persona p {
  font-size: 1rem;
  line-height: 1.5rem;
}
/* CONTROLES  */
.controls {
  display: flex;
  justify-content: space-between;
  padding: 15px 40px;
  background: #222;
}

button {
  background: #444;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1em;
}

button:hover {
  background: #666;
}

button:disabled {
  opacity: 0.5;
  cursor: default;
}

/* COLORES DIFERENTES POR SLIDE */
#slide1 { background-color: #1e4d52; }
#slide2 { background-color: #1e4d52; }
#slide3 { background-color: #1e4d52; }
#slide4 { background-color: #1e4d52; }
#slide5 { background-color: #1e4d52; }