@charset "UTF-8";
@layer reset, base, components, sections, themes, utilities;

/* app/core/css/mixin.css */
@layer base;

/* app/core/css/animations.css */
@layer base {
  @keyframes leftApear {
    0% {
      transform: translateX(-20px);
    }
    100% {
      transform: translateX(0px);
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transition: opacity 0.3s ease, visibility 0s;
      -webkit-backdrop-filter: blur(20px);
      backdrop-filter: blur(20px);
    }
  }
  @keyframes centerApear {
    100% {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transition: opacity 0.3s ease, visibility 0s;
    }
  }
  @keyframes rightApear {
    0% {
      transform: translateX(20px);
    }
    100% {
      transform: translateX(0px);
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transition: opacity 0.3s ease, visibility 0s;
      -webkit-backdrop-filter: blur(20px);
      backdrop-filter: blur(20px);
    }
  }
  @keyframes titleAppearLeft {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(0%);
    }
  }
  @keyframes titleAppearRight {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(0%);
    }
  }
  @keyframes sectionAppear {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes road {
    0% {
      transform: translateX(-5%);
    }
    50% {
      transform: translateX(5%);
    }
    100% {
      transform: translateX(-5%);
    }
  }
  @keyframes moon {
    0% {
      transform: translateX(-50%) translateY(-70%);
    }
    100% {
      transform: translateX(0%) translateY(0%);
    }
  }
  @keyframes desplegar {
    0% {
      transform: translateY(-100%);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    }
    100% {
      transform: translateY(0%);
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transition: opacity 0.3s ease, visibility 0s;
    }
  }
  @keyframes plegar {
    0% {
      transform: translateY(0%);
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transition: opacity 0.3s ease, visibility 0s;
    }
    100% {
      transform: translateY(-100%);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    }
  }
}

/* app/core/css/global.css */
@layer base {
  html {
    height: 100dvh;
  }
  body {
    height: 100dvh;
    margin: 0px;
    font-family: system-ui;
    background-color: black;
    background-color: #25090a;
    letter-spacing: 0.5;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0px 1px 10px 2px black;
    transition: background 0.6s ease-in;
  }
  body.loaded {
    background:
      linear-gradient(
        90deg,
        #180000,
        #953636,
        #180000);
    transition: background 0.6s ease-in;
  }
  .pirata-one-regular {
    font-family: "Pirata One", system-ui;
    font-weight: 400;
    font-style: normal;
  }
  .fontF {
    font-family: "Pirata One", system-ui;
  }
  .subtituloPrincipal {
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 12px;
    font-size: small;
    color: white;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    font-variant: all-small-caps;
    filter: drop-shadow(0px 0px 1px black);
    text-shadow: 1px 1px black;
    padding: 0px 20px;
    width: 250px;
    margin: -10px auto;
  }
  .subtituloPrincipalApartado {
    margin: 0px;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 12px;
    font-size: large;
    color: white;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    font-variant: all-small-caps;
    filter: drop-shadow(0px 0px 1px black);
    text-shadow: 1px 1px black;
    padding: 20px 20px;
  }
  h2 {
    color: #ba2f30;
    text-shadow: 1px 1px black;
    font-size: 30px;
    filter: drop-shadow(0px 0px 5px black);
    letter-spacing: 0.5px;
    font-weight: 400;
    margin: 0px;
    font-variant: all-petite-caps;
    line-height: 25px;
    margin-bottom: 10px;
  }
  h3 {
    margin: 0px;
    font-weight: 500;
  }
  .gridSeoTag {
    width: -webkit-fill-available;
    max-width: 900px;
    margin: 0 auto;
    row-gap: 15px;
    display: flex;
    flex-direction: column;
    padding: 20px 20px;
  }
  .gridSeoTag .seoTag {
    color: white;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
  }
  .gridSeoTag .seoTag h3 {
    margin: 5px 0px;
  }
  .gridSeoTag .seoTag p {
    margin: 5px 0px;
  }
  .gridSeoTag.gridH {
    flex-direction: row;
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
  .inicioContainer .seoTag h2 {
    margin: 0px 0px 10px 0px;
  }
  main {
    height: calc(100dvh - 45px - 31px);
    overflow: scroll;
    position: absolute;
    top: 45px;
    width: 100%;
    overflow-x: hidden;
    max-width: 1200px;
  }
  @media (min-width: 769px) {
    main {
      top: 60px;
    }
  }
  .bTop {
    border-top: 1px dashed rgba(186, 47, 48, 0.4901960784);
  }
  @media (max-width: 768px) {
    .marginTopContainer {
      height: 35dvh;
    }
    .marginTopContainerInicio {
      height: 15dvh;
    }
  }
  @media (min-width: 769px) {
    .marginTopContainer {
      height: 35dvh;
    }
    .marginTopContainerInicio {
      height: 15dvh;
    }
  }
  .marginBottomContainer {
    margin-bottom: 20dvh;
  }
  .sentinel {
    display: block;
    height: 1px;
    margin-top: -1px;
  }
  .content {
    opacity: 0;
    animation: sectionAppear 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: 1s;
    border-bottom: 2px solid rgba(186, 47, 48, 0.25);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background:
      linear-gradient(
        180deg,
        rgba(45, 0, 0, 0.65),
        60%,
        rgba(35, 35, 35, 0.5));
  }
  .contentHeader {
    position: sticky;
    z-index: 100;
    top: 0px;
    background:
      linear-gradient(
        180deg,
        rgb(0, 0, 0, var(--bg-a)),
        70%,
        rgb(99, 0, 0, var(--bg-red)));
    transition: --bg-a 0.3s, --bg-red 0.3s;
  }
  .contentHeader .tituloApartado {
    text-shadow:
      0px 0px 10px #ff0000,
      0px 0px 10px #000000,
      0px 0px 10px #000000 !important;
    color: red;
    padding: 5px 20px;
    margin: 0;
    font-weight: 500;
    animation: titleAppearLeft 1.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-delay: 0s;
    transform: translateX(-100%);
    letter-spacing: 3px;
    font-size: 35px;
    font-family: "Pirata One", system-ui;
    min-height: 0px;
  }
  @media (min-width: 769px) {
    .contentHeader .tituloApartado {
      font-size: 0px;
      min-height: 15px;
    }
  }
  .contentHeader hr {
    background-color: #ba2f30;
    border: none;
    height: 2px;
    margin: 0px;
    animation: titleAppearRight 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
  }
  .contentHeaderLine hr {
    background-color: #ba2f30;
    border: none;
    height: 2px;
    margin: 0px;
    animation: titleAppearRight 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
  }
  .lineaAnimada {
    background-color: #ba2f30;
    border: none;
    height: 2px;
    margin: 0px;
    animation: titleAppearRight 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
  }
  .contentHeader.segundo {
    top: 72px;
  }
  .contentHeader.tercero {
    top: 129px;
  }
  .contentHeader.cuarto {
    top: 186px;
  }
  .contentHeader::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        180deg,
        rgb(0, 0, 0) 0%,
        rgba(99, 0, 0, 0.5) 85%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
  }
  .contentHeader.oscurecer::before {
    opacity: 1;
  }
  .contentHeader.oscurecer {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    text-shadow: 0 0 10px #ff0000;
    color: #ba2f30;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  }
  body::-webkit-scrollbar {
    display: none;
  }
  main::-webkit-scrollbar {
    display: none;
  }
  .pl10 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .pl20 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pl30 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .pl40 {
    padding-left: 40px;
    padding-right: 40px;
  }
  .linea,
  .lineaPhone {
    height: 1px;
    background:
      linear-gradient(
        45deg,
        transparent,
        #ba2f30,
        transparent);
    background:
      linear-gradient(
        45deg,
        transparent,
        rgba(186, 47, 48, 0.5),
        transparent);
    filter: drop-shadow(0px 0px 1px red);
    width: -webkit-fill-available;
    max-width: 900px;
    margin: 0 auto;
  }
  @media (min-width: 769px) {
    .lineaPhone {
      width: 0px;
    }
  }
}

/* app/core/css/scroll.css */
@layer base {
  .container {
    overflow-y: auto;
    max-height: 100%;
    overscroll-behavior: contain;
  }
  .container::-webkit-scrollbar {
    width: 2px;
    height: 10px;
  }
  .container::-webkit-scrollbar-track {
    background: transparent;
  }
  .container::-webkit-scrollbar-thumb {
    background: #ba2f30;
    border-radius: 100px;
  }
  .container::-webkit-scrollbar-thumb:hover {
    background-color: red;
  }
  .container::-webkit-scrollbar-thumb:active {
    background-color: red;
  }
  .container::-webkit-scrollbar:horizontal {
    height: 0;
    display: none;
  }
}

/* app/bloques/background/css/background.css */
@layer components {
  #background {
    min-height: 100%;
    position: fixed;
    overflow: hidden;
    max-width: 1200px;
    width: 100%;
  }
  #background .background {
    overflow: hidden;
    min-height: 100%;
    max-width: 1200px;
    width: 100%;
    position: fixed;
    background:
      linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.5),
        transparent);
  }
  #background .background .filtro {
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    z-index: -999;
    background:
      linear-gradient(
        90deg,
        black,
        10%,
        transparent,
        90%,
        black);
  }
  #background .background .paisaje {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1000;
    background-size: cover;
    background-repeat: no-repeat;
  }
  #background .background #bg_inicio .paisaje {
    background-image: url(/assets/img/pictures/paisaje1_sinluna_2048.webp);
  }
  @media (max-width: 768px) {
    #background .background #bg_inicio .paisaje {
      background-position: 85% 0%;
    }
  }
  @media (min-width: 769px) {
    #background .background #bg_inicio .paisaje {
      background-position: 50% 0%;
    }
  }
  #background .background #bg_servicios .paisaje {
    background-image: url(/assets/img/wolf/lobo2_2048.webp);
    background-position: 45% 0%;
  }
  #background .background #bg_proyectos .paisaje {
    background-image: url(/assets/img/wolf/lobo4_2048.webp);
    background-position: 0% 0%;
  }
  #background .background #bg_conocenos .paisaje {
    background-image: url(/assets/img/wolf/lobo1_2048.webp);
    background-position: 65% 0%;
  }
  #background .background #bg_contacto .paisaje {
    background-image: url(/assets/img/wolf/lobo3_2048.webp);
    background-position: 15% 0%;
  }
  #background .background .kitsuneWolf {
    position: absolute;
    width: 70%;
    -o-object-fit: contain;
    object-fit: contain;
    filter: drop-shadow(1px 2px 6px black);
    max-width: 500px;
    z-index: 0;
    bottom: 0px;
  }
  #background .background .moon {
    position: absolute;
    width: 30dvh;
    -o-object-fit: contain;
    object-fit: contain;
    max-width: 500px;
    z-index: 0;
    filter: grayscale(1) opacity(0.9) drop-shadow(2px 1px 5px gray);
    animation: moon 15s linear;
    transition: transform 15s linear;
    right: 0px;
  }
  #background .background .moon.loaded {
    animation: none;
  }
}

/* app/bloques/menu/css/menu.css */
@layer components {
  @media (max-width: 768px) {
    .menu {
      height: 45px;
    }
  }
  @media (max-width: 769px) {
    .menu {
      height: 60px;
    }
  }
  .menu {
    width: 100%;
    max-width: 1200px;
    height: 45px;
    position: fixed;
    z-index: 1000;
    top: 0;
  }
  .menu .phone,
  .menu .desktop {
    background-color: black;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 1200px;
    height: 45px;
  }
  @media (max-width: 768px) {
    .menu .phone {
      display: block;
    }
    .menu .desktop {
      display: none;
    }
  }
  @media (min-width: 769px) {
    .menu .phone {
      display: none;
    }
    .menu .desktop {
      display: flex;
    }
  }
  .menu .phone .buttonContainer {
    position: relative;
    z-index: 999;
    background-color: black;
  }
  .menu .phone .buttonContainer .button {
    background-image: url(/assets/img/icons/menu_red.png);
    background-size: 80%;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    height: 45px;
    width: 45px;
    display: block;
    background-color: black;
    border: none;
    filter: saturate(65%);
  }
  .menu .phone .desplegable {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    background-color: black;
    width: -moz-min-content;
    width: min-content;
    padding: 20px;
    border-radius: 0px 0px 10px 0px;
    box-shadow: 1px 1px 5px black;
    position: relative;
    top: 0px;
    transition: 300ms all;
    z-index: 998;
  }
  .menu .phone .desplegable ul {
    row-gap: 10px;
    display: flex;
    flex-direction: column;
  }
  .menu .phone .desplegable.visible {
    animation: desplegar 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    z-index: 998;
  }
  .menu .phone .desplegable.oculto {
    animation: plegar 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
  }
  .menu .phone .desplegableDismiss {
    top: 0px;
    left: 0px;
    height: 1000vw;
    width: 100%;
    position: absolute;
    background-color: rgba(61, 0, 0, 0.4588235294);
    -webkit-backdrop-filter: blur(1px);
    backdrop-filter: blur(1px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  }
  .menu .phone .desplegableDismiss.visible {
    animation: desplegar 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
  }
  .menu .phone .desplegableDismiss.oculto {
    animation: plegar 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
  }
  .menu .desktop {
    height: 60px;
    width: -webkit-fill-available;
    max-width: 1200px;
    align-items: center;
  }
  .menu .desktop ul {
    display: flex;
    width: -webkit-fill-available;
    max-width: 1200px;
    justify-content: space-evenly;
    margin: 0px;
    margin-left: 250px;
  }
  .menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .menu ul li .button {
    all: unset;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    color: #ba2f30;
    font-family: "Pirata One", system-ui;
    letter-spacing: 1px;
    transition: 300ms all;
    -webkit-tap-highlight-color: transparent;
    font-size: 30px;
  }
  .menu ul li .button.selected {
    color: red;
    text-shadow: 1px 1px 5px #730001;
    filter: drop-shadow(0px 0px 5px #730001);
  }
  .menu ul li .button:hover {
    color: red;
    text-shadow: 1px 1px 5px #730001;
    filter: drop-shadow(0px 0px 5px #730001);
  }
  .menu ul li .button::-moz-selection {
    text-decoration: none;
    outline: none;
    background: transparent;
  }
  .menu ul li .button:hover,
  .menu ul li .button:focus,
  .menu ul li .button:visited,
  .menu ul li .button:active,
  .menu ul li .button::selection {
    text-decoration: none;
    outline: none;
    background: transparent;
  }
}

/* app/bloques/header/css/header.css */
@layer components {
  header {
    align-content: center;
    padding: 0;
    height: 45px;
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    font-weight: 500;
    text-transform: uppercase;
    font-family: "Metal Mania", system-ui;
    font-family: "Pirata One", system-ui;
    letter-spacing: 5px;
    font-size: 37px;
    color: #7f0000;
    color: #ba2f30;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 50px;
  }
  header a {
    text-decoration: none;
    color: inherit;
  }
  @media (max-width: 768px) {
    header {
      height: 45px;
    }
  }
  @media (min-width: 769px) {
    header {
      height: 60px;
    }
  }
}

/* app/bloques/main/css/main.css */
@layer components {
  main {
    position: relative;
    z-index: 100;
  }
}

/* app/bloques/footer/css/footer.css */
@layer components {
  .footer {
    width: -webkit-fill-available;
    max-width: 1200px;
    height: 30px;
    display: flex;
    flex-direction: row;
    bottom: 0px;
    position: fixed;
    background-color: white;
    -moz-column-gap: 10px;
    column-gap: 20px;
    justify-content: space-between;
    box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    background-color: #330000;
    color: #ba2f30;
  }
  .footer .column {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: flex-start;
  }
  .footer .label {
    -moz-column-gap: 5px;
    column-gap: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .footer .label .tagImg {
    width: 30px;
    height: 30px;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .footer .label .txt {
    font-weight: 500;
    line-height: 16px;
  }
  @media (max-width: 768px) {
    .txt {
      font-size: 12px;
    }
  }
}

/* assets/css/_index.css */
