/* Design System & Squeeze Page Styles */
:root {
    --bg-primary: #05070c;
    --bg-secondary: #0a0d15;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #475569;
    --accent-orange: #FF6B00;
    --accent-gold: #FFA800;
    --accent-gradient: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
    --card-bg: rgba(10, 13, 21, 0.7);
    --card-border: rgba(255, 255, 255, 0.05);
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
    height: 100%;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.5;
}

/* Background mesh glows */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.12;
    z-index: -1;
    pointer-events: none;
}

.bg-glow-1 {
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--accent-orange);
}

.bg-glow-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--accent-gold);
}

.bg-glow-2 {
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--accent-blue);
}

/* Squeeze Wrapper (Ensures centering on desktop) */
.squeeze-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

/* Minimal Header */
.header-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 2rem;
}

.logo {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.logo .dot {
    color: var(--accent-orange);
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

/* Main Container (Split Screen) */
.squeeze-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4.5rem;
    align-items: center;
    flex-grow: 1;
}

/* Left Side: Copy and Form */
.squeeze-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.8rem;
    background: rgba(255, 107, 0, 0.05);
    border: 1px solid rgba(255, 107, 0, 0.15);
    border-radius: 4px;
    font-family: var(--font-title);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-orange);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: fit-content;
    margin-bottom: 1.2rem;
}

.badge-tag i {
    width: 14px;
    height: 14px;
}

.squeeze-title {
    font-size: 2.8rem;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

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

.squeeze-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin-bottom: 1.8rem;
}

/* Pain points list */
.pain-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.pain-icon-x {
    color: #ef4444;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.pain-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.pain-item strong {
    color: var(--text-primary);
}

/* Form Card */
.form-squeeze-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 1.8rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.form-squeeze-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 8px;
    border: 1px solid transparent;
    background: var(--accent-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0.15;
    pointer-events: none;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-explanation {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.6rem;
    font-weight: 300;
}

.form-row-inputs {
    display: flex;
    gap: 1.2rem;
    align-items: flex-end;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 0.8rem;
    width: 14px;
    height: 14px;
    color: var(--text-muted);
}

.input-wrapper input {
    width: 100%;
    padding: 0.7rem 0.8rem 0.7rem 2.4rem;
    background: rgba(4, 6, 10, 0.6);
    border: 1px solid var(--card-border);
    border-radius: 4px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.input-wrapper input:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.1);
}

/* Primary Button Squeeze */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 1.4rem;
    border-radius: 4px;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    height: 38px; /* Match input height */
}

.btn-primary {
    background: var(--accent-gradient);
    color: #04060a;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
}

.form-row-inputs .btn-primary {
    flex: 1;
}

.btn-whatsapp {
    background: var(--accent-gradient) !important;
    color: #04060a !important;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.25) !important;
}

.btn-whatsapp:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4) !important;
}

/* Success inside Form Card */
.form-success-squeeze {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0.5rem 0;
}

.success-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.success-icon {
    width: 38px;
    height: 38px;
    color: var(--accent-green);
    flex-shrink: 0;
}

.success-header h3 {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.success-header p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.hidden {
    display: none !important;
}

/* Right Side: Squeeze Video Panel */
.squeeze-video {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.video-panel-card {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--bg-secondary);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.video-panel-card:hover {
    border-color: rgba(0, 245, 160, 0.2);
    box-shadow: 0 25px 45px rgba(0, 245, 160, 0.08);
}

/* Video Preview / Overlay (Initial) */
.video-preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
}

.preview-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(4, 6, 10, 0.3) 0%, rgba(4, 6, 10, 0.85) 100%);
    z-index: -1;
    transition: var(--transition);
}

.video-preview-overlay:hover .preview-backdrop {
    background: linear-gradient(180deg, rgba(4, 6, 10, 0.1) 0%, rgba(4, 6, 10, 0.75) 100%);
}

.play-trigger-box {
    align-self: center;
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    margin-bottom: auto;
}

.play-button {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.35);
    z-index: 2;
    transition: var(--transition);
}

.play-icon {
    width: 20px;
    height: 20px;
    color: #04060a;
    fill: #04060a;
    margin-left: 3px;
}

.video-preview-overlay:hover .play-button {
    transform: scale(1.1);
}

.play-ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.2);
    animation: ripple 2s infinite ease-out;
    z-index: 1;
}

.preview-info {
    text-align: left;
}

.preview-tag {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.3rem;
}

.preview-info h2 {
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
}

.preview-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Active Video Player Screen */
.simulated-player-screen {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #020306;
}

.player-visual-area {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    gap: 1.5rem;
}

.speaker-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.speaker-avatar {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #04060a;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 0 0 15px rgba(0, 245, 160, 0.3);
}

.speaker-voice-wave {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 18px;
}

.wave-bar {
    width: 2px;
    background: var(--accent-orange);
    border-radius: 1px;
    animation: voiceWave 1.2s ease-in-out infinite alternate;
}

.wave-bar:nth-child(1) { height: 10%; animation-delay: 0.1s; }
.wave-bar:nth-child(2) { height: 60%; animation-delay: 0.3s; }
.wave-bar:nth-child(3) { height: 100%; animation-delay: 0.5s; }
.wave-bar:nth-child(4) { height: 40%; animation-delay: 0.2s; }
.wave-bar:nth-child(5) { height: 80%; animation-delay: 0.4s; }

.slide-content-mock {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.2rem;
    border-radius: 6px;
    flex-grow: 1;
    max-width: 280px;
    position: relative;
    text-align: left;
}

.slide-badge {
    position: absolute;
    top: -8px;
    left: 15px;
    background: #020306;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent-blue);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
}

.slide-content-mock h3 {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.slide-content-mock ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.slide-content-mock li {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.slide-content-mock li i {
    width: 12px;
    height: 12px;
    color: var(--accent-orange);
}

/* Controls inside video frame */
.player-controls-bar {
    height: 40px;
    background: rgba(4, 6, 10, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.progress-bar-wrapper {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1.5px;
    cursor: pointer;
    margin-bottom: 0.3rem;
}

.progress-bar-filled {
    height: 100%;
    width: 35%;
    background: var(--accent-gradient);
}

.controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.controls-left, .controls-right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.control-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.control-btn:hover {
    color: var(--text-primary);
}

.control-btn i {
    width: 14px;
    height: 14px;
}

.control-static-icon {
    width: 14px;
    height: 14px;
    color: var(--text-muted);
}

.time-display {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* Footer caption */
.video-footer-caption {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    margin-top: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
}

.video-footer-caption strong {
    color: var(--text-primary);
}

.video-footer-caption i {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.video-footer-caption span {
    font-size: 0.75rem;
    text-align: left;
}

/* Spinner */
.spinner {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(4, 6, 10, 0.2);
    border-top: 2px solid #04060a;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* Keyframes */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes ripple {
    0% { transform: scale(0.9); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

@keyframes voiceWave {
    0% { transform: scaleY(0.3); }
    100% { transform: scaleY(1.1); }
}

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

/* Responsive (Mobile Stack) */
@media (max-width: 992px) {
    .squeeze-wrapper {
        padding: 1.5rem;
    }
    
    .squeeze-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .squeeze-content {
        text-align: center;
    }
    
    .badge-tag {
        margin: 0 auto 1.2rem auto;
    }
    
    .pain-list {
        align-items: center;
    }
    
    .pain-item {
        text-align: left;
    }
    
    .form-squeeze-card {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .squeeze-title {
        font-size: 2.2rem;
    }
    
    .form-row-inputs {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .form-row-inputs .btn-primary {
        margin-top: 0.5rem;
        height: 42px;
    }

    /* Fix video card overflow and layout squeezing on small screens */
    .video-panel-card {
        aspect-ratio: 16/12; /* Taller aspect-ratio to fit all text elements on mobile */
    }

    .video-preview-overlay {
        padding: 1rem; /* Compact padding to reclaim vertical space */
    }

    .preview-info h2 {
        font-size: 1.05rem; /* Optimally sized title for small devices */
    }

    .preview-info p {
        font-size: 0.75rem; /* Sized description for perfect legibility */
    }
}

/* Shake Animation for Form Validation */
.shake-effect {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

/* Testimonials Section */
.testimonials-section {
    margin-top: 5rem;
    padding: 3rem 0;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
}

.testimonials-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    font-family: var(--font-title);
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
    font-weight: 300;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 8px;
    border: 1px solid transparent;
    background: var(--accent-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0.15;
    pointer-events: none;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 0, 0.2);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 107, 0, 0.05);
}

.testimonial-card:hover::after {
    opacity: 0.3;
}

.testimonial-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-stars {
    display: flex;
    gap: 0.3rem;
}

.star-icon {
    width: 16px;
    height: 16px;
    color: var(--accent-gold);
    fill: var(--accent-gold);
}

.testimonial-quote-icon {
    color: rgba(255, 107, 0, 0.15);
}

.testimonial-quote-icon i {
    width: 32px;
    height: 32px;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.2rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #04060a;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.15rem;
    box-shadow: 0 0 12px rgba(255, 107, 0, 0.2);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.author-name {
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.author-company {
    font-size: 0.8rem;
    color: var(--accent-orange);
    font-weight: 500;
}

/* Ajustes responsivos adicionais */
@media (max-width: 768px) {
    .testimonials-section {
        margin-top: 3.5rem;
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 1.8rem;
    }
}

/* Footer Styles */
.footer-landing {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0 1.5rem 0;
    width: 100%;
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
    position: relative;
    z-index: 10;
}

.footer-logo {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.footer-logo .dot {
    color: var(--accent-orange);
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
    margin-top: -0.6rem;
}

.footer-contact-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 0.5rem 0;
}

.footer-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-contact-item i,
.footer-contact-item svg {
    width: 16px !important;
    height: 16px !important;
    color: var(--accent-orange);
}

.footer-contact-item:hover {
    color: var(--text-primary);
    border-color: rgba(255, 107, 0, 0.2);
    background: rgba(255, 107, 0, 0.05);
    box-shadow: 0 0 10px rgba(255, 107, 0, 0.05);
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
}

.social-icon-btn {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.social-icon-btn i,
.social-icon-btn svg {
    width: 18px !important;
    height: 18px !important;
    display: block;
}

.social-icon-btn:hover {
    color: #05070c;
    background: var(--accent-gradient);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.footer-bottom {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}


