/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

    :root {
      --rojo-lumen: #823038;
      --negro-lumen: #1D1D1B;
      --grad-verti: linear-gradient(to bottom, #FCE4DD, #B4D8E8);
      --grad-horiz: linear-gradient(to right, #FCE4DD, #B4D8E8);
      --grad-calid-v: linear-gradient(to bottom, #FCE4DD, #FFDFA4);
      --grad-calid-h: linear-gradient(to right, #FCE4DD, #FFDFA4);
      --grad-azul-v: linear-gradient(to bottom, #D2EEFF, #A1D9F7);
      --font-display: "Josefin Sans", sans-serif;;
      --font-text: "Roboto", sans-serif;
      --poppins-font: "Poppins", sans-serif;
      --font-xm: 36px;
    }


  #conoce-proyectos * { font-family: var(--poppins-font);}

.btn-princi {
  cursor: pointer;
  transition: background .3s;
}
.btn-princi:hover, form .hs_submit .actions input[type="submit"]:hover {
  cursor: pointer;
  color: black;
  background: var(--grad-horiz);
}

.relative { position : relative; }


    *{
        font-family: var(--font-display);
      box-sizing: border-box;
            scroll-behavior: smooth;
    }
    .font-display {
        font-family: var(--font-display);
    }
    .font-text {
        font-family: var(--font-text);
    }
    body {
      margin: 0;
      padding 0;
    }
    a {
        text-decoration: none;
        color: black;
    }
    .flex-horiz {
        display: flex;
        align-items: center;
    }
    .between {
        justify-content: space-between;
    }
    .flex-col {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .mayus {
      text-transform: uppercase;
    }
    .font-big {
      font-size: 40px;
      line-height: 45px;
    }
    .font-xm {
        font-size: 36px;
    }
    .font-mid {
      font-size: 26px;
    }
    .font-sm {
      font-size: 20px;
    }
    .bold {
      font-weight: 600;
    }
    .rojo {
      color: var(--rojo-lumen)
    }
    .grad-principal {
        background: var(--grad-verti)
    }
    .btn-princi, form input[type="submit"] {
      background: var(--negro-lumen);
      color: white;
      font-size: 18px;
      padding: 20px;
      padding-bottom: 17px;
      border: none;
    } .btn-princi-hov:hover {
      background: var(--grad-horiz);
      color: #000000;
    }
    .ancho-base {
      width: 80%;
      min-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }
    .gradiente-radial {
      width: 100px;
      height: 100px;
      background: var(--grad-verti);
      position: absolute;
      z-index: -1;
      border-radius: 50%;
      filter: blur(15px)
    }
    .margen-seccion {
        margin-top: 150px;
        margin-bottom: 150px;
    }
    .grid-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    strong {
        font-weight: 700;
    }









    @media (max-width: 1250px) {
        .ancho-base {
            min-width: 0px;
          width: 85%;
        }
        .grid-2 {
            display: flex;
            flex-direction: column;
        }
        .font-big {
          font-size: 36px;
        line-height: 1.2;
    }
    .font-sm {
        line-height: 1.3;
    }
    .gradiente-radial {
        width: 80px;
        height: 80px;
        filter: blur(20px)
    }
    .margen-seccion {
        margin: 50px auto;
        padding: 0 20px;
    }

    }