/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00D4FF;
    --primary-dark: #0099CC;
    --secondary: #F2C811;
    --accent: #667eea;
    --bg-dark: #0a0e27;
    --bg-card: rgba(15, 23, 60, 0.85);
    --text-light: #ffffff;
    --text-muted: #a0aec0;
    --success: #10B981;
    --gradient-1: linear-gradient(135deg, #00D4FF 0%, #0099CC 50%, #006699 100%);
    --gradient-2: linear-gradient(135deg, #F2C811 0%, #FFD700 100%);
    --gradient-3: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Image */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/background.png') center center / cover no-repeat;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 14, 39, 0.85) 0%, 
        rgba(10, 14, 39, 0.7) 50%,
        rgba(10, 14, 39, 0.85) 100%);
    z-index: -1;
}

/* Particles */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.5;
    animation: float-particle 15s infinite ease-in-out;
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Floating Icons */
.floating-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.float-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.float-icon svg {
    width: 100%;
    height: 100%;
}

.excel-icon {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.powerbi-icon {
    top: 60%;
    right: 8%;
    animation-delay: 2s;
}

.chart-icon {
    bottom: 20%;
    left: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Main Container */
.main-container {
    display: flex;
    min-height: calc(100vh + 60px);
    padding: 40px 60px 100px;
    gap: 50px;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

/* Content Side */
.content-side {
    flex: 1;
    max-width: 600px;
}

/* Top Badges Container */
.top-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

/* Event Date Banner */
.event-date-banner {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 50px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.25);
}

.date-icon {
    font-size: 0.85rem;
}

.date-text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.date-text strong {
    color: var(--primary);
    font-weight: 600;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 59, 48, 0.15);
    border: 1px solid rgba(255, 59, 48, 0.3);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #FF3B30;
    margin-bottom: 0;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #FF3B30;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subheadline {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.subheadline strong {
    color: var(--text-light);
}

.subheadline .highlight {
    color: var(--primary);
    font-weight: 600;
}

.subheadline .emphasis {
    color: var(--secondary);
    font-weight: 600;
}

/* Highlight Box */
.highlight-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(242, 200, 17, 0.12) 0%, rgba(242, 200, 17, 0.05) 100%);
    border: 1px solid rgba(242, 200, 17, 0.25);
    border-left: 3px solid var(--secondary);
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.highlight-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.highlight-box p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-light);
}

.highlight-box strong {
    color: var(--secondary);
}

/* Features */
.features {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 8px 14px;
    border-radius: 50px;
    white-space: nowrap;
    font-size: 0.9rem;
    color: var(--text-light);
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

/* Form Side */
.form-side {
    flex: 0 0 340px;
}

.form-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 22px 20px;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    overflow: hidden;
}

.form-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    animation: rotate-glow 10s linear infinite;
    pointer-events: none;
}

@keyframes rotate-glow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.form-header {
    text-align: center;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.form-header h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.free-badge {
    display: inline-block;
    background: var(--gradient-2);
    color: #000;
    padding: 2px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-left: 8px;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.form-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Form Inputs */
.capture-form {
    position: relative;
    z-index: 1;
}

.input-group {
    position: relative;
    margin-bottom: 12px;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: color 0.3s ease;
    z-index: 2;
}

.input-group input {
    width: 100%;
    padding: 12px 12px 12px 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    position: relative;
}

.input-group input::placeholder {
    color: var(--text-muted);
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.05);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

.input-group input:focus + .input-highlight {
    opacity: 1;
}

.input-group:focus-within .input-icon {
    color: var(--primary);
}

.input-highlight {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: all 0.3s ease;
    opacity: 0;
}

.input-group input:focus ~ .input-highlight {
    width: 100%;
    left: 0;
    opacity: 1;
}

/* WhatsApp Icon Special */
.whatsapp-icon {
    color: #25D366;
}

/* Form Note */
.form-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 24px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.info-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--primary);
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 12px 20px;
    background: var(--gradient-1);
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.avatars {
    display: flex;
}

.avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    border: 2px solid var(--bg-dark);
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

.social-proof p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.social-proof strong {
    color: var(--success);
}

/* Countdown Bar */
.countdown-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, rgba(10, 14, 39, 0.95) 0%, rgba(20, 30, 70, 0.95) 100%);
    border-top: 1px solid rgba(0, 212, 255, 0.3);
    padding: 10px 30px;
    z-index: 100;
    backdrop-filter: blur(20px);
}

.countdown-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.countdown-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 6px;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 5px 10px;
    border-radius: 6px;
    min-width: 45px;
}

.time-block span {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    font-variant-numeric: tabular-nums;
}

.time-block small {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.separator {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.animate-scale-in {
    animation: scaleIn 0.8s ease forwards;
    opacity: 0;
    transform: scale(0.95);
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .main-container {
        flex-direction: column;
        padding: 30px 24px 120px;
        gap: 30px;
        min-height: auto;
    }

    .content-side {
        text-align: center;
        max-width: 100%;
    }

    .headline {
        font-size: 2.5rem;
    }

    .form-side {
        flex: none;
        width: 100%;
        max-width: 400px;
    }

    .features {
        justify-content: center;
    }

    .highlight-box {
        text-align: left;
    }

    .badge {
        margin-bottom: 16px;
    }

    .event-date-banner {
        padding: 6px 12px;
    }

    .floating-icons {
        display: none;
    }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
    body::before {
        background-position: 65% top;
        background-size: cover;
    }

    body::after {
        background: linear-gradient(180deg, 
            rgba(10, 14, 39, 0.75) 0%, 
            rgba(10, 14, 39, 0.85) 30%,
            rgba(10, 14, 39, 0.95) 100%);
    }

    .main-container {
        padding: 24px 20px 160px;
        gap: 20px;
        min-height: auto;
    }

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

    .top-badges {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0px;
        margin-bottom: 130px;
        padding-top: 15px;
    }

    .event-date-banner {
        padding: 8px 16px;
        gap: 6px;
        border-radius: 50px;
    }

    .badge {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .date-icon {
        font-size: 0.9rem;
    }

    .date-text {
        font-size: 0.85rem;
    }

    .pulse-dot {
        width: 8px;
        height: 8px;
    }

    .headline {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 18px;
        margin-top: 20px;
    }

    .gradient-text {
        display: block;
    }

    .subheadline {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 20px;
        color: rgba(255, 255, 255, 0.85);
    }

    .subheadline strong {
        color: #fff;
    }

    .highlight-box {
        padding: 10px 14px;
        margin-bottom: 16px;
        border-radius: 10px;
        text-align: left;
    }

    .highlight-box p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .highlight-icon {
        font-size: 1.1rem;
    }

    .features {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 6px;
        margin-bottom: 10px;
        flex-wrap: wrap;
    }

    .feature-item {
        padding: 6px 10px;
        font-size: 0.7rem;
        background: rgba(16, 185, 129, 0.15);
        gap: 5px;
    }

    .feature-icon {
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
    }

    .form-side {
        max-width: 100%;
        width: 100%;
    }

    .form-card {
        padding: 24px 20px;
        border-radius: 20px;
        background: rgba(15, 23, 60, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .form-header {
        margin-bottom: 20px;
    }

    .form-header h2 {
        font-size: 1.2rem;
    }

    .form-header p {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .free-badge {
        font-size: 0.75rem;
        padding: 3px 10px;
    }

    .input-group {
        margin-bottom: 14px;
    }

    .input-group input {
        padding: 16px 16px 16px 48px;
        font-size: 1rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .input-group input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .input-icon {
        width: 20px;
        height: 20px;
        left: 16px;
    }

    .form-note {
        font-size: 0.8rem;
        padding: 12px;
        margin-bottom: 18px;
        background: rgba(0, 212, 255, 0.08);
        border-radius: 10px;
        line-height: 1.5;
    }

    .info-icon {
        width: 18px;
        height: 18px;
    }

    .submit-btn {
        padding: 18px 24px;
        font-size: 1rem;
        border-radius: 14px;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    .btn-icon {
        width: 22px;
        height: 22px;
    }

    .social-proof {
        margin-top: 18px;
        padding-top: 18px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .social-proof p {
        font-size: 0.85rem;
    }

    .avatar {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
        margin-left: -8px;
    }

    .countdown-bar {
        padding: 10px 16px;
        background: linear-gradient(90deg, rgba(10, 14, 39, 0.98) 0%, rgba(20, 30, 70, 0.98) 100%);
    }

    .countdown-content {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
        align-items: center;
    }

    .countdown-label {
        font-size: 0.65rem;
        text-align: center;
        font-weight: 600;
        width: auto;
        margin-right: 4px;
    }

    .countdown-timer {
        gap: 4px;
        justify-content: center;
    }

    .time-block {
        padding: 6px 8px;
        min-width: 40px;
        background: rgba(0, 212, 255, 0.12);
        border: 1px solid rgba(0, 212, 255, 0.35);
        border-radius: 6px;
    }

    .time-block span {
        font-size: 1rem;
        font-weight: 800;
    }

    .time-block small {
        font-size: 0.55rem;
        margin-top: 1px;
    }

    .separator {
        font-size: 1rem;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 380px) {
    .main-container {
        padding: 20px 16px 150px;
    }

    .headline {
        font-size: 1.7rem;
    }

    .subheadline {
        font-size: 0.95rem;
    }

    .form-card {
        padding: 20px 16px;
    }

    .input-group input {
        padding: 14px 14px 14px 44px;
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 16px 20px;
        font-size: 0.95rem;
    }

    .time-block {
        min-width: 48px;
        padding: 8px 10px;
    }

    .time-block span {
        font-size: 1.15rem;
    }

    .features {
        flex-direction: column;
    }

    .feature-item {
        width: 100%;
        justify-content: center;
    }
}

/* Success State */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success .success-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: success-pop 0.5s ease;
}

.form-success .success-icon svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

@keyframes success-pop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--success);
}

.form-success p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Loading State */
.submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.submit-btn.loading .btn-text {
    opacity: 0;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Input Validation */
.input-group.error input {
    border-color: #FF3B30;
    background: rgba(255, 59, 48, 0.05);
}

.input-group.success input {
    border-color: var(--success);
    background: rgba(16, 185, 129, 0.05);
}

/* Footer */
.site-footer {
    background: rgba(10, 14, 39, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px 90px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-cnpj {
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.8;
}

@media (max-width: 640px) {
    .site-footer {
        padding: 30px 16px 90px;
    }
    
    .footer-logo {
        width: 32px;
        height: 32px;
    }
    
    .footer-name {
        font-size: 1rem;
    }
    
    .footer-copyright {
        font-size: 0.75rem;
    }
    
    .footer-cnpj {
        font-size: 0.7rem;
    }
}

/* Footer Info inside Countdown */
.footer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-left: auto;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo-small {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer-text {
    font-size: 0.7rem;
    color: var(--text-muted);
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .footer-info {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        width: 100%;
    }
    .footer-text {
        font-size: 0.55rem;
        white-space: normal;
        text-align: center;
        line-height: 1.4;
    }
    .footer-logo-small {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 640px) {
    .footer-info {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 6px;
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: 8px;
        padding-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        width: 100%;
    }
    .footer-text {
        font-size: 0.5rem;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }
    .footer-logo-small {
        width: 18px;
        height: 18px;
    }
}
