﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary: #3090db;
    --primary-dark: #2070c0;
    --primary-light: #e8f4fd;
    --primary-mid: #b3d9f5;
    --text: #0d1117;
    --text-muted: #64748b;
    --text-card: #6b8fa8;
    --border: #e2e8f0;
    --bg: #ffffff;
    --radius: 16px;
    --radius-sm: 10px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg);
    margin: 0;
}

.lp-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0.85rem 0;
}

.lp-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 1rem;
}

.lp-brand img {
    height: 28px;
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    border-radius: 8px;
    transition: color 0.15s, background 0.15s;
}

.lp-nav-links a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.btn-nav-login {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    padding: 0.45rem 1rem;
    transition: color 0.15s;
}

.btn-nav-login:hover {
    color: var(--primary);
}

.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    background: var(--primary);
    border-radius: 100px;
    padding: 0.55rem 1.25rem;
    text-decoration: none;
    transition: background 0.15s;
    white-space: nowrap;
}

.btn-nav-cta:hover {
    background: var(--primary-dark);
    color: #fff;
}

.lp-hero {
    padding: 5rem 0 4rem;
    background: #fff;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    border: 1.5px solid var(--border);
    border-radius: 100px;
    padding: 0.35rem 1rem;
    margin-bottom: 1.5rem;
}

.lp-hero-badge i {
    color: var(--primary);
}

.lp-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.lp-hero h1 .blue {
    color: var(--primary);
}

.lp-hero-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-width: 460px;
}

.lp-hero-checks {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lp-hero-checks li {
    font-size: 0.9rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lp-hero-checks li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: var(--primary);
    border-radius: 100px;
    padding: 0.85rem 2rem;
    text-decoration: none;
    transition: background 0.15s, transform 0.15s;
    box-shadow: 0 4px 16px rgba(48, 144, 219, 0.3);
}

.btn-hero-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-1px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    padding: 0.85rem 2rem;
    text-decoration: none;
    transition: border-color 0.15s, color 0.15s;
}

.btn-hero-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.lp-trust-small {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.lp-trust-small span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.lp-trust-small span::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
}

.hero-mockup-wrap {
    position: relative;
}

.browser-frame {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.browser-bar {
    background: #f1f5f9;
    border-bottom: 1px solid var(--border);
    padding: 0.55rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.browser-dots {
    display: flex;
    gap: 5px;
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-url {
    flex: 1;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.2rem 0.6rem;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 200px;
    margin: 0 auto;
}

.browser-url .url-blue {
    color: var(--primary);
    font-weight: 600;
}

.app-inner {
    display: flex;
    height: 320px;
}

.mini-sidebar {
    width: 140px;
    min-width: 140px;
    border-right: 1px solid var(--border);
    padding: 0.75rem 0;
    font-size: 0.7rem;
    overflow: hidden;
}

.mini-sidebar-label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #94a3b8;
    padding: 0.5rem 0.75rem 0.25rem;
}

.mini-sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    margin: 0 0.35rem;
    color: var(--text-muted);
    font-weight: 500;
    cursor: default;
}

.mini-sidebar-item.active {
    background: #e8f4fd;
    color: var(--primary);
    font-weight: 600;
}

.mini-sidebar-item i {
    font-size: 0.75rem;
}

.mini-dash {
    flex: 1;
    padding: 0.75rem;
    overflow: hidden;
    background: #f8fafc;
}

.mini-dash h4 {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.1rem;
}

.mini-dash p {
    font-size: 0.65rem;
    color: var(--text-muted);
    margin: 0 0 0.6rem;
}

.mini-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.35rem;
    margin-bottom: 0.35rem;
}

.mini-stat {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.4rem 0.5rem;
}

.mini-stat-label {
    font-size: 0.58rem;
    color: var(--text-muted);
    margin-bottom: 0.1rem;
}

.mini-stat-val {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
}

.mini-stats-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.35rem;
    margin-bottom: 0.5rem;
}

.mini-stat-big {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.45rem 0.5rem;
}

.mini-stat-big-label {
    font-size: 0.58rem;
    color: var(--text-muted);
}

.mini-stat-big-val {
    font-size: 0.78rem;
    font-weight: 700;
}

.mini-modules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.3rem;
}

.mini-module {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.5rem 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--primary);
}

.mini-module.notification {
    background: var(--primary-light);
    border-color: var(--primary-mid);
    flex-direction: column;
    font-size: 0.55rem;
    color: var(--text);
    font-weight: 600;
    gap: 0.15rem;
}

.mini-module.notification i {
    color: var(--primary);
    font-size: 0.7rem;
}

.lp-section {
    padding: 5rem 0;
}

.section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.lp-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    height: 100%;
    transition: box-shadow 0.2s;
}

.lp-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.card-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1.1rem;
    flex-shrink: 0;
}

.card-icon-circle.red {
    background: #fde8e8;
    color: #e53e3e;
}

.card-icon-circle.blue {
    background: var(--primary-light);
    color: var(--primary);
}

.card-icon-circle.blue-solid {
    background: var(--primary);
    color: #fff;
}

.card-title {
    font-size: 0.975rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.card-desc {
    font-size: 0.85rem;
    color: var(--text-card);
    line-height: 1.6;
    margin: 0;
}

.demo-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    height: 100%;
}

.demo-card-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.demo-card-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1.25rem;
    letter-spacing: -0.3px;
}

.demo-browser {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.demo-browser-bar {
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
    padding: 0.45rem 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.demo-browser-url {
    font-size: 0.68rem;
    color: var(--text-muted);
}

.demo-browser-url span {
    color: var(--primary);
    font-weight: 600;
}

.demo-orcamento {
    font-size: 0.82rem;
}

.demo-orc-header {
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.demo-orc-item {
    padding: 0.65rem 0.75rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.demo-orc-item-name {
    font-weight: 600;
    color: var(--text);
    font-size: 0.82rem;
}

.demo-orc-item-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.demo-orc-item-val {
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
}

.demo-orc-total {
    padding: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary-light);
}

.demo-orc-total-label {
    font-weight: 700;
    font-size: 0.85rem;
}

.demo-orc-total-val {
    font-weight: 800;
    font-size: 1rem;
    color: var(--primary);
}

.pdf-mockup {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    max-width: 580px;
    margin: 0 auto;
}

.pdf-header {
    background: #1b2a4a;
    color: #fff;
    text-align: center;
    padding: 0.9rem;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 3px;
}

.pdf-accent-line {
    height: 4px;
    background: linear-gradient(90deg, #e8a020, #f5c842);
}

.pdf-body {
    padding: 1.25rem 1.5rem;
}

.pdf-company-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.pdf-logo-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e8a020;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.pdf-company-name {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--text);
}

.pdf-company-cnpj {
    font-size: 0.72rem;
    color: var(--primary);
}

.pdf-info-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.pdf-info-row strong {
    color: var(--text);
}

.pdf-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.78rem;
}

.pdf-table thead tr {
    background: #1b2a4a;
    color: #fff;
}

.pdf-table th {
    padding: 0.55rem 0.6rem;
    text-align: left;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pdf-table td {
    padding: 0.5rem 0.6rem;
    border-bottom: 1px solid #f1f5f9;
    color: var(--text);
}

.pdf-table tr:nth-child(even) td {
    background: #f8fafc;
}

.pdf-table tfoot tr {
    background: #1b2a4a;
    color: #fff;
}

.pdf-table tfoot td {
    padding: 0.6rem;
    font-weight: 800;
    font-size: 0.85rem;
    border: none;
}

.comp-before {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
}

.comp-after {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    color: #fff;
}

.comp-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.comp-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.comp-before .comp-list li {
    color: #94a3b8;
}

.comp-after .comp-list li {
    color: rgba(255, 255, 255, 0.92);
}

.comp-before .comp-list li i {
    color: #ef4444;
    margin-top: 2px;
}

.comp-after .comp-list li i {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2px;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1rem;
    text-align: center;
}

.stat-num {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -1px;
}

.stat-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
    line-height: 1.4;
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    height: 100%;
    transition: box-shadow 0.2s;
}

.testimonial-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    margin-bottom: 0.9rem;
}

.testimonial-quote {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text);
}

.testimonial-company {
    font-size: 0.77rem;
    color: var(--text-muted);
}

.pricing-card {
    max-width: 440px;
    margin: 0 auto;
    background: #fff;
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 12px 40px rgba(48, 144, 219, 0.12);
}

.pricing-badge {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    border: 1px solid var(--primary-mid);
    border-radius: 100px;
    padding: 0.3rem 0.9rem;
    margin-bottom: 1rem;
}

.pricing-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.pricing-term {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.pricing-price {
    font-size: 3.25rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -2px;
    line-height: 1;
}

.pricing-price sup {
    font-size: 1.2rem;
    font-weight: 600;
    vertical-align: super;
    letter-spacing: 0;
}

.pricing-price-period {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
    letter-spacing: 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.75rem 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.pricing-features li {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text);
}

.pricing-features li i {
    color: var(--primary);
    font-size: 0.85rem;
}

.btn-pricing {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: var(--primary);
    border-radius: 100px;
    padding: 0.9rem 2rem;
    text-decoration: none;
    transition: background 0.15s;
    width: 100%;
}

.btn-pricing:hover {
    background: var(--primary-dark);
    color: #fff;
}

.pricing-trust {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.pricing-trust span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.pricing-trust i {
    color: var(--primary);
}

.lp-faq .accordion-item {
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-sm) !important;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.lp-faq .accordion-button {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    background: #fff;
    box-shadow: none;
    padding: 1.1rem 1.25rem;
    font-family: 'Inter', sans-serif;
}

.lp-faq .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: var(--primary-light);
    box-shadow: none;
}

.lp-faq .accordion-button::after {
    filter: none;
}

.lp-faq .accordion-button:not(.collapsed)::after {
    filter: invert(40%) sepia(80%) saturate(800%) hue-rotate(190deg);
}

.lp-faq .accordion-body {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    padding: 0.75rem 1.25rem 1.1rem;
    background: #fff;
    font-family: 'Inter', sans-serif;
}

.lp-final-cta {
    background: var(--primary);
    padding: 5rem 0;
    text-align: center;
}

.lp-final-cta h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 0.75rem;
}

.lp-final-cta p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 2rem;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    background: #fff;
    border-radius: 100px;
    padding: 0.9rem 2.25rem;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2);
    color: var(--primary-dark);
}

.lp-footer {
    background: #0d1117;
    color: #94a3b8;
    padding: 3rem 0 2rem;
}

.footer-brand img {
    height: 26px;
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 220px;
}

.footer-col-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #f8fafc;
    margin-bottom: 0.85rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.45rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: #f8fafc;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    font-size: 0.8rem;
    text-align: center;
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 991px) {
    .lp-hero {
        padding: 3.5rem 0 3rem;
    }

    .hero-right {
        margin-top: 2.5rem;
    }

    .lp-section {
        padding: 3.5rem 0;
    }
}

@media (max-width: 767px) {
    .lp-hero h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .app-inner {
        height: 240px;
    }

    .mini-sidebar {
        width: 100px;
        min-width: 100px;
    }
}

.whatsapp-fix {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    z-index: 9999;
    transition: transform 0.2s ease-in-out;
}

.whatsapp-fix:hover {
    transform: scale(1.1);
    color: white;
}