/**
 * Proyecto: Galaxia Digital
 * Archivo: /assets/css/landing-webs.css
 * Versión completa con Hero + Carrusel
 */

.gd-landing-webs {
  color: #fff;
}

/* =========================================================
   HERO
========================================================= */

.gd-landing-webs .gd-hero {
  position: relative;
  min-height: 85vh;
  padding-top: 140px; /* espacio para logo superior */
  padding-bottom: 4rem;
}

/* Gradiente superior */
.gd-landing-webs .gd-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 208px;
  background: linear-gradient(
    to bottom,
    rgba(17, 31, 45, 1) 0%,
    rgba(17, 31, 45, 0.75) 40%,
    rgba(17, 31, 45, 0.35) 70%,
    rgba(17, 31, 45, 0) 100%
  );
  z-index: 0;
}

.gd-landing-webs .gd-hero .container {
  position: relative;
  z-index: 2;
}

/* Logo superior */

.gd-landing-webs .gd-hero-top {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.gd-landing-webs .gd-logo {
  width: auto;
/*  max-width: 280px;*/
/*  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.4));*/
  margin-bottom: 4rem;
}

/* Títulos */
.gd-landing-webs .gd-hero .container {
  margin-top: 4rem;
}

.gd-landing-webs .gd-hero h1 {
  color: #fff !important;
  font-weight: 100 !important;
  text-shadow: 0 2px 2px rgba(0,0,0,0.7);
}

.gd-landing-webs .gd-hero .lead {
  color: #fff;
  max-width: 820px;
  margin: 0 auto 2rem;
  text-shadow: 0 2px 2px rgba(0,0,0,0.7);
}

/* =========================================================
   BOTÓN GHOST NUEVO
   ========================================================= */

.gd-landing-webs .btn-ghost{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.8rem 2.4rem;
  border-radius: 100px;

  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;

  background: rgba(17,31,45,0.55);
  border: 1px solid rgba(17, 31, 45, 0.5);
  color: #fff;

  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.gd-landing-webs .btn-ghost:hover{
  background: #3C80AB;
  color: #fff;
  border: 1px solid #3C80AB;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* =========================================================
   BOTÓN PRINCIPAL (BUDGET)
   ========================================================= */

.gd-landing-webs .btn-budget{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.8rem 2.4rem;
  border-radius: 100px;

  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;

background: linear-gradient(
  to bottom,
    #356593 0%,
  #6393C1 100%

);

  color: #fff;
  border: 1px solid #356593;

  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.gd-landing-webs .btn-budget:hover{
  background: linear-gradient(
    135deg,
    #356593 0%,
    #2A4E73 100%
  );
  border: 1px solid #2A4E73;
  box-shadow: 0 8px 22px rgba(0,0,0,0.3);
}

/* =========================================================
   HERO CAROUSEL
========================================================= */

.gd-landing-webs .gd-hero-carousel-wrapper {
  position: relative;
  margin-top: 5rem;
}

.gd-landing-webs .eventos-hero-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 50px;
}

.gd-landing-webs .eventos-hero-carousel {
  position: relative;
  height: 440px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

/* Slides */

.gd-landing-webs .evento-slide {
  position: absolute;
  top: 50%;
  width: 36%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: all 0.45s ease;
  pointer-events: none;
}

.gd-landing-webs .evento-slide-inner img {
  width: 100%;
  max-height: 560px;
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0,0,0,0.5);
}

/* Estados */

.gd-landing-webs .evento-slide.is-center {
  left: 50%;
  transform: translate(-50%, -50%) scale(1.05);
  opacity: 1;
  z-index: 3;
  pointer-events: auto;
}

.gd-landing-webs .evento-slide.is-left {
  left: 25%;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0.55;
  z-index: 2;
}

.gd-landing-webs .evento-slide.is-right {
  left: 75%;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0.55;
  z-index: 2;
}

.gd-landing-webs .evento-slide.is-hidden {
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  z-index: 1;
}

/* Flechas */

.gd-landing-webs .eventos-hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(0,0,0,0.45);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: all .25s ease;
  z-index: 20;
}

.gd-landing-webs .eventos-hero-prev { left: 12px; }
.gd-landing-webs .eventos-hero-next { right: 12px; }

.gd-landing-webs .eventos-hero-nav:hover {
  background: rgba(0,0,0,0.65);
}

/* =========================================================
   SECCIONES
========================================================= */

.gd-landing-webs .gd-benefits {
  background: rgba(0,0,0,0.15);
  backdrop-filter: blur(4px);
  padding: 5rem 0;
}

.gd-landing-webs .gd-models {
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
  padding: 5rem 0;
}

.gd-landing-webs .gd-process{
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  padding: 5rem 0;	
}

.gd-landing-webs .gd-cta{
background: rgba(42, 78, 115, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 5rem 0;
}

/* =========================================================
   BENEFITS – Cards estilo sistema
========================================================= */

.gd-landing-webs .gd-benefits .card{
  border: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  background: linear-gradient(
    to top,
    #5FA8D3 0%,
    rgba(95,168,211,0.4) 100%
  );
  transition: all 0.2s ease-in-out;
}

.gd-landing-webs .gd-benefits .card:hover{
  transform: translateY(-2px);
}

.gd-landing-webs .gd-benefits .card-title{
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0,0,0,.3);
}

.gd-landing-webs .gd-benefits .card-text{
  text-shadow: 0 1px 2px rgba(0,0,0,.3);
}

/* =========================================================
   MODELS – Cards estilo "Demos"
========================================================= */

/* Card base */
.gd-landing-webs .gd-models .card{
  border: 0;
  border-radius: 0.5rem;
  overflow: hidden;
background: linear-gradient(
  to top,
  #4A3A78 0%,
  rgba(92, 75, 138, 0.35) 100%
);
  transition: all 0.2s ease-in-out;
}

.gd-landing-webs .gd-models .card:hover{
  transform: translateY(-2px);
}

/* Título */
.gd-landing-webs .gd-models .card-title{
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(17,31,45,0.95);
  text-shadow: 0 1px 3px rgba(0,0,0,.3);
}

/* Texto */
.gd-landing-webs .gd-models .card-text{
  color: rgba(17,31,45,0.90);
}

/* Sombra para textos claros */
.gd-landing-webs .gd-models .text-shadow{
  text-shadow: 0 1px 2px rgba(0,0,0,.3);
}

/* Strong destacado */
.gd-landing-webs .gd-models .card-text strong{
  color: #356593;
  text-shadow: none;
}


/* =========================================================
   PROCESS – Cards estilo "Demos" (referencia gx-hub-front)
   ========================================================= */

/* Fondo/skin de cards */
.gd-landing-webs .gd-process .card{
  border: 0;
  border-radius: 0.5rem;
  overflow: hidden;
  background: linear-gradient(to top, #6393c1 0%, rgba(99,147,193,0.4) 100%);
  transition: all 0.2s ease-in-out;
}

.gd-landing-webs .gd-process .card:hover{
  transform: translateY(-2px);
}

/* Título como en la referencia */
.gd-landing-webs .gd-process h5.card-title{
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0,0,0,.3);
}

/* Sombra sutil para texto claro sobre fondos complejos */
.gd-landing-webs .gd-process .text-shadow{
  text-shadow: 0 1px 2px rgba(0,0,0,.3);
}

/* Resaltar strong dentro del texto */
.gd-landing-webs .gd-process .card p strong{
  color: #356593;
  text-shadow: 0 0 0 rgba(0,0,0,0);
}

/* Color del contenido dentro de la card (para que NO sea todo blanco) */
.gd-landing-webs .gd-process .card .card-text{
  color: rgba(17,31,45,0.90); /* texto oscuro legible sobre gradiente claro */
}

.gd-landing-webs .gd-process .card .card-title{
  color: rgba(17,31,45,0.95);
}

/* Número 01/02/03: fuerte pero integrado */
.gd-landing-webs .gd-process .step-num{
  color: #356593;
  text-shadow: 0 1px 2px rgba(0,0,0,.15);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

  .gd-landing-webs .gd-hero {
    padding-top: 120px;
    min-height: auto;
  }

  .gd-landing-webs .gd-logo {
    max-width: 280px;
    margin-bottom: 2rem;
  }

  .gd-landing-webs .eventos-hero-carousel {
    height: 320px;
  }

  .gd-landing-webs .evento-slide {
    width: 86%;
    transform: translate(-50%, -50%) scale(1);
  }

  .gd-landing-webs .evento-slide.is-left {
    left: 6%;
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.4;
  }

  .gd-landing-webs .evento-slide.is-right {
    left: 94%;
    transform: translate(-50%, -50%) scale(0.85);
    opacity: 0.4;
  }

  .gd-landing-webs .evento-slide-inner img {
    max-height: 280px;
  }
}

@media (max-width: 575.98px) {

  .gd-landing-webs .eventos-hero-carousel {
    height: 300px;
  }

  .gd-landing-webs .evento-slide {
    width: 92%;
  }

  .gd-landing-webs .evento-slide-inner img {
    max-height: 260px;
  }
}