:root {
  --color-text-general: #231f20; 
  --color-text-cuotas: #929497;
  --color-enfasis1: #86c5bc;
  --tamano-texto: 18px;
  --color-fondo1: #f2f2f2;
  --color-fondo2: white;
  
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  scroll-behavior: smooth;
  color: var(--color-text-general);
}

p{
  margin: 1rem 0;
  font-size: 1.2rem;
}

.enfasis{
  font-weight: bold;
}

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh; /* full screen */
  width: 100%;
  background: linear-gradient(to right, #f2f2f2, #f2f2f2);
  color: var(--color-text-general);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero-content{
  position: relative;
  width: 100%;
  
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  position: absolute;
    left: 50%;
  transform: translate(-50%);
}

.hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero h1{
  display: block;
  font-size: 16px;
  margin: 0;
  padding: 0;
  
  font-weight: normal;
}

.biglogo{
height: 70vh;
margin: 10vh;

}

/* ===== CONTENT SECTIONS ===== */
.section {
  padding: 4rem 2rem;
  text-align: center;
}

.section.alt {
  background-color: #f5f5f5;
}

.subtitulo{
  text-transform: uppercase;
  letter-spacing: 1rem;
  font-size: 3rem;
}

/* ===== GEMAS SECTION ===== */

.gemas-list{
  
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.iconos{
margin:1rem 0;
}

.iconos li img{
  width: 60px;
  height: auto;
}

.texto{
  font-size: 1.25rem;
  font-weight: bold;
}

.gemas-list li{
  text-decoration: none;
  display: inline-block;
  
  
}

.gemas-container{
  margin: 4rem 0;
  display: flex;
  
  
}

.gema-bloque{
  text-align: left;
  padding: 20px;
}

.cuota1{
  font-family: 'Times New Roman', Times, serif;
  font-size: 1.5rem;
  line-height: 2.5rem;
  color: var(--color-text-cuotas);
  text-align: right;
}

.cuota2{
  font-family: 'Times New Roman', Times, serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 2rem;
  color: var(--color-text-cuotas);
}



/* ===== CHISPAS SECTION ===== */
.chispas-container{
 
  display: flex;
  justify-content: center;
  align-items: center;
}

.chispas-bloque{
 
 padding: 20px;
 margin: 0 4rem;
}

.chispas-bloque div{
  margin: 2rem 0;
}

.chispas-bloque div span{ 

  display: block; 
  width: 100%;
}

.chispa-titulo{
  font-size: 1.6rem;
  font-weight: bold;
  text-align: right;
}
.chispa-subtitulo{
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--color-enfasis1);
  text-align: right;
}

.slogan{
  color: var(--color-enfasis1);
  font-weight: bold;
}


/* ===== sangre SECTION ===== */
.small{
  font-size: 1.4rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background-color: var(--color-fondo1);
  
  text-align: center;
  padding: 3rem 2rem;
}

.contact-section p {
  margin: 0.5rem 0;
}

.social-links ul{
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links ul li{
  text-decoration: none;
  list-style: none;
  margin: 0 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
 
  .hero-content h1 {
    font-size: 0.5rem;
  }

  .gemas-container, .chispas-container{
    flex-direction: column  ;
  }

  .chispas.bloque, .gemas-bloque{
    margin: 0;
  }

  

.biglogo{
  width: 60%;
  height: auto;

}
  
}
