.elementor-310 .elementor-element.elementor-element-8d7a262{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-310 .elementor-element.elementor-element-523753a.elementor-element{--align-self:stretch;}:root{--page-title-display:none;}/* Start custom CSS *//* HERO CON IMAGEN */

.hero-playgrounds {
  position: relative;
  height: 85vh;
  min-height: 600px;

  background-image: url("https://afuerahayunmundo.com/wp-content/uploads/2026/03/pexels-picography-3034-scaled.webp"); 
  background-size: cover;
  background-position: center;

  display: flex;
  align-items: center;
  overflow: hidden;
}

/* overlay oscuro + degradado editorial */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15,45,58,0.85) 0%,
    rgba(15,45,58,0.75) 40%,
    rgba(15,45,58,0.4) 70%,
    rgba(15,45,58,0.1) 100%
  );
}

/* contenedor */
.hero-container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* contenido */
.hero-content {
  max-width: 540px;
  color: white;
}

/* eyebrow */
.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: #D8CFC4;
  text-transform: uppercase;
}

/* título */
.hero-playgrounds h1 {
  font-family: "Poppins", sans-serif;
  font-size: 56px;
  line-height: 1.05;
  margin: 15px 0;
  color: white;
}

/* subtítulo */
.hero-subtitle {
  font-size: 20px;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.9);
}

/* texto */
.hero-text {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 25px;
}

/* botón */
.hero-btn {
  display: inline-block;
  background: #FFFFFF;
  color: #0F2D3A;
  padding: 12px 26px;
  border-radius: 30px;
  font-family: "Poppins";
  font-size: 14px;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #D8CFC4;
}

/* responsive */
@media (max-width: 768px) {

  .hero-playgrounds {
    height: auto;
    padding: 100px 0;
  }

  .hero-playgrounds h1 {
    font-size: 36px;
  }
}
/* SECCIÓN EXPLICATIVA */

.playground-explainer {
  background: #FFFFFF;
  padding: 100px 0;
}

.explainer-container {
  width: 90%;
  max-width: 900px;
  margin: auto;
}

/* intro */
.explainer-intro {
  margin-bottom: 60px;
}

.explainer-intro h2 {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  line-height: 1.3;
  color: #24323A;
  margin-bottom: 15px;
}

.explainer-sub {
  font-size: 18px;
  color: #7A7A7A;
  max-width: 600px;
}

/* grid */
.explainer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* items */
.explainer-item h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  margin-bottom: 8px;
  color: #24323A;
}

.explainer-item p {
  font-size: 15px;
  color: #7A7A7A;
}

/* responsive */
@media (max-width: 768px) {

  .explainer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .explainer-intro h2 {
    font-size: 28px;
  }
}
/* SECCIÓN EJEMPLOS */

.playgrounds-examples {
  background: #0F2D3A;
  padding: 120px 0;
  color: white;
}

.examples-container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* header */
.examples-header {
  margin-bottom: 60px;
}

.examples-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  color: white;
}

.examples-header p {
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
}

/* grid editorial */
.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 20px;
}

/* card */
.example-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

/* imagen */
.example-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* overlay */
.example-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.1),
    rgba(0,0,0,0.7)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

/* texto */
.example-overlay h3 {
  font-family: "Poppins";
  font-size: 20px;
  color: white;
}

.example-overlay p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

/* card grande */
.example-card.wide {
  grid-column: span 2;
}

/* hover */
.example-card:hover img {
  transform: scale(1.08);
}

/* responsive */
@media (max-width: 768px) {

  .examples-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .example-card.wide {
    grid-column: span 1;
  }

}
/* PROCESO */

.playgrounds-process {
  background: #F4F6F8;
  padding: 120px 0;
}

.process-container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* header */
.process-header {
  margin-bottom: 70px;
}

.process-header h2 {
  font-family: "Poppins";
  font-size: 38px;
  color: #24323A;
}

.process-header p {
  margin-top: 10px;
  color: #7A7A7A;
}

/* steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}

/* línea conectora */
.process-steps::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 1px;
  background: #D8CFC4;
}

/* step */
.step span {
  font-family: "Poppins";
  font-size: 12px;
  letter-spacing: 2px;
  color: #1E5A74;
}

.step h3 {
  margin: 10px 0;
  font-size: 18px;
}

.step p {
  font-size: 14px;
}

/* responsive */
@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-steps::before {
    display: none;
  }
}
/* PARA QUIÉN ES / NO ES */

.playgrounds-fit {
  background: #0F2D3A;
  padding: 120px 0;
  color: white;
}

.fit-container {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}

/* header */
.fit-header {
  margin-bottom: 60px;
}

.fit-header h2 {
  font-family: "Poppins";
  font-size: 36px;
  color: white;
}

.fit-header p {
  margin-top: 10px;
  color: rgba(255,255,255,0.7);
}

/* grid */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* bloques */
.fit-block {
  padding: 30px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
}

.fit-block h3 {
  font-family: "Poppins";
  margin-bottom: 15px;
}

/* listas */
.fit-block ul {
  list-style: none;
}

.fit-block li {
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

/* variantes */
.fit-block.no {
  border-left: 3px solid #D8CFC4;
}

.fit-block.yes {
  border-left: 3px solid #1E5A74;
}

/* responsive */
@media (max-width: 768px) {
  .fit-grid {
    grid-template-columns: 1fr;
  }
}
/* CTA FINAL */

.playgrounds-cta {
  background: #D8CFC4;
  padding: 100px 0;
  text-align: center;
}

.cta-container {
  width: 90%;
  max-width: 700px;
  margin: auto;
}

.playgrounds-cta h2 {
  font-family: "Poppins";
  font-size: 34px;
  color: #24323A;
}

.playgrounds-cta p {
  margin: 15px 0 25px;
  color: #7A7A7A;
}

.cta-btn {
  display: inline-block;
  background: #0F2D3A;
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  font-family: "Poppins";
  transition: 0.3s;
}

.cta-btn:hover {
  background: #1E5A74;
}/* End custom CSS */