@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url(satoshi.css);
@import url(status.css);
@import url(shop.css);
@import url(blog.css);
@import url(animate.css);

:root {
    --radius1: 2rem;
    --black: #1A1C1E;
    --white: #fff;
    --whiteVariant: #e9e9e9;
    --colblue: #527BB7;
    --colgreen: #62e35a;
    --buttonblue: #3165B0;
    --buttonblue2: #527BB7;
    --buttongreen2: #B6D06D;
    --buttondisabled: #4A4A4A;
    --disabledtext: #ACACAC;
    --componentgray: #38393C;
    --componentidle: #10537a;
    --componenterror: #7A1010;
    --componentwarning: #CFBA00;
    --componentsuccess: #39A014;

    font-family: 'Satoshi-Variable';
    scroll-behavior: smooth;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

i {
    font-family: 'Satoshi-VariableItalic';
}

ul {
    padding-left: 2rem;
}

ul li {
    padding-bottom: 1rem;
}

a {
    cursor: pointer;
    color: var(--white);
    text-decoration: none;
}

button {
    cursor: pointer;
    color: var(--white);
    font-size: 1rem;
    border: none;
    font-family: 'Satoshi-Variable', Arial, Helvetica, sans-serif;
}

body {
    color: var(--black);
    background-color: var(--componentgray);
    background-image: url(../media/mayfer-bg-home.webp);
    background-position: top;
    background-attachment: scroll;
    background-size: 100%;
}

main {
    padding: 1rem 0rem;
    margin: auto;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    animation: 0.3s reveal ease-out forwards;
}

@keyframes reveal {
    from {
        opacity: 0;
        /* Inicia completamente transparente */
        transform: translateY(20px);
        /* Desplazamiento hacia arriba */
    }

    to {
        opacity: 1;
        /* Finaliza completamente visible */
        transform: translateY(0);
        /* Sin desplazamiento */
    }
}

main div {
    border-radius: var(--radius1);
}

header {
    display: flex;
    color: var(--black);
    background-color: var(--white);
    padding: 0.75rem;
    border-radius: 2rem;
}

header .logo {
    width: 50%;
}

header figure.header-line {
    background-color: var(--colgreen);
    width: 225px;
    height: 2px;
}

header .logo a {
    background: transparent;
    color: var(--black);
    gap: 1rem;
    display: flex;
    align-items: center;
}

header .logo a::after {
    display: flex;
    transition: 0.2s ease-in-out;
    opacity: 0;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    content: "🏠";
    width: 296px;
    height: 56px;
    position: absolute;
    z-index: 99;
    background-color: rgba(255, 255, 255, 0.0);
}

header .logo a:hover::after {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.9);
}

header span {
    color: var(--black);
    font-weight: 500;
    font-size: 1.5rem;
}

header .links {
    justify-content: flex-end;
    align-items: center;
    display: flex;
    width: 60%;
    gap: 0.5rem;
}

.message-row {
    display: flex;
    gap: 0.5rem;
}

.message {
    user-select: none;
    padding: 2rem;
    gap: 1rem;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    font-size: 2.5rem;
    color: white;
    background-color: rgba(0, 0, 0, 0.4);
}


.message img {
    width: 144px;
}

.message h2 {
    font-size: 48px;
    line-height: 100%;
    color: var(--white);
    font-family: "Playfair Display", serif;
    font-weight: 500;
    font-style: normal;
}

.hero .hero-row span{
    font-family: "Playfair-Display", serif;
}

.info {
    width: 33%;
}

.info figure {
    width: 100%;
    height: 1rem;
}

.display-wrap {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.location {
    padding: 2rem;
    color: var(--white);
    background: var(--componentgray);
    display: flex;
    gap: 1rem;
    flex-direction: column;
    width: 50%;
}

.location .col-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.glider-contain,
.glider,
.glider-track {
    height: 100%;
}

.glider div figure {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

footer {
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem;
    background-color: var(--white);
    color: var(--black);
    align-items: center;
}

footer .footer-foot {
    display: flex;
    width: 100%;
}

.footer-foot .left {
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .footer-info {
    display: flex;
    align-items: center;
}

footer a {
    color: var(--black);
}

footer .right {
    width: 80%;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.links-1 h4,
.links-2 h4 {
    font-size: 1.25rem;
}

.links-1 a {
    color: var(--colblue);
}

.right .links-1,
.right .links-2 {
    text-align: end;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.left .social-media {
    display: flex;
    gap: 0.5rem;
}

.social-media img {
    aspect-ratio: 1/1;
    height: 27px;
}

.glider-track img {
    object-fit: scale-down;
}

[bg="shop"] {
    background-image: none;
}

#tools {
    background-image: url(../media/mosaic.jpg);
}

input#search {
    font-family: 'Satoshi-Variable', sans-serif;
    width: 100%;
    padding: 0.7rem;
}

.whatsapp {
    align-self: center;
    position: sticky;
    bottom: 40px;
    right: 40px;
    z-index: 100;
}

@media screen and (max-width:1280px) {
    main {
        padding: 0;
        gap: 0;
    }

    body {
        background-position: center;
        background-attachment: scroll;
    }

    header {
        border-radius: 0;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    header .logo {
        width: 100%;
    }

    header .logo a {
        align-items: center;
        justify-content: center;
    }

    header .links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .message {
        justify-content: center;
        align-items: center;
    }

    .message-row {
        gap: 0;
        flex-direction: column;
    }

    .message {
        border-radius: 0;
        height: auto;
        padding: 2rem 3rem;
    }

    .message h2 {
        font-size: 2.5rem;
    }

    .message img {
        height: 120px;
    }

    .row {
        gap: 0;
        flex-wrap: wrap;
    }

    .row-col {
        gap: 0;
    }

    #we-do {
        flex-direction: column;
    }

    #we-do .info {
        width: 100%;
    }

    .col {
        align-items: center;
        border-radius: 0;
    }

    .info {
        padding-bottom: 1.5rem;
    }

    .location {
        border-radius: 0;
        width: 100%;
    }

    .col[col-size="50%"] {
        width: 100%;
    }

    #gallery {
        height: 700px;
    }

    footer {
        border-radius: 0;
        flex-direction: column;
        gap: 1.25rem;
    }

    footer .footer-foot {
        flex-direction: column;
    }

    footer .right {
        flex-direction: column;
        width: 100%;
    }

    .right .links-1,
    .right .links-2 {
        text-align: center;
    }

    .links-1 h4,
    .links-2 h4 {
        font-size: 2rem;
    }
}

@media screen and (max-width:620px) {
    body {
        background-attachment: scroll;
        background-size: 200%;
    }

    .links {
        flex-direction: column;
    }

    .message {
        gap: 2rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    header .logo {
        width: 100%;
    }
}

.shop-actions {
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
}

.shop-actions img {
    width: 100%;
    border-radius: 1rem;
}