/* =========================================================
   FILLERS SOLO PARA DEMO DE SCROLL
   ========================================================= */

.filler {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  color: #999;

  background: repeating-linear-gradient(
    45deg,
    #eee,
    #eee 20px,
    #e4e4e4 20px,
    #e4e4e4 40px
  );
}


/* =========================================================
   SECTION GENERAL
   ========================================================= */

section {
  width: 90%;
  padding: 2em 0;
  margin: auto;
  max-width: 1400px;
}


/* =========================================================
   CONTENEDOR AZUL
   ========================================================= */

.cotizador-blue {
  width: 100%;
  position: relative;

  background: linear-gradient(
    135deg,
    #1a56e8,
    #2f6df6
  );

  overflow: hidden;
}


/* =========================================================
   SECTION DEL COTIZADOR
   ========================================================= */

section.cotizador-row {
  display: flex;
  align-items: center;
  min-height: 560px;
}


/* =========================================================
   CONTENIDO / TEXTO
   ========================================================= */

.cotizador-content {
  position: relative;
  z-index: 5;

  color: #fff;

  max-width: 420px;
  flex: 1 1 40%;
}


.cotizador-content h1 {
  font-size: 2.6em;
  line-height: 1.15;

  margin: 0 0 0.4em;

  font-weight: 800;
}


.cotizador-content p {
  font-size: 1em;
  line-height: 1.5;

  opacity: 0.9;

  margin: 0 0 1.5em;
}


.cotizador-content .btn {
  display: inline-block;

  background: #ff7a1a;
  color: #fff;

  text-decoration: none;
  font-weight: 700;

  padding: 0.9em 1.8em;

  border-radius: 10px;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}


.cotizador-content .btn:hover {
  background: #ff8c3a;
  transform: translateY(-2px);
}


/* =========================================================
   CONTENEDOR DE PRODUCTOS / PARALLAX
   ========================================================= */

.cotizador-products {
  position: relative;

  flex: 1 1 60%;

  height: 540px;
}


/* =========================================================
   PRODUCTOS
   ========================================================= */

.product {
  position: absolute;

  border-radius: 20px;

  will-change: transform;
}


/* =========================================================
   PRODUCTO 1 - AUDÍFONOS
   ========================================================= */

.product-1 {
  width: 36%;
  height: 58%;

  top: -10%;
  left: 4%;

  background: url(
    "https://compraonlineusa.com/resources/img/cot-04.avif"
  );

  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}


/* =========================================================
   PRODUCTO 2 - HOJA / COTIZACIÓN
   ========================================================= */

.product-2 {
width: 80%;
    height: 80%;
    top: 8%;
    left: 8%;

  background: url(
    "https://compraonlineusa.com/resources/img/cot-01.avif"
  );

  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}


/* =========================================================
   PRODUCTO 3 - CALCULADORA
   ========================================================= */

.product-3 {
  width: 36%;
  height: 54%;

  top: -6%;
  left: 61%;

  background: url(
    "https://compraonlineusa.com/resources/img/cot-03.avif"
  );

  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}


/* =========================================================
   PRODUCTO 4 - TELÉFONO
   ========================================================= */

.product-4 {
  width: 35%;
  height: 75%;

  top: 39%;
  left: 58%;

  background: url(
    "https://compraonlineusa.com/resources/img/cot-02.avif"
  );

  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}


/* =========================================================
   PRODUCTO 5 - PERSONA
   ========================================================= */

.product-5 {
  width: 55%;
  height: 73%;

  top: 37%;
  left: 0%;

  background: url(
    "https://compraonlineusa.com/resources/img/cot-05.avif"
  );

  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}


/* =========================================================
   CAPAS
   ========================================================= */

.product-1 {
  z-index: 1;
}

.product-3 {
  z-index: 1;
}

.product-5 {
  z-index: 1;
}

.product-4 {
  z-index: 2;
}

.product-2 {
  z-index: 3;
}


/* =========================================================
   RESPONSIVE - TABLET / CELULAR
   ========================================================= */

@media (max-width: 900px) {

  /*
   * En móvil NO ponemos los productos debajo del texto.
   *
   * La section se convierte en un lienzo.
   * Los productos se posicionan alrededor del contenido.
   */

  section.cotizador-row {
    position: relative;

    display: block;

    min-height: 500px;

    padding: 0;
  }


  /* =====================================================
     TEXTO CENTRAL
     ===================================================== */

  .cotizador-content {
    position: relative;

    z-index: 10;

    width: 100%;
    max-width: 430px;

    margin: 0 auto;

    padding: 120px 30px 100px;

    text-align: center;
  }


  .cotizador-content h1 {
    font-size: 2.2em;
    line-height: 1.1;
  }


  .cotizador-content p {
    font-size: 0.95em;
    line-height: 1.45;
  }


  /* =====================================================
     CONTENEDOR DE PRODUCTOS
     
     Ocupa TODA la section.
     Ya no se coloca debajo del texto.
     ===================================================== */

  .cotizador-products {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    margin: 0;

    pointer-events: none;

    z-index: 1;
  }


  /* =====================================================
     AUDÍFONOS
     Arriba izquierda
     ===================================================== */

  .product-1 {
        width: 39%;
        height: 39%;
        top: -17%;
        left: -11%;
  }


  /* =====================================================
     HOJA / COTIZACIÓN
     Abajo derecha
     ===================================================== */

  .product-2 {
    width: 48%;
    height: 58%;

    top: 43%;
    left: 55%;
  }


  /* =====================================================
     CALCULADORA
     Arriba derecha
     ===================================================== */

  .product-3 {
    width: 35%;
    height: 29%;

    top: 0%;
    left: 68%;
  }


  /* =====================================================
     TELÉFONO
     Abajo izquierda
     ===================================================== */

  .product-4 {
        width: 44%;
        height: 53%;
        top: 58%;
        left: -7%;
  }


  /* =====================================================
     PERSONA
     Parte inferior izquierda
     ===================================================== */

  .product-5 {
    display: none;
  }
}


/* =========================================================
   CELULARES PEQUEÑOS
   ========================================================= */

@media (max-width: 600px) {

  section.cotizador-row {
    min-height: 440px;
  }


  /* =====================================================
     TEXTO
     ===================================================== */

  .cotizador-content {
    max-width: 360px;

    padding: 105px 28px 85px;
  }


  .cotizador-content h1 {
    font-size: 1.9em;
    line-height: 1.1;
  }


  .cotizador-content p {
    font-size: 0.9em;
    line-height: 1.4;

    margin-bottom: 1.2em;
  }


  .cotizador-content .btn {
    padding: 0.8em 1.5em;

    font-size: 0.9em;
  }


  /* =====================================================
     AUDÍFONOS
     ===================================================== */

  .product-1 {
    width: 50%;
    height: 29%;

    top: -10%;
    left: -8%;
  }


  /* =====================================================
     HOJA / COTIZACIÓN
     ===================================================== */

  .product-2 {
    width: 47%;
    height: 55%;

    top: 47%;
    left: 57%;
  }


  /* =====================================================
     CALCULADORA
     ===================================================== */

  .product-3 {
    width: 37%;
    height: 27%;

    top: -10%;
    left: 80%;
  }


  /* =====================================================
     TELÉFONO
     ===================================================== */

  .product-4 {
    width: 34%;
    height: 43%;

    top: 55%;
    left: -7%;
  }


  /* =====================================================
     PERSONA
     ===================================================== */

  .product-5 {
    display: none;
  }
}