/** RESET **/


/* apply a natural box layout model to all elements, but allowing components to change */

* {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}

html {
    box-sizing: border-box;
    font-size: 62.5%;
    scroll-behavior: smooth;
}

  *, *:before, *:after {
    box-sizing: inherit;
}

body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

ul, ol {
    list-style: none;
}

a {
    display: block;
    text-decoration: none;
}

p a{
    display: inline;
}

form, input, select, textarea, button, label{
    display: block;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

/** VARIABLES **/

:root {
    --color-principal: #FFF;
    --color-secondary: #dd027e;
    --color-accent: #FFAA33;
    
    --color-background: #F2F7F9;
    --color-transparent: transparent;

    --color-icons: #B5B6B7;
    --color-titles: #222;
    --color-subtitles: #888;
    --color-text: #555;
}

/** GLOBALES **/

img {
    height: 100%;
    width: auto;
}

a {
    text-decoration: none;
    font-size: 1.6rem;
    padding: 2rem;
    color: var(--color-subtitles);
}

body{
    font-family: "Menbere", sans-serif;
    background-color: var(--color-background);
}

.title {
    font-family: "Poppins", sans-serif;
    font-size: 7rem;
    text-align: center;
}

.subtitle{
    font-family: "Poppins", sans-serif;
    font-size: 3.6rem;
    color: var(--color-text);
}

.scroll__container{
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    position: relative;
}

.hero,
.layout__loud,
.layout__store,
.layout__model,
.layout__dark,
.dark__container,
.layout__footer {
    height: 100dvh;
    scroll-snap-align: start;
    position: relative;
}

/** NAVBAR **/

.nav__container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 7rem;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: end;
    padding: 0 2rem;
    z-index: 1000;
    transition: all 300ms ease-in-out;
    background-color: var(--color-background);
}

/* Clase que se añadirá al hacer scroll */
.nav__container.scrolled {
    background-color: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}


.nav__logo-container{
    padding: 1.2rem 0rem;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav__list{
    display: flex;
    flex-direction: row;
    font-weight: 500;
}

.util__list{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    gap: 3rem;
    font-size: 1.7rem;
    padding-bottom: 2.1rem;
    color: var(--color-icons);
}

.nav__list-item a{
    font-family: "Poppins";
    font-size: 1.4rem;
    color: var(--color-icons);
    transition: all 300ms ease-in-out;
}

.nav__list-item a:hover{
    color: var(--color-text);
}

.util__list-item {
    transition: all 300ms ease-in-out;
}

.util__list-item:hover {
    color: var(--color-text);
    cursor: pointer;
}


/** HERO **/

.hero {
    margin-top: 0;
    height:100dvh;
}

.hero__image{
    width: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero__text{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding-bottom: 12rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    /* transform: translateY(-100rem); */
    z-index: 2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    
    background-color: rgba(0, 0, 0, 0.4);
}

.hero__title{
    font-family: "Poppins", sans-serif;
    font-size: 10rem;
    color: white;
    text-align: center;
}

.hero__legend{
    font-size: 3.5rem;
    color: white;
    font-family: "Poppins", sans-serif;
    margin-top: -7rem;
}


/** LOUD **/

.layout__loud {
    position: relative;
    /* background-color: #ceff33;*/
    background-color: var(--color-background);
    height: 100dvh;
    overflow: hidden;
}

.loud__container {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 10rem;
    z-index: 2;
}

.loud__text {
    z-index: 3;
    position: relative;
}

.loud__title{
    max-width: 65%;
    text-align: start;
}

.style1{
    display: inline-block;
    font-family: "Love Ya Like A Sister", cursive;
    color: var(--color-secondary);
    /* transform: rotate(-5deg); */
    /* font-size: 9rem; */
}

.loud__subtitle {
    max-width: 65%;
}

.loud-image__container {
    position: absolute;
    bottom: -100%;
    right: -100%;
    width: 30%;
    z-index: 1;
    pointer-events: none;

    animation: none;
}

.animate .loud-image__container {
    animation: louder 1800ms linear 0s, shake 145ms linear 1.8s infinite;
}

.loud-image__container img {
    width: 100%;
    height: auto;
}

.loud-lightning__container1 {
    position: absolute;
    top: -30%;
    right: 18%;
    width: 35%;
    opacity: 0%;
    
    display: flex;
    flex-direction: row;

    z-index: 2;
    pointer-events: none;
    
    transform: rotate(10deg);
    animation: none;
}

.animate .loud-lightning__container1 {
    animation: reveal 10ms linear 2s, appear 2000ms ease-in-out 2s infinite;
}

.loud-lightning__container1 img {
    width: 100%;
}

.loud-lightning__container2 {
    position: absolute;
    top: -30%;
    right: 80%;
    width: 35%;
    opacity: 0%;
    
    display: flex;
    flex-direction: row;

    z-index: 2;
    pointer-events: none;
    
    transform: rotate(-10deg);
    animation: none;
}

.animate .loud-lightning__container2 {
    animation: reveal 10ms linear 2s, appear 2000ms ease-in-out 2s infinite;
}

.loud-lightning__container2  img {
    width: 100%;
}

.loud__subtitle{
    padding-top: 2rem;
}

@keyframes louder {
    0% {
        bottom: -65%;
        right: -30%;
    }

    75% {
        bottom: -7%;
        right: -7%;
    }

    100% {
        bottom: 0;
        right: 0;
    }
}

@keyframes shake {
    0% {
        bottom: 0;
        right: 0;
    }

    25% {
        bottom: .05%;
        right: .05%;
    }

    50% {
        bottom: 0;
        right: 0;
    }

    75% {
        bottom: -.05%;
        right: -.05%;
    }

    100% {
        bottom: 0;
        right: 0;
    }

}

@keyframes appear {
    0% {
        opacity: 0%;
    }

    15% {
        opacity: 100%;
    }

    85% {
        opacity: 100%;
    }

    100% {
        opacity: 0%;
    }
}

@keyframes reveal {
    0% {
        opacity: 0%;
    }

    100% {
        opacity: 100%;
    }
}

/** STORE **/

.layout__store {
    width: 100%;
    height: 100dvh;
    margin: 0 auto;
    background-color: var(--color-titles);
    background-color: #000;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;

    overflow: hidden;
}

.circle_bkg {
    position: absolute;
    filter: sepia() saturate(200%);
    opacity: 30%;
}

.circle_bkg1 {
    width: 50%;
    height: auto;
    
    animation: rotation1 40s linear infinite;
}

.circle_bkg2 {
    width: 56%;
    height: auto;

    animation: rotation2 120s linear infinite;
}

.circle_bkg3 {
    width: 63%;
    height: auto;

    animation: rotation2 80s linear infinite;
}

.circle_bkg4 {
    width: 70%;
    height: auto;

    animation: rotation1 50s linear infinite;
}
.circle_bkg5 {
    width: 75%;
    height: auto;

    animation: rotation1 150s linear infinite;
}

.circle_bkg6 {
    width: 80%;
    height: auto;

    animation: rotation2 90s linear infinite;
}

@keyframes rotation1 {
    0% {
        rotate: 0;
    }

    50% {
        rotate: 180deg;
    }

    100% {
        rotate: 360deg;
    }
}

@keyframes rotation2 {
    0% {
        rotate: 0;
    }

    50% {
        rotate: -180deg;
    }

    100% {
        rotate: -360deg;
    }
}

.store__title{
    color: white;
    padding-top: 7rem;
    height: 20%;
}

.store__span2 {
    font-family: "Flavors", cursive;
    font-family: "Love Ya Like A Sister", cursive;
    color: var(--color-accent);
    position: absolute;
    transform: rotate(-8deg) translateY(-3rem) translateX(3rem);
    opacity: 0;
    transition: 0.5s ease-in-out;
}

.strikethrough {
    position: relative;
    display: inline-block;
}

.strikethrough::before,
.strikethrough::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -3%;
    width: 0;
    height: 1rem;
    background-color: var(--color-accent);
    animation: strike 0.5s forwards;
    animation-delay: 2500ms;
    border-radius: 1rem;
}

@keyframes strike {
    to {
        width: 106%;
    }
}

.store__subtitle{
    height: 20%;
    color: var(--color-icons);
    text-align: center;
}

.store__container{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    width: 90%;
    height: 60%;
    padding-top: 7rem;
}

.store__category{
    justify-self: center;
    align-self: center;
    width: 100%;
    height: 100%;
    position: relative;
    /* display: flex;
    border: solid 1px red;
    border-radius: 5rem; */
    border-radius: 100rem;
}

.category-image__container{
    width: 100%;
    aspect-ratio: 1/1;
    align-content: center;
    text-align: center;
    margin: 0 auto;
    border-radius: 2rem;
    transition: all 500ms ease-in-out;
}

.category-image{
    width: 75%;
    height: auto;
    filter: grayscale(70%) blur(1.3px) brightness(20%);

    transition: all 500ms ease-in-out;
}

.category__text{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: var(--color-subtitles);
    text-shadow: 2px 2px 8px rgba(0,0,0,1);
    text-align: center;
    border-radius: 100rem;
    padding: 2rem;
    z-index: 2;

    transition: all 500ms ease-in-out;
}

.category__text:hover{
    color: rgba(250, 250, 250, 1);
}

.store__category:hover .category-image{
    transform: scale(1.2);
    filter: grayscale(0%) blur(0px) brightness(100%);
}

.category__title{
    font-size: 4.2rem;
}

/** MODEL **/

.layout__model {
    margin: 0 auto;
    padding: 0 12rem
}

.container {
    display: flex;
    flex: 1;
    gap: 5rem;
    height: 100dvh;
}

#canvas-container {
    width: 32%;
    height: 100%;
    background: transparent;
}

#text-container {
    width: 68%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.model__title {
    text-align: start;
    margin-bottom: 2rem;
}

.cherry-color {
    transition: color 0.5s ease;
}

/** DARK **/

.dark__container {
  position: relative;
  color: var(--color-background);
  /* background-color: var(--color-titles); */
  background-color: #000000;
  height: 100vh;
  overflow: hidden;
  cursor: none;
}

.dark__container .dark__content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.dark__content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.dark__eye {
    height: 33rem;
}

.dark__circle {
    position: absolute;
    height: auto;
    filter: grayscale();
    z-index: -1;
}

.dark__circle1 {
    bottom: 762px;
    right: 1054px;
    width: 2.8rem;

    animation: particle1 83s ease-in-out infinite;
}

.dark__circle2 {
    top: 1024px;
    left: 590px;
    width: 3.2rem;

    animation: particle2 57s ease-in-out infinite;
}

.dark__circle3 {
    top: 315px;
    right: 334px;
    width: 2rem;

    animation: particle3 20s ease-in-out infinite;
}

.dark__circle4 {
    top: 576px;
    left: 1059px;
    width: 2.5rem;

    animation: particle4 72s ease-in-out infinite;
}

.dark__circle5 {
    top: 147px;
    right: 1051px;
    width: 1.8rem;

    animation: particle5 96s ease-in-out infinite;
}

.dark__circle6 {
    bottom: 10px;
    left: 956px;
    width: 2.5rem;

    animation: particle6 78s ease-in-out infinite;
}

.dark__circle7 {
    top: 747px;
    right: 896px;
    width: 1.7rem;

    animation: particle1 63s ease-in-out infinite;
}

.dark__circle8 {
    top: 526px;
    left: 157px;
    width: 2.7rem;

    animation: particle2 33s ease-in-out infinite;
}

.dark__circle9 {
    bottom: 76px;
    left: 1038px;
    width: 2.1rem;

    animation: particle3 62s ease-in-out infinite;
}

.dark__circle10 {
    top: 252px;
    left: 504px;
    width: 1.7rem;

    animation: particle4 80s ease-in-out infinite;
}

.dark__circle11 {
    top: 122px;
    right: 681px;
    width: 1.5rem;

    animation: particle6 43s ease-in-out infinite;
}

.dark__circle-darker {
    position: absolute;
    height: auto;
    filter: brightness(40%) grayscale();
    z-index: -1;
}

.dark__circle-darker1 {
    top: 762px;
    left: 1054px;
    width: 2.8rem;

    animation: particle1 83s ease-in-out infinite;
}

.dark__circle-darker2 {
    bottom: 1024px;
    right: 590px;
    width: 3.2rem;

    animation: particle2 57s ease-in-out infinite;
}

.dark__circle-darker3 {
    bottom: 315px;
    left: 334px;
    width: 2rem;

    animation: particle3 20s ease-in-out infinite;
}

.dark__circle-darker4 {
    bottom: 576px;
    right: 1059px;
    width: 2.5rem;

    animation: particle4 72s ease-in-out infinite;
}

.dark__circle-darker5 {
    bottom: 147px;
    left: 1051px;
    width: 1.8rem;

    animation: particle5 96s ease-in-out infinite;
}

.dark__circle-darker6 {
    top: 10px;
    right: 956px;
    width: 2.5rem;

    animation: particle6 78s ease-in-out infinite;
}

.dark__circle-darker7 {
    bottom: 747px;
    left: 896px;
    width: 1.7rem;

    animation: particle1 63s ease-in-out infinite;
}

.dark__circle-darker8 {
    bottom: 526px;
    right: 157px;
    width: 2.7rem;

    animation: particle2 33s ease-in-out infinite;
}

.dark__circle-darker9 {
    top: 76px;
    right: 1038px;
    width: 2.1rem;

    animation: particle3 62s ease-in-out infinite;
}

.dark__circle-darker10 {
    bottom: 252px;
    right: 504px;
    width: 1.7rem;

    animation: particle4 80s ease-in-out infinite;
}

.dark__circle-darker11 {
    bottom: 744px;
    left: 660px;
    width: 2.8rem;

    animation: particle5 60s ease-in-out infinite;
}

@keyframes particle1 {
    0% {
        transform: translateX(0) translateY(0);
    }
    20% {
        transform: translateX(-450px) translateY(50px);
    }
    40% {
        transform: translateX(-900px) translateY(200px);
    }
    60% {
        transform: translateX(-1000px) translateY(0px);
    }
    80% {
        transform: translateX(-600px) translateY(500px);
    }
    90% {
        transform: translateX(-300px) translateY(250px);
    }
    100% {
        transform: translateX(0px) translateY(0px);
    }
}

@keyframes particle2 {
    0% {
        transform: translateX(0) translateY(0);
    }
    20% {
        transform: translateX(-45px) translateY(5px);
    }
    40% {
        transform: translateX(-90px) translateY(20px);
    }
    60% {
        transform: translateX(-100px) translateY(0px);
    }
    80% {
        transform: translateX(-60px) translateY(50px);
    }
    90% {
        transform: translateX(-30px) translateY(25px);
    }
    100% {
    }
}

@keyframes particle3 {
    0% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(50px) translateY(-30px);
    }
    50% {
        transform: translateX(20px) translateY(40px);
    }
    75% {
        transform: translateX(-30px) translateY(-20px);
    }
    100% {
        transform: translateX(0) translateY(0);
    }
}

@keyframes particle4 {
    0% {
        transform: translate(0, 0);
    }
    20% {
        transform: translate(300px, -200px);
    }
    40% {
        transform: translate(500px, 400px);
    }
    60% {
        transform: translate(200px, 600px);
    }
    80% { 
        transform: translate(-400px, 550px);
    }
    100% {
        transform: translateX(0) translateY(0);
    }
}

@keyframes particle5 {
    0% {
        transform: translateX(0px) translateY(0px);
    }
    10% {
        transform: translateX(182px) translateY(51px);
    }
    30% {
        transform: translateX(524px) translateY(-169px);
    }
    50% {
        transform: translateX(386px) translateY(297px);
    }
    70% {
        transform: translateX(116px) translateY(-137px);
    }
    85% {
        transform: translateX(-258px) translateY(415px);
    }
    100% {
        transform: translateX(0px) translateY(0px);
    }
}

@keyframes particle6 {
    0% {
        transform: translateX(0px) translateY(0px);
    }
    10% {
        transform: translateX(-182px) translateY(-51px);
    }
    30% {
        transform: translateX(-524px) translateY(169px);
    }
    50% {
        transform: translateX(-386px) translateY(-297px);
    }
    70% {
        transform: translateX(-116px) translateY(137px);
    }
    85% {
        transform: translateX(258px) translateY(-415px);
    }
    100% {
        transform: translateX(0px) translateY(0px);
    }
}

.dark__text {
    font-size: 4rem;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    padding-bottom: 3.8rem;
    text-align: center;
}

.dark__btn {
    text-transform: uppercase;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 1rem 2.3rem;
    padding-bottom: 1.3rem;
    margin-bottom: .2rem;

    color: var(--color-titles);
    background-color: var(--color-background);
    border-radius: 1.5rem;

    transition: all 500ms ease-in-out;
    cursor: none;
}

.dark__btn:hover {
    color: var(--color-background);
    background-color: var(--color-accent);
    cursor: none;
}

.dark__mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  background: radial-gradient(
    circle 150px at -100px -100px,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
}

/** FOOTER **/

.layout__footer {
    margin: 0 auto;
    padding: 0 12rem;
    width: 100%;
    height: 100dvh; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.layout__footer {
    position: relative;
    overflow: hidden;
}

.footer__video-bg {
    position: absolute;
    display: flex;
    align-self: center;
    bottom: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
    opacity: 1;

    filter: brightness(126.8%);
}

.footer__container {
    flex-basis: 80%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 5rem;
}

.footer__info {
    flex-basis: 42%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 10rem 0;

    border-right: 1px solid var(--color-subtitles);
}

.footer__info-section {
    padding: 0 2rem;
}

.info-section__title {
    font-size: 2rem;
    padding-bottom: .6rem;
}

.info-section__item a{
    padding: .2rem 0;
}

.footer__social {
    flex-basis: 57%;
}

.footer__social-title {
    font-size: 4rem;
    padding-bottom: 1rem;
}

.footer__form {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 1rem;
}

.footer__input {
    font-family: "Menbere", sans-serif;
    font-size: 1.5rem;
    width: 100%;
    padding: 1rem 2rem;

    border-radius: 1.5rem;
    border: 1px solid var(--color-icons);
}

.footer__btn {
    font-family: "Menbere", sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0 2rem;
    color: var(--color-background);
    
    background-color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    border-radius: 1.5rem;

    transition: all 300ms ease-in-out;
}

.footer__btn:hover {
    color: var(--color-secondary);
    background-color: var(--color-background);

    cursor: pointer;
}

.footer__social-text {
    font-size: 1.6rem;
    padding-top: 2rem;
    color: var(--color-subtitles);
}

.footer__social-icons {
    display: flex;
    flex-direction: row;
    justify-content: space-around;

    padding-top: 2rem;
}

.footer__social-icon {
    font-size: 3rem;
    transition: all 300ms ease-in-out;
}

.fa-facebook:hover {
    color: #3b5998;
}

.fa-instagram:hover {
    color: #c13584;
}

.fa-facebook-messenger:hover {
    color: #168AFF;
}

.fa-whatsapp:hover {
    color: #25D366;
}

.fa-tiktok:hover {
    color: #010101;
}

.footer__container-legal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    padding-bottom: 5rem;
}

.footer__copyright, .footer__legal a {
    font-family: "Poppins";
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
}

.footer__legal {
    display: flex;
    flex-direction: row;
}

.legal__item {
    transition: all 300ms ease-in-out;
}

.legal__item:hover {
    color: var(--color-titles);
}

.footer__copyright {
    pointer-events: none;
}

.divider {
    width: .8px;
    margin: 1.4rem 0;
    background-color: var(--color-subtitles);
}