@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600&display=swap'); 
@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');

/* ===================================================
   VARIÁVEIS E RESET
   =================================================== */

:root {
    --nexa-primary: #0066CC;
    --nexa-secondary: #004499;
    --nexa-dark-bg: #0a1628;
    --nexa-darker-bg: #050b14;
    --nexa-card-bg: rgba(26, 26, 26, 0.95);
    --nexa-text-light: #e5e5e5;
    --nexa-text-muted: #b0b0b0;
}

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

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background: var(--nexa-darker-bg);
    color: var(--nexa-text-light);
}

/* ===================================================
   BACKGROUND
   =================================================== */

.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a1628 0%, #050b14 50%, #0d1b2a 100%);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 68, 153, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 102, 204, 0.08) 0%, transparent 40%);
    animation: pulse 8s ease-in-out infinite;
}

/* ===================================================
   NAVBAR
   =================================================== */

.navbar-custom {
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 102, 204, 0.1);
    padding: 9px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-custom.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar-custom .container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-logo {
    height: 90px;
    filter: drop-shadow(0 2px 8px rgba(0, 102, 204, 0.3));
}

/* ===================================================
   BOTÕES
   =================================================== */

.btn-login {
    background: linear-gradient(45deg, var(--nexa-primary), var(--nexa-secondary));
    border: none;
    color: white;
    padding: 14px 40px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.5);
    color: white;
}

.btn-cta {
    background: linear-gradient(45deg, var(--nexa-primary), var(--nexa-secondary));
    border: none;
    color: white;
    border-radius: 30px;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.6);
    color: white;
}

.btn-secondary-cta {
    background: transparent;
    border: 2px solid var(--nexa-primary);
    color: var(--nexa-primary);
    text-decoration: none !important;
    padding: 14px 20px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}

.btn-secondary-cta:hover {
    background: var(--nexa-primary);
    color: white;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(45deg, var(--nexa-primary), var(--nexa-secondary));
    border: none;
    color: white;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 102, 204, 0.6);
}

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

/* ===================================================
   HERO SECTION
   =================================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 50px;
    position: relative;
}

.hero-logo-large {
    max-width: 400px;
    width: 100%;
    margin: 40px auto -90px;
    filter: drop-shadow(0 10px 30px rgba(0, 102, 204, 0.4));
}

.hero-logo-large-subtitle {
    font-size: clamp(1.7rem, 3vw, 1.8rem);
    max-width: 400px;
    width: 100%;
    margin: 40px auto -90px;
    filter: drop-shadow(0 10px 30px rgba(0, 102, 204, 0.4));
}

.hero-description {
    text-align: center;
    margin: 190px auto 0 auto;
    line-height: 1.6;
    color: #ffffff4e;
    font-size: 1.2rem;
}

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

/* ===================================================
   CONVEYOR (ESTEIRAS ANIMADAS)
   =================================================== */

.conveyor-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.conveyor-left {
    position: absolute;
    left: 25%;
    top: 90px;
    width: 150px;
    height: 1150px;
    overflow: hidden;
    transform: translateX(-75px) rotate(40deg);
    transform-origin: top center;
}

.conveyor-right {
    position: absolute;
    left: 75%;
    top: 90px;
    width: 150px;
    height: 1150px;
    overflow: hidden;
    transform: translateX(-75px) rotate(-40deg);
    transform-origin: top center;
}

.dots-left {
    position: absolute;
    width: 100%;
    height: 230%;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    animation: moveDown 8s linear infinite;
}

.dots-right {
    position: absolute;
    width: 100%;
    height: 230%;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    animation: moveUp 8s linear infinite;
}

@keyframes moveDown {
    0% { transform: translateY(0%); }
    100% { transform: translateY(50%); }
}

@keyframes moveUp {
    0% { transform: translateY(0%); }
    100% { transform: translateY(-50%); }
}

.dot-line {
    font-family: 'Orbitron', sans-serif;
    color: rgba(255, 255, 255, 0.243);
    font-size: 75px;
    transform: rotate(90deg);
}

.dot-line-left {
    font-family: 'Orbitron', sans-serif;
    color: rgba(255, 255, 255, 0.243);
    font-size: 75px;
    transform: rotate(-90deg);
}

/* ===================================================
   SCROLL INDICATOR
   =================================================== */

.scroll-indicator {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--nexa-primary);
}

/* ===================================================
   FEATURES / SOLUÇÕES
   =================================================== */

.features-section {
    padding: 70px -3px;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: white;
}

.feature-card {
    background: var(--nexa-card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 102, 204, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--nexa-primary), var(--nexa-secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--nexa-primary);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--nexa-primary), var(--nexa-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.feature-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.feature-description {
    font-family: 'Audiowide', sans-serif;
    color: var(--nexa-text-muted);
    line-height: 1.6;
}

.feature-card-link {
    text-decoration: none !important;
    color: inherit !important;
    cursor: pointer;
    display: block;
    transition: transform 0.3s ease;
}

.feature-card-link:hover {
    transform: translateY(-5px);
}

/* ===================================================
   SEÇÕES DE SOLUÇÕES (STATS / COMENT)
   =================================================== */

.coment-section {
    padding: 30px 0;
}

.stats-section {
    padding: 0px 0;
    background: rgba(0, 102, 204, 0.05);
    border-top: 1px solid rgba(0, 102, 204, 0.1);
    border-bottom: 1px solid rgba(0, 102, 204, 0.1);
}

.solutions-section {
    padding: 0px 0;
    text-align: left;
}

.solutions-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 30px;
    color: white;
}

.solutions-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--nexa-text-muted);
    margin-bottom: 80px;
    width: 100%;
}

/* Âncoras com offset para navbar fixa */
#DS, #AP, #BI, #SN, #AM, #SD {
    scroll-margin-top: 120px;
}

/* ===================================================
   CARROSSEL 3D DE SISTEMAS
   =================================================== */

.carousel-container {
    position: relative;
    width: 100%;
    height: 650px;
    perspective: 1500px;
    margin-bottom: 60px;
    padding-bottom: 100px;
    overflow: visible;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
    transform-style: preserve-3d;
}

/* Cards */
.feature-card-wrapper {
    position: absolute;
    width: 750px;
    height: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-sistemas {
    position: absolute;
    width: 650px;
    height: 367px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    border: 2px solid rgba(102, 126, 234, 0.4);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    margin-bottom: 20px;
}

/* Vídeo fullscreen */
.card-content-fullvideo,
.video-container-fullscreen {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #00000000;
}

.carousel-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Título abaixo do card */
.feature-title-sistemas-bottom {
    font-family: 'Orbitron', sans-serif;
    position: absolute;
    bottom: 220px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    margin: 0;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--nexa-primary) 0%, var(--nexa-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    text-align: center;
    white-space: nowrap;
    width: auto;
    z-index: 10;
    pointer-events: none;
}

/* Posições dos cards */
.feature-card-wrapper.left-2 {
    transform: translate(-50%, -50%) translateX(-900px) rotateY(35deg) scale(0.65) !important;
    opacity: 0.2 !important;
    z-index: 1 !important;
}

.feature-card-wrapper.left-1 {
    transform: translate(-50%, -50%) translateX(-500px) rotateY(25deg) scale(0.8) !important;
    opacity: 0.5 !important;
    z-index: 2 !important;
}

.feature-card-wrapper.center {
    transform: translate(-50%, -50%) translateX(0) rotateY(0deg) scale(1) !important;
    opacity: 1 !important;
    z-index: 3 !important;
}

.feature-card-wrapper.right-1 {
    transform: translate(-50%, -50%) translateX(500px) rotateY(-25deg) scale(0.8) !important;
    opacity: 0.5 !important;
    z-index: 2 !important;
}

.feature-card-wrapper.right-2 {
    transform: translate(-50%, -50%) translateX(900px) rotateY(-35deg) scale(0.65) !important;
    opacity: 0.2 !important;
    z-index: 1 !important;
}

.feature-card-wrapper.hidden {
    opacity: 0 !important;
    transform: translate(-50%, -50%) scale(0.3) !important;
    pointer-events: none !important;
}

/* Controles */
.controls {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.control-btn {
    background: linear-gradient(135deg, #1402b7 0%, #090193 100%);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.control-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.6);
}

/* Indicadores */
.indicators {
    position: absolute;
    bottom: -210px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: #667eea;
    width: 35px;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(102, 126, 234, 0.6);
}

.indicator:hover {
    background: rgba(102, 126, 234, 0.6);
}

/* ===================================================
   SUPPORT WIDGET
   =================================================== */

.support-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.support-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--nexa-primary) 0%, var(--nexa-secondary) 100%);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.5);
}

.support-menu {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.support-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.support-header {
    background: linear-gradient(135deg, var(--nexa-primary) 0%, var(--nexa-secondary) 100%);
    color: white;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.support-header h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.support-options {
    padding: 10px;
}

.support-option {
    display: flex;
    align-items: center;
    padding: 14px 12px;
    text-decoration: none;
    color: #333;
    border-radius: 8px;
    transition: all 0.2s;
    gap: 14px;
    margin-bottom: 5px;
    cursor: pointer;
}

.support-option:hover {
    background: #f5f7fa;
    color: var(--nexa-primary);
    transform: translateX(3px);
}

/* ===================================================
   SEÇÃO DE CONTATO
   =================================================== */

.contact-section {
    padding: 60px 0;
    background: rgba(0, 102, 204, 0.03);
    border-top: 1px solid rgba(0, 102, 204, 0.1);
    position: relative;
}

.contact-subtitle {
    text-align: center;
    color: var(--nexa-text-muted);
    margin-bottom: 40px;
    font-size: 1rem;
}

.contact-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: var(--nexa-card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 102, 204, 0.2);
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.contact-container:hover {
    border-color: var(--nexa-primary);
    box-shadow: 0 15px 50px rgba(0, 102, 204, 0.4);
}

.contact-container .form-group {
    margin-bottom: 25px;
}

.contact-container label {
    display: block;
    margin-bottom: 8px;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-container input,
.contact-container textarea {
    width: 100%;
    padding: 15px 16px;
    border: 2px solid rgba(0, 102, 204, 0.2);
    border-radius: 10px;
    font-size: 15px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.contact-container input::placeholder,
.contact-container textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-container input:focus,
.contact-container textarea:focus {
    outline: none;
    border-color: var(--nexa-primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.contact-container textarea {
    resize: vertical;
    min-height: 130px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
}

.form-row .form-group:first-child {
    flex: 0.8;
}

.form-row .form-group:last-child {
    flex: 1.2;
}

/* ===================================================
   POPUP DE MENSAGENS
   =================================================== */

.message-popup {
    position: fixed;
    top: 100px;
    right: -400px;
    min-width: 320px;
    max-width: 400px;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: white;
    animation: slideIn 0.4s ease forwards;
}

.message-popup.closing {
    animation: slideOut 0.3s ease forwards;
}

.message-popup.success {
    background: linear-gradient(135deg, var(--nexa-primary) 0%, var(--nexa-secondary) 100%);
}

.message-popup.error {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.message-popup.warning {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.message-popup.info {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.message-popup i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.message-popup span {
    flex: 1;
    line-height: 1.4;
}

.popup-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
    flex-shrink: 0;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

@keyframes slideIn {
    to { right: 20px; }
}

@keyframes slideOut {
    to {
        right: -400px;
        opacity: 0;
    }
}

/* ===================================================
   FOOTER
   =================================================== */

.footer {
    background: var(--nexa-darker-bg);
    border-top: 1px solid rgba(0, 102, 204, 0.1);
    padding: 40px 0 20px;
}

.footer-text {
    color: var(--nexa-text-muted);
    text-align: center;
    margin: 0;
}

/* ===================================================
   RESPONSIVIDADE
   =================================================== */

@media (max-width: 1200px) {
    .feature-card-sistemas {
        width: 1200px;
        height: 300px;
        margin: 0 auto;
    }

    .feature-card-sistemas.left-1 {
        transform: translate(-50%, -50%) translateX(-450px) rotateY(25deg) scale(0.8) !important;
    }

    .feature-card-sistemas.right-1 {
        transform: translate(-50%, -50%) translateX(450px) rotateY(-25deg) scale(0.8) !important;
    }

    .feature-card-sistemas.left-2 {
        transform: translate(-50%, -50%) translateX(-800px) rotateY(35deg) scale(0.65) !important;
    }

    .feature-card-sistemas.right-2 {
        transform: translate(-50%, -50%) translateX(800px) rotateY(-35deg) scale(0.65) !important;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        height: 550px;
    }

    .feature-card-sistemas {
        width: 320px !important;
        height: 450px !important;
    }

    .feature-title-sistemas-bottom {
        font-size: 1.6rem;
        bottom: -50px;
    }

    .controls {
        bottom: -120px;
    }

    .indicators {
        bottom: -180px;
    }

    .feature-card-sistemas.left-2,
    .feature-card-sistemas.right-2 {
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .feature-card-sistemas.left-1 {
        transform: translate(-50%, -50%) translateX(-380px) rotateY(25deg) scale(0.75) !important;
    }

    .feature-card-sistemas.right-1 {
        transform: translate(-50%, -50%) translateX(380px) rotateY(-25deg) scale(0.75) !important;
    }

    .contact-section {
        padding: 50px 0;
    }

    .contact-container {
        padding: 28px 20px;
    }

    .contact-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        height: 500px;
    }

    .feature-card-sistemas {
        width: 280px !important;
        height: 400px !important;
    }

    .feature-title-sistemas-bottom {
        font-size: 1.4rem;
        bottom: -45px;
        letter-spacing: 2px;
    }

    .controls {
        bottom: -110px;
    }

    .indicators {
        bottom: -170px;
    }

    .feature-card-sistemas.left-1 {
        transform: translate(-50%, -50%) translateX(-320px) rotateY(30deg) scale(0.7) !important;
    }

    .feature-card-sistemas.right-1 {
        transform: translate(-50%, -50%) translateX(320px) rotateY(-30deg) scale(0.7) !important;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-container {
        padding: 25px 15px;
    }

    .contact-container .form-group {
        margin-bottom: 15px;
    }

    .message-popup {
        min-width: 280px;
        max-width: calc(100vw - 40px);
        right: -100%;
        font-size: 0.9rem;
        padding: 14px 16px;
    }

    @keyframes slideIn {
        to { right: 10px; }
    }
}