html {
    scroll-behavior: smooth;
}

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

:root {
    --primary-blue: #000040;
    --hero-bg: #01012E;
    --card-body-bg: #6565AE;
    --yellow: #F0BD04;
    --purple-text: #6565AE;
    --input-bg: #E3E3E3;
    --border-gray: #C4C4C4;
    --white: #FFFFFF;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #FFFFFF;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 152px;
    position: relative;
}

/* --- NAVBAR  --- */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    z-index: 5000;
}

.floating-nav {
    display: flex;
    align-items: center;
    padding: 12px 40px;
    border-radius: 999px;
    background: rgba(25, 27, 84, 0.6) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, 0));
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45), inset 0 1px 1px rgba(255, 255, 255, .12);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    position: relative;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #a3a3a3;
    text-decoration: none;
    transition: color .3s;
    padding: 4px 0;
}

.nav-link:hover {
    color: #fff;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: linear-gradient(to right, transparent, #38bdf8, transparent);
    opacity: 0;
    transform: scaleX(0);
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 0 8px rgba(56, 189, 248, .6);
}

.nav-link:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 850px;
    background-color: var(--hero-bg);
    background-image: url('./assets/IAHero.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 1, 46, 0.8);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    margin-top: 300px;
}

.hero-content h1 {
    font-weight: 900;
    font-size: 56px;
    line-height: 1.2;
    letter-spacing: 0.25px;
    color: #FFFFFF;
    max-width: 1000px;
}

.highlight-text {
    color: #8C8CFF;
}

.hero-content p {
    font-weight: 400;
    font-size: 26px;
    line-height: 1.4;
    letter-spacing: 0.25px;
    color: #FFFFFF;
    max-width: 850px;
}

/* --- SECTION VELOCIDADE --- */
.section-speed {
    background: #FFFFFF;
    padding: 100px 0;
    overflow: hidden;
}

.speed-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.speed-text {
    flex: 1;
    max-width: 640px;
}

.speed-text h2 {
    font-weight: 600;
    font-size: 40px;
    line-height: 1.2;
    color: var(--primary-blue);
    margin-bottom: 24px;
}

.speed-text .description {
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 30px;
    max-width: 100%;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-simple {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-simple i {
    color: var(--primary-blue);
    font-size: 22px;
}

.check-item span {
    font-size: 20px;
    color: #000000;
    line-height: 149%;
}

.check-item b {
    font-weight: 700;
}

.speed-images {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-full {
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0px 10px 30px rgba(0, 0, 0, 0.15));
}

@media (max-width: 991px) {
    .speed-grid {
        flex-direction: column;
        text-align: center;
    }

    .speed-text {
        max-width: 100%;
    }

    .check-item {
        justify-content: center;
        text-align: left;
    }

    .speed-images {
        margin-top: 40px;
        width: 100%;
    }
}

/* --- SECTION SOLUÇÕES --- */
.section-solutions {
    padding-bottom: 100px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h3 {
    font-weight: 600;
    font-size: 40px;
    line-height: 1.2;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.section-header p {
    font-size: 20px;
    line-height: 1.5;
    color: var(--primary-blue);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cards-grid {
    display: flex;
    gap: 27px;
    justify-content: center;
    flex-wrap: wrap;
}

.card-figma {
    width: 335px;
    height: 395px;
    background: var(--card-body-bg);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    position: relative;
    top: 0;
}

.card-figma:hover {
    transform: translateY(-10px);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.4);
}

.card-figma::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

.card-header {
    height: 99px;
    background: var(--primary-blue);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.bg-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    opacity: 0.4;
    mix-blend-mode: luminosity;
}

.card-header h4 {
    position: relative;
    z-index: 2;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 30px;
    line-height: 123%;
}

.card-body {
    padding: 20px;
    color: #FFFFFF;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body p {
    font-size: 17px;
    line-height: 1.4;
    margin-top: auto;
    margin-bottom: auto;
    text-align: left;
}

.tags {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: auto;
    align-items: flex-start;
}

.tag {
    background: rgba(0, 0, 102, 0.12);
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: auto;
    white-space: nowrap;
}

.icon-mini {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-mini i {
    font-size: 16px;
    color: #FFFFFF;
}

.section-tech {
    background-color: #6565AE;
    padding: 100px 0;
    position: relative;
}

.section-title-tech {
    font-weight: 600;
    font-size: 40px;
    line-height: 1.2;
    text-align: center;
    color: #000040;

    margin-bottom: 60px;
}

.tech-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.tech-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
}

.tech-card {
    border-radius: 12px;
    padding: 30px 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 250px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-card {
    background-image: linear-gradient(0deg, rgba(0, 0, 35, 0.90), rgba(0, 0, 35, 0.90)),
        url('./assets/IALOGO.png');

    color: #FFFFFF;

    border: 1px solid #000000;
}

.dark-card h5 {
    color: #FFFFFF;
}

.dark-card p {
    color: #E0E0E0;
}

.light-card {
    background-image: linear-gradient(0deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
        url('./assets/IAROBO.png');

    color: #000040;
    border: 1px solid #000000;
}

.light-card h5 {
    color: #000040;
}

.light-card p {
    color: #333333;
    font-weight: 500;
}

.tech-card h5 {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 15px;
}

.tech-card p {
    font-size: 18px;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .tech-cards-grid {
        grid-template-columns: 1fr;
    }
}

.section-result {
    background-color: #000040;
    padding: 0;
    overflow: hidden;
}

.result-full-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    min-height: 650px;
}

.result-image-full {
    width: 100%;
    height: 100%;
    position: -1;
}

.result-image-full img {
    width: 130% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center right;
    display: block;
}

.result-content-box {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 80px 10% 80px 60px;

    max-width: 750px;
}

.subtitle-purple {
    font-weight: 700;
    font-size: 18px;
    color: #8C8CFF;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.result-content-box h2 {
    font-weight: 600;
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #FFFFFF;
}

.result-content-box p {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.25px;
    margin-bottom: 40px;
    color: #E0E0E0;
}

.result-content-box p strong {
    color: #FFFFFF;
    font-weight: 700;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 14px 30px;
    font-size: 20px;
    color: #FFFFFF;
    font-weight: 500;
    line-height: 1;
    transition: all 0.3s ease;
    cursor: default;
}

.pill:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #FFFFFF;
}

@media (max-width: 991px) {
    .result-full-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .result-image-full {
        height: 300px;
    }

    .result-content-box {
        padding: 50px 30px;
        text-align: center;
        align-items: center;
    }

    .tags-cloud {
        justify-content: center;
    }
}

/* --- FORMULÁRIO --- */
.section-form {
    background-color: #FFFFFF;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.note-decoration {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    width: 700px;
    left: -280px;
    bottom: 40px;
    transition: all 0.5s ease;
}

.section-form .container {
    position: relative;
    z-index: 10;
}

@media (max-width: 1400px) {
    .note-decoration {
        width: 500px;
        left: -180px;
        bottom: 20px;
    }
}

@media (max-width: 1100px) {
    .note-decoration {
        width: 400px;
        left: -140px;
        bottom: 10px;
    }
}

@media (max-width: 991px) {
    .note-decoration {
        display: none;
    }
}

.form-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.form-header-center h2 {
    font-weight: 700;
    font-size: 36px;
    color: #000040;
    margin-bottom: 15px;
    line-height: 1.2;
}

.form-header-center p {
    font-size: 20px;
    color: #6565AE;
    font-weight: 500;
}

.form-wrapper-center {
    max-width: 800px;
    margin: 0 auto;
}

.form-row-dupla {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    color: #000040;
    margin-bottom: 8px;
    font-weight: 700;
}

/* --- INPUTS --- */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;

    background: #E3E3E3;
    border: 2px solid #C4C4C4;

    border-radius: 8px;
    color: #333333;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #6565AE;
    background: #FFFFFF;
}

.btn-submit {
    position: relative;
    width: 100%;
    padding: 18px;
    background-color: #000040;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    overflow: hidden;
    z-index: 1;
    animation: luzes-roxas-fortes 2s ease-in-out infinite;
    outline: 5px solid transparent;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.btn-submit::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(101, 101, 174, 0.4) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: brilho-central 2s ease-in-out infinite;
}

@keyframes luzes-roxas-fortes {

    0%,
    100% {
        box-shadow: inset 0 0 15px rgba(101, 101, 174, 0.3);
    }

    50% {
        box-shadow: inset 0 0 45px rgba(101, 101, 174, 0.8);
    }
}

@keyframes brilho-central {

    0%,
    100% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(0.8);
    }

    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-submit::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    z-index: -2;
    background: transparent;
}

.btn-submit:active {
    transform: translateY(-1px) scale(0.98);
}

@media (max-width: 991px) {

    .note-decoration {
        display: none;
    }
}

@media (max-width: 768px) {
    .form-row-dupla {
        grid-template-columns: 1fr;
    }

    .form-header-center h2 {
        font-size: 28px;
    }
}

/* ========= FOOTER ====== */
#footer {
    background: #000040;
    color: #ffffff;
    padding-top: 60px;
}

#footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#footer a {
    color: #E0E0E0;
    text-decoration: none;
    transition: color 0.3s;
}

#footer a:hover {
    color: #FFFFFF;
}

.footer-wrapper-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding-bottom: 40px;
    flex-wrap: wrap;
}

.logo-phone {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-phone img {
    width: 90px;
    height: auto;
    border-radius: 0;
    margin-bottom: 25px;
    display: block;
}

.phone-email-block p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 8px;
}

.footer-content {
    flex: 2;
    text-align: center;
}

.adress {
    display: flex;
    justify-content: center;
    gap: 30px;
    text-align: left;
}

.adress p {
    font-size: 14px;
    line-height: 24px;
    color: #E0E0E0;
}

.socials-medias {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.btn-footer-link {
    display: inline-block;
    padding: 12px 30px;
    background: #F0BD04;
    border: 1px solid #FFFFFF;
    color: #FFFFFF !important;
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;

    text-decoration: none;
    white-space: nowrap;
}

.btn-footer-link:hover {
    box-shadow: 0 0 20px rgba(240, 189, 4, 0.8);
}

.footer-icons-group {
    display: flex;
    gap: 15px;
}

.footer-icons-group a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    text-decoration: none;
    display: inline-block;
    padding: 5px;
}

.footer-icons-group a i {
    transition: all 0.3s ease;
}

.footer-icons-group a:hover i {
    color: #FFFFFF;
    transform: translateY(-5px);
}

.footer-icons-group a:hover {
    color: #FFFFFF;
}

/* --- COPYRIGHT --- */
.fim {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 0;
    text-align: center;
    clear: both;
}

.fim p {
    font-size: 14px;
    color: #FFFFFF;
    margin: 0;
}

@media (max-width: 991px) {
    .footer-wrapper-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .logo-phone,
    .footer-content,
    .socials-medias {
        width: 100%;
        align-items: center;
    }

    .logo-phone {
        text-align: center;
    }

    .adress {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .socials-medias {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .navbar-container {
        height: auto;
        padding-bottom: 10px;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .nav-links a {
        font-size: 16px;
    }
}

/* ================= POPUP ================= */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
}

.popup-content {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.popup-title {
    font-size: 24px;
    font-weight: 700;
    color: #000040;
    margin-bottom: 10px;
}

.popup-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.btn-popup-close {
    background-color: #000040;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 16px;
}

.btn-popup-close:hover {
    background-color: #6565AE;
}

.glow-purple {
    color: #8C8CFF;
    font-weight: 900;

    text-shadow: 0 0 15px rgba(140, 140, 255, 0.7),
        0 0 5px rgba(140, 140, 255, 0.5);
}

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */

@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 991px) {

    .container {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 38px;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 20px;
    }

    .speed-grid {
        flex-direction: column;
        text-align: center;
    }

    .cards-grid {
        gap: 20px;
    }

    .result-full-grid {
        grid-template-columns: 1fr;
    }

    .result-image-full {
        height: 350px;
    }

    .result-content-box {
        padding: 40px 20px;
        text-align: center;
        max-width: 100%;
    }

    .tags-cloud {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 16px;
    }

    .hero-content {
        margin-top: 180px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .speed-text h2 {
        font-size: 32px;
    }

    .form-row-dupla {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {

    .card-figma {
        width: 100%;
        height: auto;
    }

    .tech-card h5 {
        font-size: 24px;
    }

    .btn-submit {
        font-size: 18px;
    }
}


@media (max-width: 768px) {
    .navbar {
        width: 90% !important;
        top: 20px !important;
    }

    .floating-nav {
        padding: 10px 15px !important;
        justify-content: center;
    }

    .nav-links {
        gap: 15px !important;
    }

    .nav-link {
        font-size: 14px !important;
    }

    .nav-link::after {
        bottom: -2px !important;
        height: 1px !important;
    }
}

@media (max-width: 380px) {
    .nav-links {
        gap: 10px !important;
    }

    .nav-link {
        font-size: 13px !important;
    }
}

.btn-hero-cta {
    display: inline-block;
    margin-top: 35px;
    padding: 14px 42px;
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(217, 191, 241, 0.5);
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero-cta:hover {
    background-color: rgba(101, 101, 174, 0.);
    border-color: rgba(101, 101, 174, 0.8);
    box-shadow: 0 0 25px rgba(101, 101, 174, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .btn-hero-cta {
        margin-top: 25px;
        padding: 12px 34px;
        font-size: 15px;
        letter-spacing: 0.9px;
        border-radius: 50px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    }
}

.floating-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.floating-nav .nav-link img {
    display: block;
    width: 35px;
    height: auto;
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .floating-nav .nav-links {
        gap: 20px;
    }

    .floating-nav .nav-link img {
        width: 45px;
    }

    .floating-nav .nav-link img:hover {
        transform: scale(1.1);
    }
}

@media (max-width: 480px) {
    .floating-nav .nav-links {
        gap: 10px !important;
        justify-content: center;
        width: 100%;
        padding: 0 5px;
    }

    .floating-nav .nav-link {
        font-size: 14px !important;
        padding: 5px 2px !important;
    }

    .floating-nav .nav-link img {
        width: 27.5px !important;
    }
}

.lang-switcher {
    display: flex;
    align-items: center;
    margin-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 15px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px !important;
    text-transform: uppercase;
}

.lang-icon {
    width: 20px !important;
    height: auto;
    border-radius: 2px;
}

@media (max-width: 480px) {

    .floating-nav .nav-links {
        gap: 6px !important;
        flex-wrap: nowrap !important;
        display: flex !important;
        width: 100% !important;
        justify-content: center !important;
    }

    .floating-nav .nav-link {
        font-size: 14px !important;
        padding: 5px 0 !important;
        flex-shrink: 1;
    }

    .lang-switcher {
        margin-left: 4px !important;
        padding-left: 6px !important;
        flex-shrink: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.2);
    }

    .floating-nav .nav-link img.lang-icon {
        width: 16px !important;
        min-width: 16px !important;
        max-width: 16px !important;
        height: auto !important;
    }

    .lang-btn span {
        display: none !important;
    }
}