/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #a78bfa;
    --primary-dark: #9333ea;
    --secondary: #60a5fa;
    --secondary-dark: #3b82f6;
    --bg-dark: #000000;
    --bg-darker: #000000;
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
    --accent: #ec4899;
    --border-color: rgba(167, 139, 250, 0.1);
    --glow-color: rgba(167, 139, 250, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background: var(--bg-darker);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== GLOBAL ANCHOR STYLES ==================== */
a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2b683b, #38ff84);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 0.5rem;
}

.instagram-logo {
    margin-right: 0.5rem;
    display: inline-block;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary);
}

/* ==================== HAMBURGER MENU ==================== */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 5px;
    z-index: 101;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 60px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(167, 139, 250, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(96, 165, 250, 0.15) 0%, transparent 50%);
    animation: floating 20s ease-in-out infinite;
    overflow: hidden;
}

.particles::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(167, 139, 250, 0.8), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(96, 165, 250, 0.8), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(167, 139, 250, 0.6), transparent),
        radial-gradient(1px 1px at 80% 20%, rgba(96, 165, 250, 0.6), transparent),
        radial-gradient(2px 2px at 10% 80%, rgba(167, 139, 250, 0.7), transparent),
        radial-gradient(1px 1px at 40% 40%, rgba(96, 165, 250, 0.5), transparent);
    background-size: 200% 200%, 150% 150%, 180% 180%, 220% 220%, 160% 160%, 200% 200%;
    background-position: 0% 0%, 50% 50%, 25% 25%, 75% 75%, 10% 90%, 60% 40%;
    animation: particlesFloat 60s ease-in-out infinite;
}

@keyframes particlesFloat {
    0% {
        background-position: 0% 0%, 50% 50%, 25% 25%, 75% 75%, 10% 90%, 60% 40%;
    }
    25% {
        background-position: 10% 20%, 40% 60%, 35% 15%, 65% 85%, 20% 80%, 50% 50%;
    }
    50% {
        background-position: 20% 40%, 30% 70%, 45% 35%, 55% 65%, 30% 70%, 40% 60%;
    }
    75% {
        background-position: 10% 30%, 60% 40%, 15% 45%, 75% 55%, 15% 85%, 70% 30%;
    }
    100% {
        background-position: 0% 0%, 50% 50%, 25% 25%, 75% 75%, 10% 90%, 60% 40%;
    }
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}

.dot-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: none;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2b683b, #38ff84);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* ==================== BUTTONS ==================== */
.btn {
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #2b683b, #38ff84);
    color: white;
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(167, 139, 250, 0.5);
}

.btn-secondary {
    background: rgba(96, 165, 250, 0.1);
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-secondary:hover {
    background: rgba(96, 165, 250, 0.2);
    transform: translateY(-2px);
}

.btn-subscribe {
    width: 100%;
    margin-top: 2rem;
}

.btn-subscribe.featured {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

/* ==================== HERO STATS ==================== */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==================== TRUST BADGES SECTION ==================== */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 4rem;
    padding: 2.5rem;
    background: rgba(167, 139, 250, 0.08);
    border: 1px solid rgba(167, 139, 250, 0.15);
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.75rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: 0.875rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-3px);
    border-color: rgba(167, 139, 250, 0.4);
    background: rgba(167, 139, 250, 0.1);
    box-shadow: 0 0 25px rgba(167, 139, 250, 0.15);
}

.badge-icon {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
}

.badge-content {
    text-align: left;
}

.badge-number {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2b683b, #38ff84);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.badge-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ==================== SERVICES SECTION ==================== */
.services {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, rgba(167, 139, 250, 0.03) 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #2b683b, #38ff84);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(167, 139, 250, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(167, 139, 250, 0.2);
    transform: translateY(-5px);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(167, 139, 250, 0.1);
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==================== CLIENTS SECTION ==================== */
.clients {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(180deg, rgba(96, 165, 250, 0.02) 0%, rgba(167, 139, 250, 0.02) 100%);
}

.clients-grid {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    margin-top: 3rem;
    padding-bottom: 1rem;
    scroll-behavior: smooth;
}

.clients-grid::-webkit-scrollbar {
    height: 8px;
}

.clients-grid::-webkit-scrollbar-track {
    background: rgba(167, 139, 250, 0.1);
    border-radius: 10px;
}

.clients-grid::-webkit-scrollbar-thumb {
    background: rgba(56, 255, 132, 0.5);
    border-radius: 10px;
}

.clients-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(56, 255, 132, 0.7);
}

.client-card {
    background: rgba(167, 139, 250, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-width: 280px;
    flex-shrink: 0;
}

.client-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(167, 139, 250, 0.2);
}

.client-image {
    width: 100%;
    height: 250px;
    object-fit: contain;
    display: block;
    background: rgba(167, 139, 250, 0.05);
}

.client-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.client-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.clients-show-more {
    text-align: center;
    margin-top: 2rem;
    display: none;
}

/* ==================== PRICING SECTION ==================== */
.pricing {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(180deg, rgba(167, 139, 250, 0.03) 0%, rgba(96, 165, 250, 0.03) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: rgba(167, 139, 250, 0.05);
    border: 2px solid rgba(56, 255, 132, 0.5);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(167, 139, 250, 0.2);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2b683b, #38ff84);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2b683b, #38ff84);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.price-duration {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.75rem 0;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(167, 139, 250, 0.1);
    font-size: 0.95rem;
}

.features-list li:last-child {
    border-bottom: none;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(96, 165, 250, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
}

/* ==================== FOOTER ==================== */
footer {
    background: rgba(0, 0, 0, 0.95);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary);
}

.footer-section.contact-info span {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(167, 139, 250, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(167, 139, 250, 0.2);
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.2);
}

/* ==================== WHATSAPP FLOAT ==================== */
.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;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 50;
    border: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

/* ==================== MODAL ==================== */
.modal {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--bg-dark);
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    width: 90%;
    max-width: 500px;
    backdrop-filter: blur(10px);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.close {
    color: var(--text-muted);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--primary);
}

/* ==================== FORM STYLES ==================== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    background: rgba(167, 139, 250, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    color: var(--text-light);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(167, 139, 250, 0.2);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

/* ==================== SUCCESS MODAL ==================== */
.success-content {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

/* ==================== LOADING SPINNER ==================== */
.spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 4px solid rgba(167, 139, 250, 0.2);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 300;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.spinner.hidden {
    display: none;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }

    .navbar .container {
        position: relative;
    }

    .nav-links {
        gap: 0;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease, visibility 0.4s ease;
        z-index: 99;
        visibility: hidden;
    }

    .nav-links.active {
        max-height: 500px;
        padding: 1.5rem;
        visibility: visible;
    }

    .nav-links li {
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(167, 139, 250, 0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 0.5rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-stats {
        gap: 2rem;
    }

    .trust-badges {
        gap: 1rem;
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .trust-badge {
        flex: 0 0 calc(50% - 0.5rem);
        padding: 1rem 1.25rem;
    }

    .badge-icon {
        font-size: 2rem;
        min-width: 40px;
    }

    .badge-number {
        font-size: 1.1rem;
    }

    .badge-label {
        font-size: 0.75rem;
    }

    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .pricing {
        padding: 4rem 0;
    }

    .services {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-links {
        gap: 0.5rem;
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        margin-bottom: 2rem;
    }

    .modal-content {
        width: 95%;
        margin: 20% auto;
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .trust-badges {
        gap: 0.75rem;
        padding: 1rem;
        margin-top: 1.5rem;
    }

    .trust-badge {
        flex: 0 0 100%;
        padding: 0.875rem 1rem;
    }

    .badge-icon {
        font-size: 1.75rem;
        min-width: 35px;
    }

    .badge-number {
        font-size: 1rem;
    }

    .badge-label {
        font-size: 0.7rem;
    }

    .price {
        font-size: 2rem;
    }
}
