* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Archivo";
}
::selection {
    background-color: #986dff;
    color: #fff;
}
ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    color: #986dff;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}
button,
input {
    border: 0;
    font-family: "Archivo";
}
button:focus,
input:focus {
    border: 0;
}
body {
    font-family: "Archivo";
    background-color: #fff;
    overflow-x: hidden;
}
html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background-color: #111;
}
::-webkit-scrollbar-thumb {
    background-color: #986dff;
    border-radius: 8px;
}
header {
    padding: 0px 50px;
    background: #111;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid #101013;
    z-index: 999;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-image: linear-gradient(#000000 20%, #542c9c8c 153%);
}
@media screen and (max-width: 992px) {
    header {
        padding: 0px 24px;
    }
}
header .grid-layout nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    height: 100px;
    padding: 0px 8px;
}
header .grid-layout nav img {
    width: 100px;
    /* background-image: linear-gradient(347deg,white 5%, #542c9c57 30%); */
}
header .grid-layout nav .nav-list {
    list-style: none;
    display: flex;
}
header .grid-layout nav .nav-list li {
    margin-left: 48px;
}
@media screen and (max-width: 992px) {
    header .grid-layout nav .nav-list li {
        margin-left: 0px;
    }
}
header .grid-layout nav .nav-list li a {
    color: #9ca3af;
    position: relative;
    font-size: 1.8rem;
}
header .grid-layout nav .nav-list li a::after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -7px;
    left: 0;
    background: linear-gradient(270deg, #986dff 0%, #17161d 100%);
    transform-origin: bottom right;
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}
header .grid-layout nav .nav-list li a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
header .grid-layout nav .nav-list li a:hover {
    color: #fff;
}
.mobile-menu {
    display: none;
}
.mobile-menu div {
    width: 32px;
    height: 1px;
    background-color: #fff;
    margin: 8px;
    transition: 0.4s;
}
.nav-list.active {
    visibility: initial;
    transition: 1s all ease;
}
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.mobile-menu.active .line1 {
    transform: rotate(-45deg) translate(-8px, 8px);
}
.mobile-menu.active .line2 {
    opacity: 0;
}
.mobile-menu.active .line3 {
    transform: rotate(45deg) translate(-5px, -5px);
}
@media screen and (max-width: 992px) {
    body {
        overflow-x: hidden;
    }
    .nav-list {
        text-align: center;
        position: absolute;
        top: 100px;
        right: 0;
        width: 100vw;
        height: 100vh;
        z-index: 999;
        background-color: #151515;
        flex-direction: column;
        padding-top: 96px;
        visibility: hidden;
    }
    header .grid-layout nav .nav-list li {
        opacity: 0;
        margin-bottom: 48px;
    }
    header .grid-layout nav .nav-list li a {
        font-size: 2.4rem;
    }
    .mobile-menu {
        display: block;
    }
}

#s-home {
    padding: 50px 50px;
    background-color: #1e1331;
    position: relative;
    background-repeat: no-repeat;
    background-position: 20% 40%;
    background-size: cover;
    background-attachment: fixed;
    /* background-image: linear-gradient(#000000, #542c9c8c); */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1; /* Ajuste a opacidade conforme necessário */
}

@media screen and (max-width: 992px) {
    #s-home {
        padding: 100px 20px 0px 20px;
    }
}
#s-home .grid-layout #home {
    display: flex;
    align-items: center;
    min-height: 90vh;
    padding: 200px 0px;
    overflow: hidden;
    width: 100%;
}
@media screen and (max-width: 992px) {
    #s-home .grid-layout #home {
        padding: 0px;
    }
}
#s-home .grid-layout #home #home-container-text {
    width: 100%;
    flex-direction: column;
}
@media screen and (max-width: 992px) {
    #s-home .grid-layout #home #home-container-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        text-align: center;
        padding: 0px;
    }
}
#s-home .grid-layout #home #home-container-text h1 {
    color: #fff;
    max-width: 650px;
    line-height: 140%;
    font-size: 4rem;
    font-weight: 500;
}
@media screen and (max-width: 992px) {
    #s-home .grid-layout #home #home-container-text h1 {
        font-size: 3.2rem;
    }
}
#s-home .grid-layout #home #home-container-text h1 span {
    color: #986dff;
}
#s-home .grid-layout #home #home-container-text p {
    color: white;
    font-size: 2rem;
    max-width: 600px;
    margin: 40px 0px;
    font-weight: 300;
    line-height: 160%;
}
#s-home .grid-layout #home #home-container-text a {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #986dff;
    color: #fff;
    backdrop-filter: blur(10px);
    padding: 20px 32px;
    max-width: 300px;
    border-radius: 4px;
    transition: all 0.4s ease;
    margin-top: 30px;
    font-size: 18px;
    font-weight: 400;
}
#s-home .grid-layout #home #home-container-text a:hover {
    padding: 20px 45px;
    max-width: 325px;
}
#s-home .grid-layout #home #logo {
    position: absolute;
    right: 210px;
    top: 25%;
    transform: translate(0%, -50%);
    animation: float 3s ease-in-out infinite;
    width: 30%;
    border-radius: 10px 10px 10px 10px;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@media screen and (max-width: 1200px) {
    #s-home .grid-layout #home #logo {
        display: none;
    }
}
#s-about {
    padding: 72px 0px;
    /* background-color: #111; */
    background: linear-gradient(-21deg, #151515 50%, #673ab7 10%);
}
@media screen and (max-width: 1200px) {
    #s-about {
        padding: 72px 20px;
        background: #111;
    }
}
#s-about .grid-layout > div {
    background-color: #151515;
    border: 2px solid #1f1f1f;
    padding: 24px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
}
@media screen and (max-width: 1200px) {
    #s-about .grid-layout > div {
        flex-wrap: wrap;
        gap: 32px;
    }
}
#s-about .grid-layout > div #creator-photo {
    width: 47%;
    background-image: url("../image/zeze1.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 4px;
    height: 500px;
}
@media screen and (max-width: 1200px) {
    #s-about .grid-layout > div #creator-photo {
        width: 100%;
        height: 400px;
    }
}
@media screen and (max-width: 992px) {
    #s-about .grid-layout > div #creator-photo {
        height: 350px;
    }
}
@media screen and (max-width: 768px) {
    #s-about .grid-layout > div #creator-photo {
        height: 300px;
    }
}
#s-about .grid-layout > div #creator-photo h3 {
    color: #111;
    background-color: #fff;
    padding: 8px;
    border-radius: 16px;
    width: 180px;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
    margin: 16px;
}
#s-about .grid-layout > div div:nth-child(2) {
    width: 49%;
}
@media screen and (max-width: 1200px) {
    #s-about .grid-layout > div div:nth-child(2) {
        width: 100%;
    }
}
#s-about .grid-layout > div div:nth-child(2) h2 {
    font-size: 4rem;
    font-weight: 500;
    margin: 16px 0px;
    color: #fff;
}
@media screen and (max-width: 992px) {
    #s-about .grid-layout > div div:nth-child(2) h2 {
        font-size: 3.2rem;
    }
}
#s-about .grid-layout > div div:nth-child(2) h3 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 16px;
    color: #fff;
}
#s-about .grid-layout > div div:nth-child(2) h4 {
    font-size: 2rem;
    font-weight: 500;
    color: #986dff;
}
#s-about .grid-layout > div div:nth-child(2) p {
    font-size: 1.8rem;
    color: white;
    line-height: 160%;
    margin: 32px 0px 48px 0px;
}
#s-about .grid-layout > div div:nth-child(2) nav ul {
    display: flex;
    align-items: center;
    gap: 16px;
}
@media screen and (max-width: 1200px) {
    #s-about .grid-layout > div div:nth-child(2) nav ul {
        flex-wrap: wrap;
    }
}
#s-about .grid-layout > div div:nth-child(2) nav ul a {
    background-color: #111;
    border: 2px solid #1f1f1f;
    border-radius: 6px;
    padding: 16px;
}
@media screen and (max-width: 1200px) {
    #s-about .grid-layout > div div:nth-child(2) nav ul a img {
        width: 40px;
    }
}
#s-about .grid-layout > div div:nth-child(2) nav ul a:hover {
    border-color: #986dff;
}
#s-experience {
    background-color: #151515;
    color: #fff;
    padding: 96px 48px;
}
@media screen and (max-width: 992px) {
    #s-experience {
        padding: 48px 24px;
    }
}
#s-experience .grid-layout h2 {
    padding-bottom: 24px;
    color: #fff;
    font-size: 4rem;
    font-weight: 500;
}
#s-experience .grid-layout h2 span {
    color: #986dff;
}
#s-experience .grid-layout #experience {
    margin-top: 32px;
    display: flex;
    gap: 40px;
}
@media screen and (max-width: 1200px) {
    #s-experience .grid-layout #experience {
        flex-wrap: wrap;
    }
}
#s-experience .grid-layout #experience .option-experience {
    display: flex;
    width: 25%;
    flex-direction: column;
}
@media screen and (max-width: 1200px) {
    #s-experience .grid-layout #experience .option-experience {
        width: 100%;
    }
}
#s-experience .grid-layout #experience .option-experience .activeExperience {
    border-left: 4px solid #986dff;
    color: #986dff;
}
#s-experience .grid-layout #experience .option-experience .activeExperience h3 {
    font-weight: 600;
}
#s-experience .grid-layout #experience .option-experience > div {
    padding: 24px 32px;
    text-align: left;
    background-color: #111;
    border-left: 4px solid #111;
}
#s-experience .grid-layout #experience .option-experience > div:hover {
    cursor: pointer;
}
#s-experience .grid-layout #experience .option-experience > div h3 {
    font-size: 1.8rem;
    font-weight: 400;
}
#s-experience .grid-layout #experience .text-experience {
    width: 75%;
}
@media screen and (max-width: 1200px) {
    #s-experience .grid-layout #experience .text-experience {
        width: 100%;
    }
}
#s-experience .grid-layout #experience .text-experience > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media screen and (max-width: 1200px) {
    #s-experience .grid-layout #experience .text-experience > div {
        flex-wrap: wrap;
        gap: 32px;
    }
}
#s-experience .grid-layout #experience .text-experience > div h4 {
    font-size: 2.4rem;
    font-weight: 400;
}
#s-experience .grid-layout #experience .text-experience > div p {
    font-size: 1.8rem;
    color: #9ca3af;
}
#s-experience .grid-layout #experience .text-experience h5 {
    font-size: 2rem;
    margin: 32px 0px;
    font-weight: 500;
    color: #986dff;
}
#s-experience .grid-layout #experience .text-experience p {
    font-size: 2rem;
    line-height: 160%;
    color: #9ca3af;
    font-weight: 400;
}
#s-projects {
    padding: 96px 48px;
    text-align: center;
    /* background-color: #111; */
    background: linear-gradient(30deg, #151515 50%, #673ab7 10%);
}
@media screen and (max-width: 992px) {
    #s-projects {
        padding: 48px 24px;
        background: #111;
    }
}
#s-projects .grid-layout h2 {
    padding-bottom: 24px;
    color: #fff;
    font-size: 4rem;
    font-weight: 500;
}
#s-projects .grid-layout h2 span {
    color: #986dff;
}
#s-projects .grid-layout #projects {
    margin: 24px 0px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    text-align: left;
}
#s-projects .grid-layout #projects .teslabank {
    border: 1px solid #e51d37;
}
#s-projects .grid-layout #projects .teslabank:hover {
    border: 1px solid #e51d37;
}
#s-projects .grid-layout #projects .naped {
    border: 1px solid #00a3ff;
}
#s-projects .grid-layout #projects .naped:hover {
    border: 1px solid #00a3ff;
}
#s-projects .grid-layout #projects .efront {
    border: 1px solid #a6fb98;
}
#s-projects .grid-layout #projects .efront:hover {
    border: 1px solid #a6fb98;
}
#s-projects .grid-layout #projects .steam {
    border: 1px solid #536fed;
}
#s-projects .grid-layout #projects .steam:hover {
    border: 1px solid #536fed;
}
#s-projects .grid-layout #projects > article {
    height: auto;
    padding: 32px;
    margin: 8px;
    flex-basis: calc(33% - 20px);
    flex-grow: 1;
    border: 1px solid #111;
    transition: 1s all ease;
    background-color: #151515;
    height: auto;
}
#s-projects .grid-layout #projects > article:hover {
    border: 1px solid #986dff;
}
@media screen and (max-width: 1200px) {
    #s-projects .grid-layout #projects > article {
        flex-basis: calc(50% - 20px);
    }
}
@media screen and (max-width: 768px) {
    #s-projects .grid-layout #projects > article {
        flex-basis: calc(100% - 20px);
    }
}
#s-projects .grid-layout #projects > article h3 {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 500;
}
#s-projects .grid-layout #projects > article p {
    line-height: 24px;
    margin: 24px 0px;
    color: white;
    line-height: 3.2rem;
    font-size: 1.8rem;
}
#s-projects .grid-layout #teslabank {
    color: #e51d37;
}
#s-projects .grid-layout #teslabank::after {
    background: linear-gradient(270deg, #e51d37 0%, #17161d 100%);
}
#s-projects .grid-layout #naped {
    color: #00a3ff;
}
#s-projects .grid-layout #naped::after {
    background: linear-gradient(270deg, #00a3ff 0%, #17161d 100%);
}
#s-projects .grid-layout #efront {
    color: #a6fb98;
}
#s-projects .grid-layout #efront::after {
    background: linear-gradient(270deg, #a6fb98 0%, #17161d 100%);
}
#s-projects .grid-layout #steam {
    color: #536fed;
}
#s-projects .grid-layout #steam::after {
    background: linear-gradient(270deg, #536fed 0%, #17161d 100%);
}
#s-projects .grid-layout a {
    color: #986dff;
    position: relative;
    font-size: 2rem;
    font-weight: 400;
}
#s-projects .grid-layout a::after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -7px;
    left: 0;
    background: linear-gradient(270deg, #986dff 0%, #17161d 100%);
    transform-origin: bottom right;
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}
#s-projects .grid-layout a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
#s-projects .grid-layout a::after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -7px;
    left: 0;
    transform-origin: bottom right;
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}
#s-projects .grid-layout a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}
#s-services {
    padding: 96px 48px;
    /* background-color: #151515; */
    background: linear-gradient(153deg, #151515 50%, #673ab7 10%);
}
@media screen and (max-width: 992px) {
    #s-services {
        padding: 48px 24px;
        background: #111;
    }
}
#s-services .grid-layout h2 {
    text-align: center;
    padding-bottom: 24px;
    color: #fff;
    font-size: 4rem;
    font-weight: 500;
}
#s-services .grid-layout h2 span {
    color: #986dff;
}
#s-services .grid-layout #services {
    display: flex;
    height: auto;
    flex-wrap: wrap;
    margin: 24px 0px;
}
#s-services .grid-layout #services article {
    background-color: #111;
    height: auto;
    padding: 32px;
    margin: 8px;
    flex-basis: calc(33% - 20px);
    flex-grow: 1;
    border: 1px solid #111;
    transition: 1s all ease;
    border: 1px solid #1f1f1f;
    border-radius: 4px;
}
#s-services .grid-layout #services article:hover {
    border: 1px solid #986dff;
}
@media screen and (max-width: 1200px) {
    #s-services .grid-layout #services article {
        flex-basis: calc(50% - 20px);
    }
}
@media screen and (max-width: 768px) {
    #s-services .grid-layout #services article {
        flex-basis: calc(100% - 20px);
    }
}
#s-services .grid-layout #services article div {
    height: 90px;
}
#s-services .grid-layout #services article div img {
    width: 70px;
}
#s-services .grid-layout #services article h3 {
    padding: 24px 0px;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 500;
}
#s-services .grid-layout #services article p {
    line-height: 3.2rem;
    color: white;
    font-size: 1.8rem;
}
#s-skills {
    padding: 96px 48px;
    /* background-color: #111; */
    background: linear-gradient(198deg, #151515 50%, #673ab7 10%);
}
@media screen and (max-width: 992px) {
    #s-skills {
        padding: 48px 24px;
        background: #111;
    }
}
#s-skills .grid-layout #skills {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    height: auto;
    padding: 8px;
}
#s-skills .grid-layout #skills div,
#s-skills .grid-layout #skills article {
    width: 50%;
}
@media screen and (max-width: 1200px) {
    #s-skills .grid-layout #skills div,
    #s-skills .grid-layout #skills article {
        width: 100%;
    }
}
#s-skills .grid-layout #skills #skills-text {
    min-height: 400px;
}
@media screen and (max-width: 768px) {
    #s-skills .grid-layout #skills #skills-text {
        min-height: auto;
    }
}
#s-skills .grid-layout #skills #skills-text h2 {
    margin-bottom: 32px;
    color: #fff;
    font-size: 3.2rem;
    font-weight: 500;
}
#s-skills .grid-layout #skills #skills-text h2 span {
    color: #986dff;
}
#s-skills .grid-layout #skills #skills-text .changeDescription {
    transition: 2s all ease;
}
@media screen and (max-width: 768px) {
    #s-skills .grid-layout #skills #skills-text .changeDescription {
        display: none;
    }
}
#s-skills .grid-layout #skills #skills-text p {
    max-width: 500px;
    line-height: 3.2rem;
    color: white;
    font-size: 1.8rem;
}
#s-skills .grid-layout #skills #skills-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
@media screen and (max-width: 1200px) {
    #s-skills .grid-layout #skills #skills-cards {
        margin-top: 48px;
    }
}
#s-skills .grid-layout #skills #skills-cards article {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    width: 20%;
    flex-grow: 1;
    height: 130px;
    background-color: #151515;
    position: relative;
    border: 1px solid #1f1f1f;
    border-radius: 4px;
    transition: 1s all ease;
}
#s-skills .grid-layout #skills #skills-cards article:hover {
    border: 1px solid #986dff;
}
@media screen and (max-width: 768px) {
    #s-skills .grid-layout #skills #skills-cards article {
        width: 40%;
    }
}
footer {
    width: 100%;
    height: auto;
    /* background-color: #151515; */
    color: #fff;
    padding: 24px 0px;
    background-color: #1e1331;
    background-image: linear-gradient(#000000, #542c9c8c);
}
footer .grid-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
footer p {
    font-size: 1.8rem;
}
footer p a {
    font-weight: 500;
    color: #986dff;
}
footer img {
    width: 32px;
}
footer div {
    display: flex;
    align-items: center;
    gap: 16px;
}
@media screen and (max-width: 1200px) {
    footer .grid-layout {
        text-align: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 48px;
    }
    footer .grid-layout div {
        display: none;
    }
}
.typewriter:after {
    content: "|";
    margin-left: 8px;
    opacity: 1;
    animation: blink 1s infinite;
    color: #986dff;
}
@keyframes blink {
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
.grid-layout {
    max-width: 1140px;
    margin: 0 auto;
} /*# sourceMappingURL=style.css.map */

.intervalCardReveal .img {
    width: 50%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-float i {
    transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
    transform: rotate(15deg) scale(1.1);
}

/* WhatsApp Tooltip */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.whatsapp-tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-5px);
}

/* WhatsApp Animation */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
}

@keyframes whatsappBounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* WhatsApp Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }

    .whatsapp-tooltip {
        right: 65px;
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }

    .whatsapp-tooltip {
        display: none; /* Hide tooltip on very small screens */
    }
}

/* WhatsApp Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .whatsapp-tooltip {
        background: rgba(255, 255, 255, 0.9);
        color: #333;
    }

    .whatsapp-tooltip::after {
        border-left-color: rgba(255, 255, 255, 0.9);
    }
}

/* WhatsApp Print Hide */
@media print {
    .whatsapp-float {
        display: none !important;
    }
}
