/* =========================================================
   VALACIA TECHNOLOGIES
   Main stylesheet
   ========================================================= */

/* 01. Variables & reset */
:root {
    --black: #28282B;
    --deep: #07090A;
    --cyan: #3DF2E0;
    --white: #F4F7F7;
    --muted: #A5B0B0;
    --line: rgba(255, 255, 255, .12);
    --ease: cubic-bezier(.22, 1, .36, 1);
    --max: 1240px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--deep);
    color: var(--white);
    font: 15px/1.65 Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(var(--max), calc(100% - 48px));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 105px 0;
}

/* 02. Global atmosphere */
.site-noise {
    position: fixed;
    inset: 0;
    z-index: 50;
    pointer-events: none;
    opacity: .025;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* 03. Header & navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(7, 9, 10, .88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(61, 242, 224, .1);
}

.nav-wrap {
    height: 82px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.brand span {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand b {
    font-size: 17px;
    letter-spacing: 2px;
}

.brand small {
    margin-top: 5px;
    color: var(--cyan);
    font-size: 9px;
    letter-spacing: 2.5px;
}

.desktop-nav {
    display: flex;
    gap: 30px;
    margin-left: auto;
}

.desktop-nav a {
    position: relative;
    padding: 30px 0;
    color: #D4DDDD;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 100%;
    bottom: 21px;
    left: 0;
    height: 2px;
    background: var(--cyan);
    transition: .3s;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--cyan);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    right: 0;
}

.nav-cta {
    padding: 11px 17px;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    font-size: 10px;
    letter-spacing: 1px;
}

.nav-cta:hover {
    background: var(--cyan);
    color: #061010;
}

.nav-cta i {
    margin-left: 9px;
    font-style: normal;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    padding: 5px;
    border: 0;
    background: transparent;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px;
    background: var(--cyan);
}

.mobile-nav {
    display: none;
}

/* 04. Hero */
.hero {
    position: relative;
    min-height: calc(100vh - 82px);
    padding: 70px 0 30px;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 48%, rgba(61, 242, 224, .08), transparent 27%),
        #080B0D;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .09;
    background-image: radial-gradient(circle, var(--cyan) 0 1px, transparent 2px);
    background-size: 50px 50px;
    mask-image: linear-gradient(90deg, black, transparent 38%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 44% 56%;
    align-items: center;
    min-height: 540px;
}

.hero-copy {
    position: relative;
    z-index: 3;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--cyan);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
    margin: 0;
    font-size: clamp(48px, 5.4vw, 78px);
    line-height: .98;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.hero h1 span,
h2 span,
.page-hero h1 span {
    color: var(--cyan);
}

.cyan-rule {
    width: 65px;
    height: 2px;
    margin: 24px 0;
    background: var(--cyan);
}

.hero-copy > p:not(.eyebrow) {
    max-width: 570px;
    color: #C2CCCC;
    font-size: 16px;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid var(--cyan);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: .35s var(--ease);
}

.btn b {
    font-size: 16px;
}

.btn.primary {
    background: var(--cyan);
    color: #061010;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(61, 242, 224, .2);
}

.btn:not(.primary):hover {
    background: var(--cyan);
    color: #061010;
}

.hero-visual {
    position: relative;
    display: grid;
    place-items: center;
    height: 550px;
}

.hero-logo {
    z-index: 3;
    width: min(390px, 56%);
    filter:
        drop-shadow(0 0 14px rgba(61, 242, 224, .55))
        drop-shadow(0 0 45px rgba(61, 242, 224, .18));
    animation: float 5s ease-in-out infinite;
}

.floor {
    position: absolute;
    bottom: 13%;
    width: 68%;
    height: 24%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(61, 242, 224, .3), transparent 65%);
    filter: blur(3px);
}

.ring {
    position: absolute;
    border: 1px solid rgba(61, 242, 224, .45);
    border-radius: 50%;
    transform: rotateX(65deg);
}

.r1 {
    bottom: 16%;
    width: 70%;
    height: 25%;
    animation: spin 18s linear infinite;
}

.r2 {
    bottom: 20%;
    width: 54%;
    height: 19%;
    border-style: dashed;
    animation: spinr 11s linear infinite;
}

.r3 {
    bottom: 23%;
    width: 40%;
    height: 14%;
    animation: pulse 3s ease-in-out infinite;
}

/* 05. About */
.about {
    background: #0A0E10;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about h2,
.heading h2,
.two-col h2,
.contact-grid h2 {
    margin: 0 0 20px;
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.05;
}

.about p,
.heading > p,
.two-col p,
.contact-grid > div > p:not(.eyebrow) {
    max-width: 670px;
    color: #AAB5B5;
}

.checks {
    margin: 25px 0;
    padding: 0;
    list-style: none;
}

.checks li {
    margin: 10px 0;
    font-size: 13px;
}

.checks li::before {
    content: "✓";
    display: inline-grid;
    width: 19px;
    height: 19px;
    margin-right: 10px;
    place-items: center;
    border: 1px solid var(--cyan);
    border-radius: 50%;
    color: var(--cyan);
    font-size: 10px;
}

.text-link {
    color: var(--cyan);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

/* About statistics */
.stats-panel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    min-height: 410px;
    border: 1px solid rgba(61, 242, 224, .28);
    background: #070A0B;
}

.stat {
    display: grid;
    min-height: 205px;
    position: relative;
    place-items: center;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.stat:nth-child(2n) {
    border-right: 0;
}

.stat:nth-child(n + 3) {
    border-bottom: 0;
}

.stat {
    align-content: center;
    justify-items: center;
    grid-template-rows: 42px auto auto;
    gap: 7px;
}

.stat-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: var(--cyan);
    opacity: .95;
}

.stat-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.stat strong {
    color: var(--white);
    font-size: clamp(46px, 5vw, 66px);
    font-weight: 500;
    line-height: 1;
    text-shadow: 0 0 28px rgba(61, 242, 224, .14);
}

.stat-label {
    color: #849191;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.4px;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

/* 06. Solutions */
.solutions {
    position: relative;
    overflow: hidden;
}

.hex {
    position: absolute;
    top: 120px;
    right: -80px;
    width: 300px;
    height: 300px;
    opacity: .14;
    background-image: radial-gradient(circle, var(--cyan) 0 2px, transparent 2.5px);
    background-size: 27px 27px;
}

.heading.center {
    text-align: center;
}

.heading.center > p {
    margin-inline: auto;
}

.cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 42px;
}

.card,
.detail {
    position: relative;
    min-height: 285px;
    padding: 30px 23px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    background: linear-gradient(180deg, #0D1719, #080B0C);
    transition: .45s var(--ease);
}

.card::before,
.detail::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: radial-gradient(circle at 50% 0, rgba(61, 242, 224, .14), transparent 45%);
    transition: .35s;
}

.card:hover,
.detail:hover {
    transform: translateY(-8px);
    border-color: rgba(61, 242, 224, .55);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.card:hover::before,
.detail:hover::before {
    opacity: 1;
}

.card i,
.detail i {
    position: relative;
    display: block;
    margin-bottom: 25px;
    color: var(--cyan);
    font-size: 32px;
    font-style: normal;
    line-height: 1;
}

.card h3,
.detail h3 {
    position: relative;
    font-size: 14px;
    line-height: 1.3;
}

.card p,
.detail p {
    position: relative;
    color: #818D8D;
    font-size: 12px;
}

.card a {
    position: absolute;
    bottom: 22px;
    left: 23px;
    color: var(--cyan);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

/* 07. Projects */
.recent-work {
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line);
    background: #060A0C;
}

.project-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 25px 0 28px;
}

.filter {
    padding: 9px 25px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 30px;
    background: transparent;
    color: #DBE2E2;
    cursor: pointer;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: .3s;
}

.filter:hover,
.filter.active {
    border-color: var(--cyan);
    background: var(--cyan);
    color: #061010;
}

.project-strip {
    display: grid;
    grid-auto-columns: 190px;
    grid-auto-flow: column;
    gap: 12px;
    overflow-x: auto;
    padding: 8px 2px 16px;
    scrollbar-width: thin;
}

.project-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 215px;
    padding: 20px 17px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    background: linear-gradient(180deg, #0A1518, #070B0D);
    transition: .4s var(--ease);
}

.project-card:hover {
    transform: translateY(-7px);
    border-color: rgba(61, 242, 224, .6);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .4);
}

.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: radial-gradient(circle at 50% 35%, rgba(61, 242, 224, .1), transparent 42%);
    transition: .3s;
}

.project-card:hover::after {
    opacity: 1;
}

.project-logo {
    position: absolute;
    top: 30px;
    left: 50%;
    z-index: 2;
    display: grid;
    width: 78px;
    height: 78px;
    place-items: center;
    transform: translateX(-50%);
}

.generic-logo {
    background: var(--cyan);
    color: #061010;
    clip-path: polygon(50% 0, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
    font-size: 34px;
    font-weight: 800;
}

.logo-b {
    clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
}

.logo-c {
    border: 3px solid var(--cyan);
    border-radius: 50%;
    background: transparent;
    color: var(--cyan);
    clip-path: none;
}

.logo-d {
    clip-path: polygon(50% 0, 100% 38%, 81% 100%, 19% 100%, 0 38%);
}

.logo-e {
    clip-path: polygon(0 20%, 80% 0, 100% 80%, 20% 100%);
}

.logo-f {
    clip-path: polygon(0 0, 100% 0, 75% 100%, 25% 100%);
}

.logo-g {
    border-radius: 16px;
    clip-path: none;
}

.logo-h {
    border: 2px solid var(--cyan);
    background: transparent;
    color: var(--cyan);
    clip-path: none;
}

.logo-i {
    width: 68px;
    height: 68px;
    transform: translateX(-50%) rotate(45deg);
}

.project-number {
    position: absolute;
    top: 11px;
    right: 13px;
    color: #526262;
    font-size: 8px;
    letter-spacing: 1px;
}

.project-card h3,
.project-card small {
    position: relative;
    z-index: 3;
}

.project-card h3 {
    margin: 0 0 2px;
    font-size: 11px;
    letter-spacing: .7px;
}

.project-card small {
    color: #7E8A8A;
    font-size: 8px;
    letter-spacing: 1px;
}

.project-card b {
    position: absolute;
    right: 15px;
    bottom: 15px;
    z-index: 3;
    color: var(--cyan);
    font-size: 20px;
}

.project-card.hidden {
    display: none;
}

.projects-more {
    margin-top: 25px;
    text-align: center;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.project-grid .project-card {
    min-height: 280px;
}

/* 08. CTA */
.cta {
    padding: 55px 0;
    background: #0A1012;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 36px 42px;
    border: 1px solid rgba(61, 242, 224, .25);
    background: radial-gradient(circle at 10% 50%, rgba(61, 242, 224, .08), transparent 30%);
}

.cta h2 {
    margin: 0 0 6px;
    font-size: clamp(28px, 3.2vw, 42px);
}

.cta p:not(.eyebrow) {
    margin: 0;
    color: #9DA8A8;
}

/* 09. Footer */
footer {
    padding-top: 55px;
    border-top: 1px solid var(--line);
    background: #060809;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr 1.3fr;
    gap: 45px;
    padding-bottom: 45px;
}

.footer-brand p {
    max-width: 280px;
    color: #7F8A8A;
    font-size: 12px;
}

.footer-grid h4 {
    margin: 8px 0 15px;
    color: var(--cyan);
    font-size: 9px;
    letter-spacing: 1.5px;
}

.footer-grid > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-grid a,
.footer-grid span {
    color: #A4AEAE;
    font-size: 11px;
}

.footer-grid a:hover {
    color: var(--cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    color: #596464;
    font-size: 9px;
}

/* 10. Internal pages */
.page-hero {
    padding: 125px 0 90px;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 75% 45%, rgba(61, 242, 224, .08), transparent 30%),
        #090C0E;
}

.page-hero h1 {
    margin-bottom: 22px;
}

.page-hero p:not(.eyebrow) {
    max-width: 760px;
    color: #AAB5B5;
    font-size: 18px;
}

.feature-panel {
    position: relative;
    display: grid;
    height: 410px;
    place-items: center;
    border: 1px solid rgba(61, 242, 224, .3);
    background:
        radial-gradient(circle, rgba(61, 242, 224, .12), transparent 38%),
        #080D0F;
}

.feature-panel img {
    width: 210px;
    filter: drop-shadow(0 0 22px rgba(61, 242, 224, .4));
}

.feature-panel small {
    position: absolute;
    bottom: 22px;
    left: 22px;
    color: #687777;
    letter-spacing: 2px;
}

.dark-section {
    border-block: 1px solid var(--line);
    background: #090C0E;
}

.principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.principle {
    padding: 35px;
    border: 1px solid var(--line);
    background: #0B1113;
}

.principle > small,
.detail > small {
    color: var(--cyan);
    letter-spacing: 2px;
}

.principle h3 {
    margin: 16px 0 3px;
    font-size: 32px;
}

.principle b {
    font-size: 11px;
}

.principle p {
    color: #818D8D;
    font-size: 12px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 42px;
}

.detail {
    min-height: 315px;
}

.detail > small {
    position: absolute;
    top: 18px;
    right: 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
}

.contact-grid h2 {
    margin-bottom: 18px;
}

.contact-list {
    display: grid;
    gap: 10px;
    margin-top: 32px;
}

.contact-list > a,
.contact-list > div {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 16px;
    border: 1px solid var(--line);
    background: #0B1113;
}

.contact-list > a:hover {
    border-color: rgba(61, 242, 224, .5);
}

.contact-list > b,
.contact-list > div > b {
    width: 30px;
    color: var(--cyan);
    font-size: 23px;
    text-align: center;
}

.contact-list small {
    display: block;
    color: #687575;
    font-size: 8px;
    letter-spacing: 1.5px;
}

.contact-list strong {
    font-size: 13px;
    font-weight: 500;
}

.form-wrap {
    padding: 34px;
    border: 1px solid rgba(61, 242, 224, .25);
    background: #0B1113;
}

.form-wrap form {
    display: grid;
    gap: 17px;
}

.form-wrap label {
    color: #9EAAAA;
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-wrap input,
.form-wrap textarea {
    display: block;
    width: 100%;
    margin-top: 7px;
    padding: 13px;
    outline: 0;
    border: 1px solid rgba(255, 255, 255, .14);
    background: #070A0B;
    color: #fff;
}

.form-wrap input:focus,
.form-wrap textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 2px rgba(61, 242, 224, .08);
}

.form-note {
    color: #637070;
    font-size: 9px;
}

/* 11. Motion */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: .8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

@keyframes pulse {
    0%, 100% {
        transform: rotateX(65deg) scale(.98);
        opacity: .6;
    }
    50% {
        transform: rotateX(65deg) scale(1.04);
        opacity: 1;
    }
}

@keyframes spin {
    to { transform: rotateX(65deg) rotateZ(360deg); }
}

@keyframes spinr {
    to { transform: rotateX(65deg) rotateZ(-360deg); }
}

/* 12. Responsive */
@media (max-width: 1050px) {
    .desktop-nav {
        gap: 18px;
    }

    .cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }

    .detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 800px) {
    .container {
        width: calc(100% - 32px);
    }

    .nav-wrap {
        height: 72px;
    }

    .desktop-nav,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-nav {
        position: absolute;
        top: 72px;
        right: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        padding: 10px 16px 18px;
        border-bottom: 1px solid rgba(61, 242, 224, .2);
        background: rgba(6, 8, 9, .98);
        transform: translateY(-130%);
        transition: .4s var(--ease);
    }

    .mobile-nav.open {
        transform: none;
    }

    .mobile-nav a {
        padding: 12px;
        font-size: 10px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

    .mobile-cta {
        margin-top: 6px;
        border: 1px solid var(--cyan);
        color: var(--cyan);
        text-align: center;
    }

    .section {
        padding: 75px 0;
    }

    .hero {
        min-height: auto;
        padding-top: 55px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        height: 390px;
    }

    .hero-logo {
        width: 260px;
    }

    .two-col,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cards {
        grid-template-columns: 1fr 1fr;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .page-hero {
        padding: 90px 0 70px;
    }

    .principles {
        grid-template-columns: 1fr;
    }

    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat {
        min-height: 170px;
    }
}

@media (max-width: 520px) {
    .brand-mark {
        width: 43px;
        height: 43px;
    }

    .brand b {
        font-size: 14px;
    }

    .brand small {
        font-size: 8px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 44px;
    }

    .hero-copy > p:not(.eyebrow) {
        font-size: 14px;
    }

    .hero-visual {
        height: 320px;
    }

    .hero-logo {
        width: 225px;
    }

    .cards,
    .detail-grid,
    .project-grid {
        grid-template-columns: 1fr;
    }

    .stats-panel {
        min-height: 0;
    }

    .stat {
        min-height: 130px;
    }

    .stat strong {
        font-size: 45px;
    }

    .stat-icon {
        width: 32px;
        height: 32px;
    }

    .stat-label {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .project-strip {
        grid-auto-columns: 205px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 7px;
    }

    .form-wrap {
        padding: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal,
    .hero-logo,
    .ring {
        animation: none;
        opacity: 1;
        transform: none;
        transition: none;
    }
}
/* =========================================================
   FLOATING WHATSAPP BUTTON
   ========================================================= */

.valacia-whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;

    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;

    border: 1px solid rgba(61, 242, 224, 0.75);
    border-radius: 50%;

    background: #3DF2E0;
    color: #061010;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.45),
        0 0 24px rgba(61, 242, 224, 0.25);

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.valacia-whatsapp-float svg {
    width: 29px;
    height: 29px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.valacia-whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);

    box-shadow:
        0 14px 35px rgba(0, 0, 0, 0.5),
        0 0 34px rgba(61, 242, 224, 0.42);
}

.valacia-whatsapp-float:focus-visible {
    outline: 2px solid #F4F7F7;
    outline-offset: 4px;
}

/* Mobile */
@media (max-width: 520px) {

    .valacia-whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
    }

    .valacia-whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}
