:root {
  --green-blue-crayola: #171717;
  --prussian-blue: #171717;
  --eerie-black: hsl(210, 11%, 15%);
  --dark-orange: #1b9f88;
  --alice-blue: hsl(203, 100%, 97%);
  --light-gray: hsl(0, 0%, 80%);
  --indigo-dye: #1b9f88;
  --cultured-1: hsl(0, 0%, 94%);
  --cultured-2: hsl(0, 0%, 95%);
  --cultured-3: hsl(0, 0%, 95%);
  --plutinum: hsl(0, 0%, 91%);
  --black_60: hsla(0, 0%, 0%, 0.6);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --onyx: hsl(0, 0%, 24%);

  --ff-oswald: 'Oswald', sans-serif;
  --ff-rubik: 'Rubik', sans-serif;
}
a{
  text-decoration: none;
}

body {
  margin: 0;
  font-family: var(--ff-rubik);
  background-color: var(--green-blue-crayola);
  color: var(--white);
  line-height: 1.6;
  
}

/* Hero */
/* Hero con fondo */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 5%;
  background: url("images/homelanding.png") no-repeat center center/cover;
  color: var(--white);
  overflow: hidden;
}

/* Capa oscura */
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}

/* Banner con logo */
.hero-banner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin-bottom: 2rem;
  padding-left: 5rem;
}

.hero-banner img {
  max-height: 60px;
  width: auto;
}

/* Contenedor del contenido principal */
.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* Ajustes previos para contenido */
.hero-content {
  
  max-width: 500px;
}

.hero h1 {
  font-family: var(--ff-oswald);
  font-size: 2.5rem;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--dark-orange);
}

.hero-image img {
  max-width: 400px;
  width: 100%;
}


form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form input {
  padding: 0.8rem;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
}

form button {
  background: var(--dark-orange);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: 6px;
  font-size: 1.1rem;
  cursor: pointer;
  font-weight: bold;
}

form button:hover {
  background: var(--indigo-dye);
}

.hero-image img {
  max-width: 400px;
  width: 100%;
}

.workshop-date {
  font-size: 0.9rem;
  color: var(--light-gray);
}

/* Features */
.features {
  text-align: center;
  padding: 3rem 5%;
  background: var(--eerie-black);
}

.features h2 {
  font-family: var(--ff-oswald);
  margin-bottom: 2rem;
}

.features-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.feature-card {
  background: var(--onyx);
  padding: 2rem;
  border-radius: 12px;
  flex: 1;
  min-width: 250px;
  max-width: 300px;
}

/* CTA */
.cta {
  background: var(--dark-orange);
  color: var(--white);
  text-align: center;
  padding: 3rem 5%;
  font-size: 1.5rem;
}

.cta .button {
  margin-top: 1rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 6px;
  border: none;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  font-weight: bold;
}
/* Página de gracias */
.gracias-body {
  background: var(--eerie-black);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.gracias-container {
  text-align: center;
  padding: 2rem;
}

.gracias-card {
  background: var(--onyx);
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.gracias-card h1 {
  font-family: var(--ff-oswald);
  margin-bottom: 1rem;
  color: var(--dark-orange);
  font-size: 1.8rem;
}

.gracias-card p {
  margin: 0.5rem 0;
  font-family: var(--ff-rubik);
}

.btn-volver {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--dark-orange);
  color: var(--white);
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
}

.btn-volver:hover {
  background: var(--indigo-dye);
}

.cta button:hover {
  background: var(--eerie-black);
}
/* ===============================
   📱 Responsividad
   =============================== */

/* Tablets (pantallas medianas) */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .hero-image img {
    max-width: 300px;
  }

  .features-grid {
    gap: 1.5rem;
  }
}

/* Móviles grandes */
@media (max-width: 768px) {
   .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-banner {
    padding-left: 0px;
    justify-content: center;
  }

  .hero-image img {
    max-width: 280px;
    margin-top: 1.5rem;
  }
  .hero h1 {
    font-size: 2rem;
  }

  form {
    width: 100%;
  }

  .features-grid {
    flex-direction: column;
    align-items: center;
  }

  .feature-card {
    max-width: 100%;
    width: 90%;
  }

  .cta h2 {
    font-size: 1.8rem;
  }

  .cta p {
    font-size: 1rem;
  }

  .cta .button {
    width: 100%;
  }
}

/* Móviles pequeños */
@media (max-width: 480px) {
  .hero {
    padding: 2rem 1rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  form input,
  form button {
    font-size: 0.9rem;
    padding: 0.8rem;
  }

  .workshop-date {
    font-size: 0.8rem;
  }

  .features {
    padding: 2rem 1rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .cta {
    padding: 2rem 1rem;
  }

  .cta h2 {
    font-size: 1.5rem;
  }

  .cta .button {
    font-size: 1rem;
    padding: 0.8rem;
  }
}
@media (min-width: 1080px){

.hero-content {
  margin-left: 5rem;
 
}

}
