:root {
    --bg-main: #ffffff;
    --bg-sec: #f5f5f7;
    --text-main: #1d1d1f;
    --text-sec: #6e6e73;
    --accent: #0071e3;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --border: rgba(0, 0, 0, 0.06);
    --font-heading: 'Outfit', sans-serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.12);
    --transition-smooth: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Adicionada variável faltante usada no código original */
    --transition: 0.3s ease;
    --primary-color: #0071e3;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.bg-secondary {
    background-color: var(--bg-sec);
}

a {
    color: var(--text-main);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--accent);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
}

h2 {
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

h3 {
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 600;
    line-height: 1.3;
}

p {
    font-size: clamp(16px, 1.2vw, 18px);
    color: var(--text-sec);
    margin-bottom: 24px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Navbar */
.navbar {
    background: var(--glass-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all var(--transition-smooth);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.03em;
    z-index: 2;
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
}

.nav-links a.active {
    color: var(--accent);
}

.btn {
    display: inline-block;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all var(--transition);
}

.btn-primary {
    background: linear-gradient(180deg, #1d1d1f, #000);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.btn-primary:active {
    transform: scale(0.98);
}

/* Animação do Botão */
.button {
    position: relative;
    padding: 10px 24px;
    border-radius: 25px;
    border: none;
    color: #fff;
    cursor: pointer;
    background-color: var(--text-main);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    z-index: 2;
    text-decoration: none;
    display: inline-block;
}

.button:active {
    transform: scale(0.96);
}

.button:hover {
    background: linear-gradient(135deg, #60a5fa, #2563eb);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.button:before,
.button:after {
    position: absolute;
    content: "";
    width: 150%;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
    z-index: -1;
    background-repeat: no-repeat;
}

.button:hover:before {
    top: -70%;
    background-image: radial-gradient(circle, #2563eb 20%, transparent 20%),
        radial-gradient(circle, transparent 20%, #2563eb 20%, transparent 30%),
        radial-gradient(circle, #2563eb 20%, transparent 20%),
        radial-gradient(circle, #2563eb 20%, transparent 20%),
        radial-gradient(circle, transparent 10%, #2563eb 15%, transparent 20%),
        radial-gradient(circle, #2563eb 20%, transparent 20%),
        radial-gradient(circle, #2563eb 20%, transparent 20%),
        radial-gradient(circle, #2563eb 20%, transparent 20%),
        radial-gradient(circle, #2563eb 20%, transparent 20%);
    background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
    background-position: 50% 120%;
    animation: greentopBubbles 0.6s ease;
}

@keyframes greentopBubbles {
    0% {
        background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
    }

    50% {
        background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
    }

    100% {
        background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

.button:hover::after {
    bottom: -70%;
    background-image: radial-gradient(circle, #2563eb 20%, transparent 20%),
        radial-gradient(circle, #2563eb 20%, transparent 20%),
        radial-gradient(circle, transparent 10%, #2563eb 15%, transparent 20%),
        radial-gradient(circle, #2563eb 20%, transparent 20%),
        radial-gradient(circle, #2563eb 20%, transparent 20%),
        radial-gradient(circle, #2563eb 20%, transparent 20%),
        radial-gradient(circle, #2563eb 20%, transparent 20%);
    background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
    background-position: 50% 0%;
    animation: greenbottomBubbles 0.6s ease;
}

@keyframes greenbottomBubbles {
    0% {
        background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
    }

    50% {
        background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
    }

    100% {
        background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
        background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    background-color: var(--bg-main);
}

.video-wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
}

.infinite-grid-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.grid-layer {
    position: absolute;
    inset: 0;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(to right, var(--text-sec) 1px, transparent 1px),
        linear-gradient(to bottom, var(--text-sec) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: grid-move 3s linear infinite;
}

.layer-base {
    opacity: 0.05;
}

.layer-mask {
    opacity: 0.4;
    mask-image: radial-gradient(300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), black, transparent);
    -webkit-mask-image: radial-gradient(300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), black, transparent);
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-40px, -40px);
    }
}

.grid-bg-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.orb-1 {
    width: 40vw;
    height: 40vw;
    right: -10%;
    top: -20%;
    background: rgba(255, 120, 50, 0.2);
}

.orb-2 {
    width: 20vw;
    height: 20vw;
    right: 10%;
    top: -10%;
    background: rgba(0, 113, 227, 0.15);
}

.orb-3 {
    width: 40vw;
    height: 40vw;
    left: -10%;
    bottom: -20%;
    background: rgba(0, 150, 255, 0.15);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-main);
    max-width: 800px;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-subtitle {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-sec);
    margin-bottom: 24px;
}

.hero-content h1 {
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.05;
    font-size: clamp(48px, 6vw, 90px);
}

.hero-content p {
    margin-top: 24px;
    margin-bottom: 40px;
}

.hero-scroll-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-weight: 500;
    font-size: 15px;
    color: var(--text-main);
    transition: transform var(--transition-fast);
}

.hero-scroll-btn:hover {
    transform: translateY(4px);
}

.hero-scroll-btn .arrow-down {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--text-main);
    color: var(--bg-main);
    border-radius: 50%;
    font-size: 14px;
}

/* Cards Generics */
.card {
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff, #f3f3f3);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    padding: 40px;
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.6), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-hover);
}

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

/* Sobre */
.sobre-wrapper {
    display: flex;
    align-items: left;
    gap: 4rem;
    padding: 2rem 0;
}

.sobre-content {
    flex: 1.4;
}

.sobre-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.sobre-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.sobre-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.sobre-image {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.photo-frame {
    position: relative;
    width: 100%;
    max-width: 350px;
}

.photo-frame img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 20px 20px 0px -5px var(--primary-color);
    transition: transform 0.3s ease;
}

.photo-frame img:hover {
    transform: translate(5px, 5px);
    box-shadow: 10px 10px 0px -5px var(--primary-color);
}

/* Projetos */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.apple-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ff6b35;
    margin-bottom: 10px;
    display: inline-block;
}

.card-img-wrapper {
    position: relative;
    border-radius: 20px;
    background: #f5f5f7;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.02);
    margin-bottom: 25px;
    overflow: hidden;
    height: 250px;
}

.apple-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.8s ease;
}

.apple-card:hover img {
    transform: scale(1.08) translateY(10px);
}

.apple-card h3 {
    font-size: 22px;
    color: #1d1d1f;
    margin-bottom: 15px;
    line-height: 1.2;
}

.apple-card p {
    font-size: 15px;
    color: #6e6e73;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Estilo Modernizado para os links dos Cards */
.btn-link {
    background-color: transparent;
    /* Remove o fundo sólido pesado */
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-purple);
    /* Usa a cor de destaque do seu tema */
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* Espaço para uma seta ou ícone */
    position: relative;
    padding: 5px 0;
}

/* Efeito de linha animada embaixo do texto */
.btn-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-purple);
    transition: var(--transition);
}

.btn-link:hover {
    transform: translateX(5px);
    /* Movimento suave para a direita */
    color: #3325f5;
    /* Opcional: muda para branco no hover */
}

.btn-link:hover::after {
    width: 100%;
    /* A linha cresce ao passar o mouse */
}

/* Ajuste para a variante 'light' */
.btn-link.light {
    color: var(--text-dim);
}

/* Organização da Grade */
.resultados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    align-items: stretch;
    /* Garante que todos os cards tenham a mesma altura */
}

/* Estilo Base para todos os cards da seção */
.feedback-card,
.case-card,
.metric-card {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 28px;
    color: #f8fafc;
    transition: transform 0.3s ease;
}

.case-card:hover,
.metric-card:hover {
    transform: translateY(-8px);
}

/* Ajustes Específicos do Card de Case */
.case-badge {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 100px;
    width: fit-content;
    margin-bottom: 15px;
}

.case-card h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.comp-box {
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
}

.comp-box span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.before span {
    color: #64748b;
}

.after span {
    color: #3b82f6;
}

.arrow {
    text-align: center;
    color: #3b82f6;
    padding: 5px 0;
    font-weight: bold;
}

/* Ajustes Específicos do Card de Métricas */
.metric-card {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: center;
}

.metric-item .number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #3b82f6;
    display: block;
}

.metric-item .label {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Habilidades */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.skill-category h3 {
    margin-bottom: 24px;
    font-size: 20px;
}

.skill-category ul {
    list-style: none;
}

.skill-category li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-sec);
    font-size: 15px;
}

.skill-category li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Contato */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.contact-links a {
    color: var(--text-sec);
    font-weight: 500;
}

.contact-links a:hover {
    color: var(--accent);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background-color: var(--bg-main);
    font-family: inherit;
    font-size: 16px;
    color: var(--text-main);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

footer p {
    margin: 0;
    font-size: 14px;
}

/* Feedback Card */
.feedback-card {
    max-width: 380px;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 24px;
    color: #f8fafc;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.feedback-card:hover {
    transform: translateY(-8px);
    border-color: #3b82f6;
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.25);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.client-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, 0.3);
    object-fit: cover;
}

.info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    transition: opacity 0.2s ease;
}

.info a:hover {
    opacity: 0.7;
}

.info .name,
.info .handle {
    color: #ffffff !important;
    font-size: 14px;
    line-height: 1.2;
}

.info .name {
    font-weight: 700;
}

.info .handle {
    font-weight: 400;
}

.info svg {
    flex-shrink: 0;
    color: #ffffff;
    stroke: #ffffff;
}

.verified-badge {
    color: #3b82f6;
}

.card-body p {
    font-size: 15px;
    line-height: 1.6;
    color: #cbd5e1;
    margin: 0;
}

.card-body strong {
    color: #fff;
    font-weight: 600;
}

.card-footer {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    font-weight: 700;
}

.stars {
    color: #fbbf24;
    font-size: 12px;
    letter-spacing: 2px;
}

/* Utility Classes */
.bg-fafafa {
    background-color: #FAFAFA;
}

.soft-shadow {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.glassmorphism {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-apple-action {
    background-color: #007AFF;
    color: #FFF;
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 500;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-apple-action:hover {
    background-color: #0062cc;
    transform: scale(0.98);
}

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

.w-100 {
    width: 100%;
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.align-center {
    align-items: center;
}

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

/* Margins/Paddings */
.py-5 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-4 {
    margin-bottom: 32px;
}

.mt-4 {
    margin-top: 32px;
}

.gap-4 {
    gap: 32px;
}

/* Media Queries Agrupadas */
@media (max-width: 1023px) {
    .section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .sobre-wrapper {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }

    .sobre-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .photo-frame {
        max-width: 250px;
    }

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

    .apple-card {
        margin: 0 10px;
    }
}

@media (max-width: 767px) {

    .nav-links,
    .cta-btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .container {
        padding: 0 24px;
    }

    .section {
        padding: 60px 0;
    }

    .about-badges {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .apple-card-actions {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-top: auto;
        padding-top: 10px;
    }

    .btn-apple-primary {
        background-color: #0071e3;
        color: #ffffff !important;
        padding: 8px 18px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease;
        border: none;
        display: inline-block;
    }

    .btn-apple-primary:hover {
        background-color: #0077ed;
        transform: scale(1.03);
    }

    .btn-link {
        background-color: rgba(0, 113, 227, 0.1);
        color: #0071e3 !important;
        padding: 8px 18px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease;
        display: inline-block;
    }

    .btn-link:hover {
        background-color: rgba(0, 113, 227, 0.15);
        color: #0077ed !important;
    }

    .style-dark-btn {
        background-color: #ffffff;
        color: #1d1d1f !important;
    }

    .btn-link.light {
        background-color: rgba(255, 255, 255, 0.1);
        color: #ffffff !important;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .btn-link.light:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }
}