dockers.cl Review

TitletagDescriptiontaglanguage
Dockers - Volvemos Pronto Spanish; Castilian
Alexarank
N/A
Ip adress151.101.65.124Nameserverns1.markmonitor.com
ns2.markmonitor.com
ns5.markmonitor.com
ns4.markmonitor.com
ns3.markmonitor.com
Status code200
robots.txt -http://dockers.cl/robots.txt
 
<!DOCTYPE html>
<html lang="es">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Dockers - Volvemos Pronto</title>
  <link rel="preconnect" href="https://fonts.googleapis.com">
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  <link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap"
    rel="stylesheet">
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet">
  <style>
    /* --- RESET Y BASE --- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "IBM Plex Sans", sans-serif;
      /* Fallback a sans-serif estándar */
      background-color: #ffffff;
      color: #000000;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    a {
      text-decoration: none;
      color: #007bff;
      /* Azul de enlace */
      transition: opacity 0.3s;
    }

    a:hover {
      opacity: 0.8;
      text-decoration: underline;
    }

    ul {
      list-style: none;
      display: inline-flex;
    }

    ul li {
      margin-right: 30px;
    }

    ul li img {
      max-width: 35px;
      margin-top: 10px;
    }

    /* --- LAYOUT PRINCIPAL --- */
    .wrapper {
      max-width: 1440px;
      margin: 0 auto;
      padding: 40px 60px;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .logo img {
      width: 100%;
      height: auto;
      display: block;
      max-width: 300px;

    }

    /* --- CONTENIDO CENTRAL --- */
    .main-content {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: flex-start;
      flex-grow: 1;
      gap: 60px;
      margin-bottom: 60px;
    }

    /* Columna Izquierda (Mensaje Principal) */
    .left-col {
      flex: 1;
      padding-right: 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
    }

    h1 {
      font-size: 80px;
      /* Tamaño grande desktop */
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 30px;
      letter-spacing: -1px;
    }

    .subtitle {
      font-size: 24px;
      font-weight: 400;
      color: #111;
      max-width: 500px;
    }

    /* Divisor Vertical (Desktop) */
    .divider {
      width: 1px;
      background-color: #000;
      align-self: stretch;
      /* Se estira al alto del contenedor flex */
      opacity: 0.5;
    }

    /* Columna Derecha (Contacto e Imagen) */
    .right-col {
      flex: 1;
      padding-left: 20px;
      display: flex;
      flex-direction: column;
    }

    .help-section {
      margin-bottom: 30px;
    }

    .help-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
      color: #666;
      /* Gris para "¿Alguna duda?" */
      font-weight: 400;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .arrow-icon {
      font-size: 20px;
      line-height: 1;
    }

    h2 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    h3 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .contact-list li {
      margin-bottom: 8px;
      font-size: 16px;
      list-style: inside;
      color: #007bff;
    }

    .contact-list li::marker {}

    .contact-list a {
      color: #2D9CDB;
      /* Azul similar al mockup */
      font-weight: 500;
      margin-left: -8px;
    }

    .product-image {
      margin-top: 20px;
      width: 100%;
      height: auto;
      border-radius: 12px;
      overflow: hidden;
      object-fit: cover;
      /* Sombra suave opcional */
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    /* --- FOOTER --- */
    footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: #333;
      padding-top: 20px;
      font-family: 'Inter', sans-serif;
      border-top: 1px solid #E5E5EA;
    }

    .social-icons {
      display: flex;
      gap: 15px;
    }

    .social-icons a {
      color: #999;
      transition: color 0.3s;
    }

    .social-icons a:hover {
      color: #000;
    }

    .social-icons svg {
      width: 24px;
      height: 24px;
      fill: #AEAEB2;
    }

    /* --- RESPONSIVE (MOBILE) --- */
    @media (max-width: 900px) {
      .wrapper {
        padding: 30px 20px;
        height: auto;
        min-height: auto;
      }

      header {
        margin-bottom: 40px;
      }

      .logo {
        max-width: 300px;
      }

      .logo img {

        max-width: 215px;

      }

      /* Cambiar layout a columna única */
      .main-content {
        flex-direction: column;
        gap: 0;
        margin-bottom: 40px;
      }

      .left-col {
        padding-right: 0;
        margin-bottom: 30px;

      }

      h1 {
        font-size: 42px;
        /* Reducir tamaño título */
        margin-bottom: 20px;
      }

      .subtitle {
        font-size: 18px;
      }

      /* Ocultar divisor vertical, usar hr horizontal */
      .divider {
        display: none;
      }

      .mobile-divider {
        width: 100%;
        height: 1px;
        background-color: #000;
        opacity: 0.2;
        margin: 0 0 30px 0;
        display: block;
      }

      .right-col {
        padding-left: 0;
        width: 100%;
      }

      .product-image {
        margin-top: 30px;
      }

      footer {
        flex-direction: row;
        /* Mantener fila pero ajustar espaciado si es necesario */
        margin-top: 20px;
      }

      /* Ajuste Copyright y Social para móvil según mockup */
      footer {
        justify-content: space-between;
        align-items: center;
      }
    }

    /* Utilidad solo para móvil */
    .mobile-only {
      display: none;
    }

    @media (max-width: 900px) {
      .mobile-only {
        display: block;
      }
    }
  </style>
</head>

<body>

  <div class="wrapper">

    <header>
      <div class="logo">
        <img src="https://mcprod.digitalixcomercio.com/media/wysiwyg/DOCKERS/logo.png" alt="Logo Dockers" class="logo-image">
      </div>


    </header>

    <div class="main-content">

      <div class="left-col">
        <h1>¡Estamos cambiando para ti!</h1>
        <p class="subtitle">Volvemos pronto con una tienda online renovada.</p>
        <br><br>
        <p class="subtitle">Sé parte de la comunidad</p>
        <p class="subtitle">
        <ul>
          <li><a href="https://www.instagram.com/dockerslatam/" aria-label="Instagram"><img src="https://mcprod.digitalixcomercio.com/media/wysiwyg/DOCKERS/ig.png"
                alt="Instagram"></a></li>
          <li><a href="https://web.facebook.com/dockers.cl" aria-label="Facebook"><img src="https://mcprod.digitalixcomercio.com/media/wysiwyg/DOCKERS/fb.png"
                alt="Facebook"></a>
          </li>
        </ul>
        </p>
      </div>

      <div class="divider"></div>

      <div class="mobile-only mobile-divider"></div>

      <div class="right-col">

        <div class="help-section">
          <div class="help-header">
            <span class="arrow-icon">&rarr;</span>
            <span>¿ALGUNA DUDA?</span>
          </div>

          <h2>Estamos para ayudarte</h2>

          <h3>Contáctanos</h3>

          <ul class="contact-list">

            <li><a href="mailto:contactenos.dockerscl@ixcomercio.com">contactenos.dockerscl@ixcomercio.com</a></li>

          </ul>
        </div>

        <img src="https://mcprod.digitalixcomercio.com/media/wysiwyg/DOCKERS/dockers-catalog.png" alt="Dockers" class="product-image">

      </div>
    </div>

    <footer>
      <div class="copyright">
        &copy; 2026 IX Comercio Chile SPA
      </div>


    </footer>
  </div>
</body>
</html>
  
HTTP/1.1 200 
Connection: close
Content-Length: 8039
Retry-After: 0
Accept-Ranges: bytes
Date: Mon, 30 Mar 2026 10:26:56 GMT
X-Served-By: cache-nrt-rjaa8190050-NRT
X-Cache: HIT
X-Cache-Hits: 0
X-Timer: S1774866417.614208,VS0,VE0
Vary: 
Strict-Transport-Security: max-age=31557600

iframe