@import url(variables.css);

/* ================================================  COMPONENTS ================================================ */

/* BTN PRIMARY*/
.btn-primary {
    text-decoration: none;
    color: #fff;
    padding: 8px 44px;
    border: solid #fff 3px;
    font-weight: 600;
    font-size: 24px;
    transition: .3s;
}

.btn-primary:hover {
    background-color: #fff;
    color: #C0C0C0;
} 

/* BTN TIKTOK & BTN YOUTUBE */
.btn-tiktok, .btn-youtube {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 24px;
    border: solid 3px #000;
    padding: 8px 20px;
    display: flex;
    gap: 12px;
    transition: .3s;
    align-items: center;
    max-width: fit-content;
}

.btn-tiktok:hover, .btn-youtube:hover {
    background-color: #000;
    color: #fff;
}

.btn-icons {
    position: relative;
    width: 24px;
    height: 24px;
}

.btn-icons img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.3s ease;
}

.btn-icons .ico2 {
    opacity: 0;
}

.btn-youtube:hover .ico2, .btn-tiktok:hover .ico2 {
    opacity: 1;
}

.btn-youtube:hover .ico1, .btn-tiktok:hover .ico1 {
    opacity: 0;
}

/* BTN AMAZON */
.btn-amazon {
    background-color: #fff;
    border-radius: 30px;
    border: solid 2px #000;
    padding: 8px 28px;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 24px;
    transition: .3s;
}

.icons-amazon {
    position: relative;
    width: 20px;
    height: 20px;
}

.icons-amazon img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.3s ease;
}

.btn-amazon:hover {
    background-color: #FF9C08;
    border: solid 2px #FF9C08;
    color: #fff;
}

.btn-amazon .amz2 {
    opacity: 0;
}

.btn-amazon:hover .amz2 {
    opacity: 1;
}

.btn-amazon:hover .amz1 {
    opacity: 0;
}

/* BTN-SEND */
.btn-send {
    padding: 8px 20px;
    border: solid 2px #000;
    background-color: #000;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    transition: .3s;
    cursor: pointer;
}

.btn-send:hover {
    border: solid 2px #878787;
    background-color: #878787;
    color: #C4C4C4;
}



/* ================================================  WEB PAGE ================================================ */

/* NAVBAR */
.hamburger {
    display: none; 
    padding: 0 12px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 40px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
    height: 100px;
    display: flex;
    transition: background-color 0.3s ease;
    z-index: 999;
}

.header--legal {
    background-color: #000;
}

.header.scrolled {
    background-color: #000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    gap: 72px;
    position: relative;
}

.logo {
    position: absolute;
    z-index: 999;
}

.nav__links {
    display: flex;
    gap: 210px;
    padding-left: 26px;
}

.nav {
    display: flex;
    gap: 72px;
}

.header__nav > a {
    display: flex;
    justify-content: center;
}

.header__nav > a img {
    max-height: 60px;
    width: auto;
}

.header__nav a, .nav-left a, .nav-right a {
    text-decoration: none;
    color: #fff;
    transition: .3s;
    font-weight: 600;
    font-size: 16px;
}

.header__nav > a {
    justify-content: center;
}

.header__nav a:hover {
    opacity: .4;
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 347px 40px 377px 40px;
    width: 100%;
    height: 120vh;
    overflow: hidden;
}

.herovid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    gap: 44px;
}

.hero__title {
    font-size: 128px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    line-height: 100%;
}

.hero__title span:last-child {
    font-family: var(--ff-secondary);
    font-weight: 400;
}   

/* ABOUT SECTION */
.about {
    background: url(/assets/img/bg/bg-white.webp) no-repeat center;
    background-size: cover;
    margin-top: -120px;
    overflow: hidden;
}

.about__bg {
    padding: 152px 40px 120px 40px;
    background: url(/assets/img/bg/thunder-01.webp) no-repeat;
    background-size: cover;
}

.about__content {
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    gap: 160px;
}

.about__collage {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 1440px;
    width: 100%;
    height: 738px;
}

.agm-perfil {
    position: absolute;
    width: 1800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
}

.about__collage__imgs {
    position: absolute;
}

#poster1, #poster2, #poster3, #poster4 {
    position: absolute;
    filter: grayscale(1);
    box-shadow: 4px 4px 30px 0 rgba(0, 0, 0, 0.4);
    transition: transform 0.15s cubic-bezier(0.25, 0.1, 0.25, 1), filter .3s, box-shadow .3s;
    transform-style: preserve-3d;
    will-change: transform;
    backface-visibility: hidden;
    background-size: cover;
    mix-blend-mode: luminosity;
}

#poster1:hover, #poster2:hover, #poster3:hover, #poster4:hover {
    box-shadow: 4px 4px 50px rgba(0, 0, 0, .8);
    filter: none;
    mix-blend-mode: normal;
    z-index: 10;
}

#poster1 {
    width: 444px;
    height: 250px;
    background: url(/assets/img/pict/photo-agm-1.webp) no-repeat center;
    background-size: cover;
    top: 0;
    left: 0;
}

#poster2 {
    width: 444px;
    height: 250px;
    background: url(/assets/img/pict/photo-agm-2.webp) no-repeat center;
    background-size: cover;
    bottom: 0;
    right: 0;
}

#poster3 {
    width: 184px;
    height: 327px;
    background: url(/assets/img/pict/photo-agm-3.webp) no-repeat center;
    background-size: cover;
    top: 0;
    right: 134px;
}

#poster4 {
    width: 184px;
    height: 327px;
    background: url(/assets/img/pict/photo-agm-4.webp) no-repeat center;
    background-size: cover;
    bottom: 0;
    left: 130px;
}

.about__text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about__title {
    font-size: 64px;
    font-weight: 700;
    text-align: center;
}

.about__body {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
}

/* MERCH SECTION */
.merch {
    padding: 120px 40px;
    background: url(/assets/img/bg/bg-grunge-01.webp) no-repeat center;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.merch img {
    position: absolute;
    right: -200px;
    z-index: 1;
    transform: rotate(-13deg);
    width: 999px;
}

.merch__content {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 320px 100px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.merch__header {
    z-index: 10;
}

.merch__title {
    font-weight: 700;
    font-size: 96px;
    color: #fff;
}

.merch__subtitle {
    font-weight: 100;
    font-style: italic;
    font-size: 36px;
    line-height: 120%;
    color: #fff;
}

.merch__body {
    font-weight: 500;
    font-size: 24px;
    line-height: 150%;
    color: #fff;
    z-index: 10;
}

.btn-primary--merch {
    z-index: 10;
    max-width: fit-content;
}

/* SOCIALS SECTION */
.socials {
    background: url(/assets/img/bg/thunder-02.webp) no-repeat center;
    background-size: cover;
    padding: 120px 40px;
}

.socials__content {
    max-width: 1440px;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    gap: 120px;
}

.socials__block {
    display: flex;
    gap: 32px;
    max-height: 100%;
    align-items: center;
    padding: 40px 0;
}

.socials__text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 60%;
    width: 100%;
}

.socials__title {
    font-weight: 700;
    font-size: 64px;
}

.socials__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.socials__body p {
    font-weight: 500;
    font-size: 24px;
    line-height: 150%;
}

.socials__img > img {
    margin: 0 auto;
}

.socials__img-tiktok {
    position: relative;
    max-width: 290px;
    width: 100%;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.tiktokvid {
    border-radius: 44px;
    width: 100%;
}

.tiktokoverlay {
    position: absolute;
    max-width: 100%;
}

.tiktokavatar {
    position: absolute;
    animation: girar 5s linear infinite;
    bottom: 80px;
    right: 15px;
    max-width: 35px;
}

.socials__img-yt {
    position: relative;
    max-width: 618px;
    width: 100%;
    display: flex;
    align-items: center;
}

.ytvid {
    width: 100%;
}

.yt-overlay {
    position: absolute;
    width: 100%;
}

@keyframes girar {
    from {
    transform: rotate(0deg);
    }
    to {
    transform: rotate(360deg);
    }
}


/* SETUP SECTION */
.setup {
    background: url(/assets/img/bg/bg-grunge-02.webp) no-repeat;
    background-size: cover;
    padding: 120px 40px;
}

.setup__content {
    max-width: 1440px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin: 0 auto;
}

.setup__text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.setup__text h2 {
    font-weight: 700;
    font-size: 64px;
    line-height: 120%;
    color: #fff;
    text-align: center;
}

.setup__text p {
    font-weight: 500;
    font-size: 24px;
    line-height: 150%;
    color: #fff;
    text-align: center;
}

.card__section {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin: 0 auto;
    justify-content: center;
}

.card-affiliate {
    background: url(/assets/img/bg/thunder-02.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #fff;
    flex: 1 1 340px;
    min-width: 280px;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    padding: 32px;
    gap: 16px;
    border-radius: 40px;
}

.card-affiliate__img {
    border-radius: 22px;
    padding: 8px;
    background-color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.card-affiliate__img img {
    border-radius: 22px;
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
}

.card-affiliate__text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 100%;
}

.card-affiliate__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 120%;
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
}

.card-affiliate__body {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    display: -webkit-box;
    line-clamp: 4;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* PAGINATION */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 44px;
}

.pagination__button {
    padding: 8px;
    min-width: 40px;
    height: 40px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.pagination__button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: scale(1.1);
}

.pagination__button.active {
    background-color: #fff;
    color: #000;
    position: relative;
}

/* Flechas de navegación */
.pagination__arrow {
    padding: 0;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.pagination__arrow:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.pagination__arrow.disabled {
    color: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
    cursor: not-allowed;
    transform: none;
}

/* CONTACT SECTION */
.contact {
    padding: 120px 40px;
    overflow: hidden;
}

.contact__content {
    max-width: 1440px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 123px;
    margin: 0 auto;
    padding: 44px 0;
}

.contact__text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 50%;
    position: relative;
}

.contact__text img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 999px;
    z-index: 1;
}

.contact__title {
    font-weight: 700;
    font-size: 64px;
    line-height: 120%;
    z-index: 2;
}

.contact__body {
    font-weight: 500;
    font-size: 24px;
    line-height: 150%;
    z-index: 2;
}

.contact__form {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 28px;
    z-index: 10;
}

.namemail {
    display: flex;
    gap: 28px;
    width: 100%;
}

.name, .mail {
    width: 50%;
    padding: 8px 12px;
    border: solid 1px #9e9e9e;
    height: 39px;
    display: flex;
    align-items: center;
}

.name::placeholder, .mail::placeholder, #mensaje::placeholder {
    font-weight: 600;
    color: #B3B3B3;
}

#mensaje {
    padding: 8px 12px;
    border: solid 1px #9e9e9e;
    height: 142px;
}

.name:focus, .mail:focus, #mensaje:focus {
    border: solid 2px #000;
}

/* FOOTER SECTION */
footer {
    background: url(/assets/img/bg/bg-grunge-03.webp) no-repeat;
    background-size: cover;
    padding: 70px 40px;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
}

.footer__copyright {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer__copyright img {
    width: 38px;
}

.footer__copyright p {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.politics {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
}

.politics:hover {
    text-decoration: underline;
}

/* 404 PAGE */
.error {
    background: url(/assets/img/bg/thunder-02.webp) no-repeat;
    background-size: cover;
    padding: 201.5px 40px 101.5px 40px;
}

.error__content {
    max-width: 1440px;
    width: 100%;
    display: flex;
    gap: 32px 107px;
    margin: 0 auto;
    align-items: center;
}

.error__text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 50%;
    width: 100%;
}

.error__title {
    font-weight: 700;
    font-size: 64px;
    line-height: 120%;
    text-align: center;
}

.error__body {
    font-weight: 500;
    font-size: 24px;
    line-height: 150%;
    text-align: center;
}

.error__image {
    max-width: 581px;
}

.error__image img {
    width: 100%;
}

/* LEGAL PAGES */
.legal {
    padding: 180px 40px 80px 40px;
}

.legal__content {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.legal__title {
    font-weight: 700;
    font-size: 72px;
    line-height: 140%;
    text-align: center;
    padding: 81px 0;
}

.text__block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text__block h2 {
    font-weight: 700;
    font-size: 38px;
    line-height: 120%;
}

.text__block p, .text__block li {
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
}

.text__block ul {
    padding-left: 34px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.text__block a {
    text-decoration: none;
    color: #AEAEAE;
}

.text__block a:hover {
    text-decoration: underline;
}

.header--black {
    background-color: #000;
}