* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    font-family: 'Arimo-regular', sans-serif;
    font-size: 20px;
    --text-shadow-light: 1px 1px 2px #000, -1px -1px 3px #000;
    scroll-behavior: smooth;
    --color-bg-light: linear-gradient(0deg,rgba(249, 24, 95, 0.5) 0%, rgba(18, 194, 233, 0.5) 50%);
    --color-bg-dark: #242e4b;
    --color-text-light: #e2dada;
    --color-text-dark: #2c2a2a;
    --color-text: #fafafa;
    --color-1: #c0c0c0;
    --color-2: #f9185f;
    --color-3: #12c2e9;
    --color-4: rgb(158, 12, 12);
    --card-background: #e8e8e8;
    --WhatsApp: #25d366;
    --box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5), 7px 7px 20px 0px rgba(0, 0, 0, .1), 4px 4px 5px 0px rgba(0, 0, 0, .1);
    --fade-sections-light: linear-gradient(to bottom,rgb(94, 139, 173) 5%, transparent 10%);
    --fade-sections-dark: linear-gradient(to bottom, transparent 20%,rgba(0, 0, 0, 0) 100%);
}

noscript {
    display: block;
    width: 100%;
    background: var(--color-4);
    padding: 5px;
    text-align: center;
    color: #fff;
    font-size: .7rem;
    position: fixed;
    bottom: 0;
    z-index: 1000;
}

h1 {
    padding-left: 3px;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--color-text);
    text-shadow: var(--text-shadow-light);
    text-wrap: balance;
    animation: text-fade-from-left .3s 1s linear both;
    &::selection {
        background-color: var(--color-2);
    }
}

h2 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #cac7c7;
    text-align: center;
}

h3 {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: #fff;
}

h4 {
    font-size: clamp(.8rem, 1.8vw, 1rem);
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

/* ---------- Buttons ---------- */

.button-10 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(280px, 90%);
    height: 50px;
    margin: 10px 0 20px;
    font-size: clamp(.6rem, 4vw, .8rem);
    letter-spacing: 2px;
    color: #fff;
    border: none;
    border-radius: 50px;
    background: var(--color-2);
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5), 7px 7px 20px 0px rgba(0, 0, 0, .1), 4px 4px 5px 0px rgba(0, 0, 0, .1);
    outline: none;
    animation: fade-text-from-in-out .2s 1.8s linear both;
}

.button-10:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: var(--color-3);
    border-radius: 50px;
    box-shadow: inset 2px 2px 2px 0 rgba(255, 255, 255, .5), 7px 7px 20px 0 rgba(0, 0, 0, .1), 4px 4px 5px 0 rgba(0,0,0,.1);
    transition: all .2s ease;
}
  
.button-10:hover:after {
    left: 0;
    width: 100%;
}

.button-10:active {
    top: 2px;
}

.button-20 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(280px, 90%);
    height: 50px;
    margin: 10px 0;
    font-size: clamp(.6rem, 4vw, .8rem);
    letter-spacing: 2px;
    color: var(--color-3);
    border: 2px solid var(--color-3);
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    transition: background .3s ease, color .3s ease;
    position: relative;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5), 7px 7px 20px 0 rgba(0, 0, 0, .1), 4px 4px 5px 0 rgba(0, 0, 0, .1);
    outline: none;
    animation: fade-text-from-in-out .2s 1.8s linear both;
    z-index: 100;
}

.button-20:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: var(--color-3);
    border-radius: 8px;
    box-shadow: inset 2px 2px 2px 0 rgba(255, 255, 255, .5), 7px 7px 20px 0 rgba(0, 0, 0, .1), 4px 4px 5px 0 rgba(0,0,0,.1);
    transition: all .2s ease;
}

.button-20:hover {
    background: var(--color-3);
    color: #fff;
}
  
.button-20:hover:after {
    left: 0;
    width: 100%;
}

.button-20:active {
    top: 2px;
}

.button-30 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(280px, 90%);
    height: 50px;
    margin: 10px 0;
    font-size: clamp(.6rem, 4vw, .8rem);
    letter-spacing: 2px;
    color: #fff;
    border: none;
    border-radius: 8px;
    background: var(--color-2);
    cursor: pointer;
    transition: all .3s ease;
    position: relative;
    box-shadow: inset 2px 2px 2px 0px rgba(255, 255, 255, .5), 7px 7px 20px 0px rgba(0, 0, 0, .1), 4px 4px 5px 0px rgba(0, 0, 0, .1);
    outline: none;
    animation: fade-text-from-in-out .2s 1.8s linear both;
}

.button-30:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: var(--color-3);
    border-radius: 8px;
    box-shadow: inset 2px 2px 2px 0 rgba(255, 255, 255, .5), 7px 7px 20px 0 rgba(0, 0, 0, .1), 4px 4px 5px 0 rgba(0,0,0,.1);
    transition: all .2s ease;
}

.button-30:hover {
    background-color: var(--color-2);
    color: #fff;
}
  
.button-30:hover:after {
    left: 0;
    width: 100%;
}

.button-30:active {
    top: 2px;
}
/* ---------- End buttons ---------- */

/* ---------- Common selectors and properties ---------- */
 
main,
header,
.header-container,
nav,
.logo,
.nav__links,
.logo__brand,
.button-menu,
.bars__menu,
.hero,
.arrow-down {
    display: flex;
}
/* ---------- End common selectors and properties ---------- */

body {
    width: 100%;
    background: linear-gradient(#000 24%, #2d2d46);
}

.off-scroll {
    overflow: hidden;
}

main {
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(transparent 50%, #000 100%), url(../assets/images/background-image-dark-852x1600.webp) no-repeat center / cover;
}

.hero {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.hero button {
    margin-left: 0;
}

/* ---------- Header ---------- */

header {
    /* border: 1px solid #fff; */
    justify-content: center;
    width: 100%;
    height: 60px;
    background: transparent;
    padding: 5px 20px;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: all .3s ease;
}

header.header-blur {
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #84848409;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}

header.header-hidden {
    transform: translateY(-100%);
}

.header-container {
    justify-content: space-between;
    width: min(1200px);
}

.logo {
    align-items: center;
    color: #000;
    font-size: 2rem;
    text-decoration: none;
    z-index: 3000;
}

.logo__brand {
    height: 80px;
    margin-left: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    & p {
        color: var(--color-1);
        font-size: 1.5rem;
        line-height: 30px;
    }
    & p:last-child {
        color: var(--color-2);
        font-size: .66rem;
        line-height: .66rem;
    }
}

nav {
    width: 100%;  
    height: 100vh;
    position: fixed;
    background: #1e1d1d;
    top: 0;
    left: 0;
    margin-left: -100vw;
    transition: all .2s ease;
    z-index: 200;
}

nav.show {
    margin-left: 0;
    opacity: 1;
}

.nav__links {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    transition: opacity .3s ease, transform .3s ease;
}

.nav__links a {
    opacity: 0;
    transform: translateY(20px);
    display: inline-block;
    transition: opacity .3s ease, transform .3s ease;
}

nav.show a {
    opacity: 1;
    transform: translateY(0);
}
  
nav.show a:nth-child(1) {
    transition-delay: .4s;
}

nav.show a:nth-child(2) {
    transition-delay: .6s;
}

nav.show a:nth-child(3) {
    transition-delay: .8s;
}

nav.show a:nth-child(4) {
    transition-delay: 1s;
}  

.link__item {
    margin-top: 2rem;
    color: var(--color-text);
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: bold;
    position: relative;
}

.link__item::after {
    position: absolute;
    content: "";
    background-color: var(--color-2);
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 3px;
    transition: all 0.3s ease;
}

.link__item:hover::after {
    width: 100%;
}

.button-menu {
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding-top: 3px;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 4000;
}

.button-menu span {
    width: 30px;
    height: 3px;
    margin-bottom: 5px;
    position: relative;
    background: var(--color-3);
    border-radius: 3px;
    transition: all .2s linear;
}

.button-menu.close span {
    opacity: 1;
    transform: rotate(45deg) translate(11px, 11px);
    background: var(--color-3);
}

.button-menu.close span:nth-child(2) {
    transform: translateX(-100vw);
}

.button-menu.close span:nth-child(3) {
    transform: rotate(-45deg) translate(0px, 0px);
}
/* ---------- End header ---------- */

/* ---------- Hero ---------- */

.hero {
    width: min(90%, 1100px);
    height: 85vh;
    overflow: hidden;
}

.hero__text p {
    padding: 10px 5px;
    font-size: clamp(.8rem, 5vw, 1.2rem);
    color: var(--color-text-light);
    letter-spacing: 1px;
    text-shadow: var(--text-shadow-light);
    text-wrap: balance;
    animation: text-fade-in-down .3s 1.5s linear both;
    opacity: 0;
    position: relative;
    & a {
        color: var(--color-3);
        text-decoration: none;
        text-shadow: var(--text-shadow-light);
    }
    &:active {
        top: 2px;
    }
    &::selection {
        background-color: var(--color-2);
    }
}

.button__cta,
.button__flip-card,
.button-more {
    justify-content: center;
    align-items: center;
    width: min(280px, 90%);
    height: 50px;
    margin-top: 10px;
    margin-bottom: 20px;
    background: var(--color-2);
    border: none;
    z-index: 100;
    animation: fade-text-from-in-out .2s 1.8s linear both;
}

.arrow-down {
    justify-content: center;
    width: 100%;
    height: 100px;
    & img {
        height: 40px;
        animation: down-arrow 5s 3s linear infinite;
        opacity: 0;
    }
}
/* ---------- End hero ---------- */

/* ---------- Service section ---------- */

.price-list {
    padding: 100px 0 50px;
    opacity: 0;
}

.price-list--show {
    transform: translateY(50px);
    animation: text-up .3s linear forwards;
}

.cards-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.cards-title,
.cards-button {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 10px;
}

.card {    
    width: clamp(300px, 50vw, 350px);
    height: 500px;
    transition: all .5s ease;
    margin: 20px;
    transition: .5s ease;
    transform-style: preserve-3d;
    position: relative;
    cursor: pointer;
}

.hidden {
    display: none;
}

.card__front,
.card__back {
    border: 1px solid var(--color-3);
    border-bottom: 5px solid var(--color-3);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    position: absolute;
    backface-visibility: hidden;
    transition: .5s ease;
}

.card__front:hover,
.card__back:hover {
    box-shadow: 0 2px 10px 2px #cacaca;
}

.card__front {
    background-color: var(--color-3);
    overflow: hidden;
    & img {
        width: 100%;
        height: 300px;
        object-fit: cover;        
    }
    & h3 {
        height: 50px;        
    }
    & h4 {
        height: 150px;
        text-align: center;
        text-wrap: balance;
    }
}

.card__front h3,
.card__front h4 {
    display: flex;
    justify-content: center;
    align-items: center;
    color:#050222;
    padding: 10px;
    background-color: var(--card-background);
}

.card__back {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: var(--card-background);
    backface-visibility: hidden;
    transform: rotateY(180deg);
    & h3 {
        margin-top: 20px;
        color: var(--color-text-dark);
    }
    & ul li {
        display: flex;
        align-items: center;
        padding: 5px 15px;
        list-style: none;
        font-size: clamp(.7rem, 3vw, .75rem);
    }
    & ul li img {
        margin-right: 5px;
    }
    & ul li a {
        color: inherit;
        text-decoration: none;
        margin: 15px 0;
    }
    & p {
        font-size: clamp(1rem, 1.5vw, 1.2rem);
        letter-spacing: 2px;
        font-weight: 900;
    }
    & p span {
        color: grey;
        font-weight: 200;
        text-decoration: line-through;
        text-decoration-thickness: 2px;
        text-decoration-color: var(--color-4);
        margin-right: 10px;
    }
}

.card__back[aria-hidden="true"] a,
.card__back[aria-hidden="true"] button {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
}

.card__back[aria-hidden="false"] a,
.card__back[aria-hidden="false"] button {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  position: static;
}

.flip {
    transform: rotateY(-180deg);
}
/* ---------- End card´s ---------- */

/* ---------- Landing page, store, maintenance & professional section description ---------- */

/* .button-2 {
    transform: translateX(50px);
} */

.store__text,
.store__image {
    opacity: 0;
    transition: opacity .6s ease, transform .6s ease;
}

.store__text.visible,
.store__image.visible {
    opacity: 1;
    transform: translateX(0);
}

.store__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    transform: translateX(50px);
    & h2 {
        margin: 20px 0;
    }
    & p {
        padding: 5px;
        font-size: .8rem;
        text-align: center;
    }
}

.store__image {
    flex: 1;
    display: flex;
    justify-content: center;
    transform: translateX(-50px);
}

.store__image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* .cta-button:hover {
    background-color: #0097a7;
} */

.landingpage-section,
.store-section,
.web-maintenance-section,
.professional-section {
    display: flex;
    min-height: 90vh;
    padding: 40px;
    overflow: hidden;
}

.landingpage-container,
.store-container,
.web-maintenance-container,
.professional-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
}

.landingpage__text,
.landingpage__image,
.web-maintenance__text,
.web-maintenance__image,
.professional__text,
.professional__image {
    opacity: 0;
    transition: opacity .6s ease, transform .6s ease;
}

.landingpage__text,
.web-maintenance__text,
.professional__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    transform: translateX(50px);
}

.landingpage__text.visible,
.web-maintenance__text.visible,
.professional__text.visible {
    opacity: 1;
    transform: translateX(0);
}

.landingpage__text h2,
.store__text h2,
.web-maintenance__text h2,
.professional__text h2 {
    margin: 5px 0 20px;
}

.landingpage__text p,
.store__text p,
.web-maintenance__text p,
.professional__text p {
    color: #c0bdbd;
    padding: 5px;
    font-size: .8rem;
    text-align: center;
    /* align-self: flex-start; */
}

.landingpage__image,
.store__image,
.web-maintenance__image,
.professional__image {
    flex: 1;
    display: flex;
    justify-content: center;
    transform: translateX(-50px);
}

.landingpage__image img,
.store__image img,
.web-maintenance__image img,
.professional__image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.landingpage__image.visible,
.web-maintenance__image.visible,
.professional__image.visible {
    opacity: 1;
    transform: translateX(0);
}

.landingpage__buttons,
.store__buttons,
.web-maintenance__buttons,
.professional__buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
}

.landingpage__buttons a,
.web-maintenance__buttons a,
.professional__buttons a {
    text-align: center;
    text-decoration: none;
}

.button--outlined {
    background: transparent;
    border: 2px solid var(--color-3);
    color: var(--color-3);
    transition: background .3s ease, color .3s ease;
}

.button--outlined:hover {
    background: var(--color-3);
    color: #fff;
}
/* ---------- End landing page, store & professional section ---------- */

/* ---------- Price section ---------- */

.price {
    position: relative;
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    & h2 {
        text-align: center;
        font-size: clamp(1.2rem, 3vw, 1.8rem);
        margin-bottom: 20px;
    }
    & .price__description {
        color: var(--color-text);
        font-size: clamp(.8rem, 1.8vw, 1.2rem);
        padding: 5px 10px;
        text-align: center;
        text-wrap: balance;
    }

}

.price__pay {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.price__track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 0;
  flex: 1;
  align-items: center;
  scrollbar-width: none;
}

.price__track::-webkit-scrollbar {
  display: none;
}

.price-card {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto; /* antes 0 0 80% */
    justify-content: space-between;
    width: 320px;
    height: 640px;
    scroll-snap-align: center;
    margin: 0 auto;
    background: linear-gradient(var(--card-background)) padding-box, linear-gradient(to right, var(--color-2), var(--color-3)) border-box;
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 12px;
    box-shadow: 0 4px 8px 2px rgba(0, 0, 0, .1);
    padding: 20px 0;
    text-align: center;
    opacity: 0;
    color: #222;
    /* transform: translateY(30px); */
    transition: opacity 3s ease, transform 3s ease;
    & div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    & div ul li {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 4px 15px;
        font-size: .6rem;
    }
    & div ul li img {
        margin-right: 5px;
    } a {
        display: flex;
        justify-content: center;
        width: 100%;
    }
}

.price-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.price-card h3 {
    color: var(--color-text-dark);
    font-size: 1.2rem;
    padding: 10px 5px;
}

.price-value--final {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-text-dark);
}

.price-value--net {
    color: #333;
    font-size: .7rem;
    margin-bottom: 10px;
}

.price__description a {       
    color: var(--color-text);
}

.price__controls {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.price__button {
  background: rgba(0, 0, 0, .2);
  background: var(--color-2);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin: 0 10px;
  display: flex;
  padding: 3px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: background .3s ease;
}

.price__button:hover {
  background: rgba(0, 0, 0, .4);
  background: var(--color-3);
}

.price__button--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.left-icon {
  color: #fff;
  transform: rotate(-90deg);
}

.right-icon {
  color: #fff;
  transform: rotate(90deg);
}

.price__description a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: text-decoration-color .3s ease;
}

.price__description a:first-of-type {
  text-decoration-color: var(--color-3);
}

.price__description a:last-of-type {
  text-decoration-color: var(--WhatsApp);
}

.price__description a:hover {
  text-decoration-color: var(--color-2)
}

/* ---------- End price section ---------- */

/* ---------- Domains section ---------- */

.domains-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    & h2 {
    margin-bottom: 20px;
    }
}

.domains-section form {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.domains-section input {
    width: 100%;
    padding: 10px 45px 10px 15px;
    border-radius: 50px;
    border: 2px solid #ccc;
    outline: none;
    transition: border-color .3s ease;
    font-size: 1rem;
    text-transform: lowercase;
}

.domains-section input.valido {
    border-color: #3cb371;
}

.domains-section input.invalido {
    border-color: #e74c3c;
}

.domains-section button {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    background: var(--color-3);
    border: none;
    border-radius: 50px;
    padding: 8px 30px;
    cursor: pointer;
    transition: background .3s ease;
}

.domains-section button:hover {
    background: #005fa3;
}

.domains-section button:disabled {
    background: var(--color-1);
    cursor: not-allowed;
}

#response {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    min-height: 30px;
    color: #fff;
    font-size: .9rem;
    text-align: center;
    text-wrap-style: pretty;    
}

.spinner {
    display: inline-block;
    width: 22px;
    height: 22px;
    border: 3px solid rgba(255, 255, 255, .9);
    border-top-color: var(--color-3);
    border-radius: 50%;
    animation: spin .8s linear infinite;
    vertical-align: middle;
    margin-right: 4px;
}

.text-searching {
    display: inline-block;
    align-items: center;
    color: #fff;
    vertical-align: middle;
    font-size: .9rem;
}
/* ---------- End domains section ---------- */

/* ---------- Contact section ---------- */

.contact-wrapper {
    height: 100vh;
    padding: 1rem;
}
  
.contact-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    max-width: 1200px;
    margin: 100px auto;
    border: 1px solid var(--color-3);
    border-bottom: 10px solid var(--color-3);
    border-radius: 10px;
    background: #FFFFFF;
    background: linear-gradient(343deg, rgba(255, 255, 255, 0) 0%, rgba(94, 139, 173, 1) 70%);    
    gap: 1.5rem;
}
  
.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: stretch;
}
  
.contact-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../assets/images/Customer-support.webp');
    background-position: center;
    background-size: cover;
    border-radius: 8px 0 0 8px;
}

.form-group {
    margin: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
  
label {
    margin: 0 0 4px 0;
    font-size: clamp(.7rem, 3vw, .8rem);
}
  
input,
textarea {
    width: 95%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: .5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
}

textarea {
    resize: none;
    height: 100px;
}

#name {
    text-transform: capitalize;
}

#email {
    text-transform: lowercase;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    display: block;
    width: 95%;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin: 0 auto;
    padding: 10px 40px 10px 15px;
    font-size: .7rem;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D'10'%20height%3D'7'%20viewBox%3D'0%200%2010%207'%20fill%3D'ffffff'%20xmlns%3D'http://www.w3.org/2000/svg'%3E%3Cpath%20d%3D'M1%201L5%205L9%201'%20stroke%3D'%23333'%20stroke-width%3D'2'%20/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px 12px;
}

select:focus {
    border-color: #ccc;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.4);
}

#form-contact .button-30 {
    width: min(250px, 50%);
    margin: 20px auto;
}
/* ---------- End contact section ---------- */  

/* ---------- WhatsApp and other buttons ---------- */

.various-buttons {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    right: 10px;
    bottom: 30px;
    width: 80px;
    height: 140px;
    z-index: 300;
}

.up-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .2);
    display: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    animation: button-zoom-in .3s linear both;
}

.up-button--show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.up-icon {
    color: #fff;
    text-decoration: none;
}

.Whatsapp-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgb(37, 211, 102);
    color: #e2dada;
    animation: breathe 3s ease-in-out infinite;
}

.Whatsapp-icon {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    animation: beat 3s ease-in-out infinite;
}
/* ---------- End WhatsApp and other buttons ---------- */

/* ---------- Footer ---------- */

.footer {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    background-color: #1e1d1d;
    margin-top: 100px;
    padding: 2rem 1rem;
    color: #f5f5f5;
    font-size: .8rem;
}

.footer__logo {
    flex: 0 0 100%;
}

.footer__logo,
.footer__sections,
.footer__social,
.footer__contact,
address,
.footer__legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 100px;
    & hr {
        margin-top: 5px;
        width: 100%;
        border: none;
        border-top: 4px solid #2c2c2c;
        border-radius: 5px;
    }
}

.footer-logo {
    width: 150px;
    height: auto;
}

.footer__sections ul li {
    display: flex;
    flex-direction: column;    
    justify-content: center;
}

.footer__sections ul li a,
.footer__legal ul li a {
    font-size: .8rem;
    font-weight: 400;
    margin: 8px auto;
    padding: 5px 5px 0;
}

.footer__social {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #f5f5f5;
}

.footer__social ul {
    display: inline-flex;
}

.Facebook-link,
.Instagram-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: 10px;
    transition: transform .3s ease;
}

.Facebook-link svg,
.Instagram-link svg {
    transition: fill 0.3s, transform 0.3s ease;
    will-change: transform, fill;
}

.Facebook-link svg {
    width: 100%;
    height: 100%;
    transition: all .3s ease;
}

.bg {
    fill: #ffffff;
    transition: fill .5s ease-in-out;
}

.f {
    fill: transparent;
    transition: fill .5s ease-in-out;
}

.Facebook-link svg:hover .bg {
    fill: #1877f2;
}

.Facebook-link svg:hover .f{
    fill: #ffffff;
}

.Facebook-link:hover,
.Instagram-link:hover {
    transform: scale(1.1);
}

.Instagram-link svg {
    width: 100%;
    height: 100%;
    transition: fill .4s ease-in-out;
}

.Instagram-link path {
    fill: #ffffff;
    transition: fill .4s ease-in-out;
}

.Instagram-link:hover path {
    fill: url(#instaGradient);
    transition: fill .4s ease-in-out;
}

address {
    font-style: normal;
}

.footer__contact {
    color: #f5f5f5;
    font-size: .8rem;
}

.footer__contact ul li {
    display: flex;
    flex-direction: column;
}

.footer__contact ul li a {
    color: #fff;
    font-size: .9rem;
    font-weight: 400;
    margin: 15px auto;
    padding: 5px 5px 0;
}

.footer__legal ul li {
    display: flex;
    flex-direction: column;
}

.footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-wrap: balance;
    text-align: center;
    flex: 0 0 100%;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
}

/* ---------- End footer ---------- */

/* ---------- Animations ---------- */

@keyframes text-fade-from-left {
    from {
        transform: translateX(-100vw);
    }
}

@keyframes text-fade-in-down {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-text-from-in-out {
    from {
        transform: scale(0);
    }
    90% {
        transform: scale(1.2);
    }
    to {
        transform: scale(1);
    }
}

@keyframes down-arrow {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    1% {
        opacity: 1;
    }
    8% {
        opacity: .5;
    }
    9.5% {
        transform: translateY(50px);
        opacity: .1;
    }
    10% {
        opacity: 0;
    }   
}

@keyframes down-arrow-small-screen {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    1% {
        opacity: 1;
    }
    8% {
        opacity: .5;
    }
    9.5% {
        transform: translateY(20px);
        opacity: .1;
    }
    10% {
        opacity: 0;
    }
}

@keyframes slow-entry {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes text-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }    
}

@keyframes button-zoom-in {
    0% {
        transform: scale(0);
    }
    80% {
        transform: scale(1);
        opacity: 1;
    }
    90% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes breathe {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); 
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
    }
}

@keyframes beat {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
/* ---------- End animations ---------- */

/* ---------- Media query ---------- */

@media (max-height: 440px) {
    .arrow-down {
        margin-top: -20px;
        margin-bottom: 10px;
        height: 50px;
        & img {
            animation: down-arrow-small-screen 5s 3s linear infinite;
        }
    }
}

@media (min-width: 500px) {
    main {
        background: linear-gradient(transparent 50%, #000 100%), url(../assets/images/background-image-dark-2400x1600.webp) no-repeat center / cover;
    }
}

@media (max-width: 799px) {

    .landingpage__text,
    .landingpage__image,
    .button-1 {
      transform: translateY(50px);
    }

    .landingpage__text.visible,
    .landingpage__image.visible,
    .button-1.visible {
      transform: translateY(0);
    }
}

@media (min-width: 900px) {

    .button-menu {
        display: none;
    }
    
    .logo {
        flex-basis: 20%;
    }
    
    nav {
        position: static;
        background: none;
        margin-left: 0;
        flex-basis: 80%;
        height: 100%;
    }
    
    .nav__links {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-end;
    }

    .nav__links a {
        opacity: 1;
        transform: translateY(0);
    }
    
    .link__item {
        display: inline-block;
        margin: 0 20px;
        color: var(--color-text);
        font-size: .8rem;
    }

    .cards-container {
        flex-direction: row;
        justify-content: space-evenly;
    }

    .front img {
      width: 90px;
      height: 90px;
    }

    .front h2 {
      font-size: 1.5rem;
    }

    .back ul li {
      font-size: 1rem;
    }

    .back button {
      font-size: 1.1rem;
    }

    .button-1.visible {
      transition-delay: .1s;
      /* transform: translateY(0); */
    }

    /* .store-container {
        flex-direction: row;
        align-items: center;
    } */
  
    .store__image.visible {
        transition-delay: 0s;
    }
  
    .store__text.visible {
        transition-delay: 0.3s;
    }
  
    .button-2.visible {
        transition-delay: 0.6s;
        /* transform: translateY(0); */
    }

    .landingpage__buttons,
    .store__buttons,
    .web-maintenance__buttons,
    .professional__buttons {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .contact-container {
        flex-direction: row-reverse;
        gap: 0;
    }

    .contact-wrapper {
        padding: 2rem;
    }
    
    .contact-image img {
        border-radius: 8px 0 0 0;
    }
}

@media (min-width: 999px) {
    .landingpage-container,
    .store-container,
    .web-maintenance-container,
    .professional-container {
        flex-direction: row;
        align-items: center;
    }
    .landingpage__text p,
    .store__text p,
    .web-maintenance__text p,
    .professional__text p {
        text-align: left;
        align-self: flex-start;
    }
    .footer {
        flex-direction: row;
        justify-content: space-evenly;
        align-items: flex-start;
    }
    .footer__sections,
    address,
    .footer__legal {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }
    .footer__sections ul li,
    .footer__social ul li,
    address ul li,    
    .footer__legal ul li {
        flex-wrap: wrap;
        align-content: flex-start;
    }
    .footer__sections ul li,
    .footer__legal ul li {
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
    }
}