/* ============================================
 Override Bootstrap .bg-light to a slightly darker tone for better contrast
 ============================================ */
.bg-light {
    background-color: #f8f9fa !important;
    /* lighter gray tone */
}

/* Optional: tweak text color when using bg-light to keep contrast */
.bg-light.text-muted,
.bg-light .text-muted {
    color: #6c757d !important;
}

/* MODERN PMS INCLOUD LANDING PAGE STYLES
============================================ */

/* CSS Custom Properties - Modern Color Palette */
:root {
    /* Primary Brand Colors - Deep Ocean Theme */
    --primary-color: #0f172a;
    /* Deep Navy */
    --primary-light: #1e293b;
    /* Lighter Navy */
    --secondary-color: #0891b2;
    /* Ocean Blue */
    --accent-color: #06b6d4;
    /* Bright Cyan */
    --accent-light: #67e8f9;
    /* Light Cyan */

    /* Status Colors */
    --success-color: #059669;
    /* Emerald Green */
    --warning-color: #d97706;
    /* Amber Orange */
    --danger-color: #dc2626;
    /* Red */
    --info-color: #2563eb;
    /* Blue */

    /* Neutral Colors */
    --dark-color: #111827;
    /* Almost Black */
    --gray-dark: #374151;
    /* Dark Gray */
    --gray-medium: #6b7280;
    /* Medium Gray */
    --gray-light: #d1d5db;
    /* Light Gray */
    --light-color: #f8fafc;
    /* Off White */
    --white: #ffffff;
    /* Pure White */

    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-accent: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    --gradient-success: linear-gradient(135deg, var(--success-color) 0%, #10b981 100%);

    /* Spacing */
    --section-padding: 5rem 0;
    --border-radius: 0.75rem;
    --border-radius-lg: 1rem;
    --box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --box-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.section-padding {
    padding: var(--section-padding);
}

/* Smooth Animations */
* {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   NAVIGATION STYLES
   ============================================ */

.navbar {
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;

    /* Compact total box for modules summary */
    .total-box {
        border-radius: 0.6rem;
        box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
        background: var(--white);
    }

    .total-box h5 {
        font-weight: 700;
        color: var(--primary-color);
    }

    .total-box .h5 {
        font-weight: 800;
        color: var(--primary-color);
    }

    box-shadow: var(--box-shadow);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--primary-color) !important;
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--secondary-color) !important;
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.75rem 1rem !important;
    border-radius: var(--border-radius);
    color: var(--gray-dark) !important;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-color) !important;
    background-color: rgba(8, 145, 178, 0.1);
}

.btn-primary {
    background: var(--secondary-color);
    /* solid ocean blue */
    color: white;
    border: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.18s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow-lg);
    background: #057a96;
    /* slightly darker than --secondary-color */
    color: white;
}

.btn-success {
    color: white;
    border: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.18s ease;
}


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

.hero-section {
    min-height: 100vh;
    background: var(--gradient-primary);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-cta {
    gap: 1rem;
}

.btn-hero-primary {
    background: var(--gradient-success);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius-lg);
    border: none;
    box-shadow: var(--box-shadow-lg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px -5px rgba(5, 150, 105, 0.4);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
}

/* Hero Dashboard Mockup */
.hero-image-container {
    position: relative;
    margin-top: 2rem;
}

.hero-dashboard-mockup {
    max-width: 500px;
    margin: 0 auto;
}

.mockup-browser {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-lg);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.mockup-browser:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.browser-toolbar {
    background: var(--gray-light);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

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

.dot-red {
    background: #ff5f56;
}

.dot-yellow {
    background: #ffbd2e;
}

.dot-green {
    background: #27ca3f;
}

.browser-url {
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-medium);
    flex: 1;
}

.dashboard-content {
    padding: 2rem;
    background: var(--light-color);
}

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

.stat-card {
    background: var(--white);
    padding: 1rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stat-card i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.stat-number {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-medium);
}

.dashboard-chart {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 80px;
}

.bar {
    flex: 1;
    background: var(--gradient-accent);
    border-radius: 0.25rem 0.25rem 0 0;
    height: 0%;
    transition: height 1.5s ease-out;
}

.bar.animated {
    animation: growBar 1.5s ease-out forwards;
}

@keyframes growBar {
    from {
        height: 0%;
    }

    to {
        height: var(--height);
    }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 1rem;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    animation: float 3s ease-in-out infinite;
}

.notification-card {
    top: 20%;
    right: -10%;
    animation-delay: 0s;
}

.revenue-card {
    bottom: 30%;
    left: -15%;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ============================================
   CARD STYLES
   ============================================ */

.card-modern {
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    background: var(--white);
}

.card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.card-modern .card-header {
    background: var(--gradient-accent);
    color: white;
    border: none;
    padding: 1.5rem;
    text-align: center;
}

.card-modern .card-body {
    padding: 2rem;
}

.card-modern .card-footer {
    background: var(--light-color);
    border: none;
    padding: 1.5rem;
}

/* ============================================
   PRICING CARDS
   ============================================ */

.pricing-card {
    position: relative;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    transition: all 0.4s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Make card footer stick to bottom so buttons are inside the card */
.pricing-card .card-footer {
    margin-top: auto;
    background: transparent;
    border-top: none;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--box-shadow-lg);
}

.pricing-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: translateY(-15px) scale(1.07);
}

.pricing-card.selected {
    border: 3px solid var(--success-color);
    background: linear-gradient(to bottom, rgba(34, 197, 94, 0.05), var(--white));
    transform: scale(1.03);
}

.pricing-card.selected:hover {
    transform: translateY(-10px) scale(1.03);
}

.pricing-card.selected .btn-seleccionar-plan {
    background: var(--success-color);
    color: white;
    border-color: var(--success-color);
}

.pricing-card.selected .btn-seleccionar-plan:hover {
    background: #16a34a;
    border-color: #16a34a;
}

.pricing-card .badge-featured {
    position: absolute;
    top: -8px !important;
    text-align: center;
    right: 1rem;
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem 1.5rem;
    text-align: center;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin: 1rem 0;
}

.pricing-period {
    font-size: 0.9rem;
    opacity: 0.8;
}

.pricing-features {
    padding: 2rem;
}

.pricing-feature {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature i {
    color: var(--success-color);
    margin-right: 1rem;
    font-size: 1.1rem;
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-medium);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle.no-center {
    margin-left: 0px !important;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    margin: 0 auto 3rem;
    border-radius: 2px;
}

/* ============================================
   FEATURES / ADVANTAGES SECTION
   ============================================ */

.feature-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    min-height: 80px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem 0;
    font-size: 2rem;
    color: white;
}

.feature-icon.center-icon {
    margin-left: auto !important;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* ============================================
   MODULES SECTION
   ============================================ */

.modulo-card {
    cursor: pointer;
    user-select: none;
    position: relative;
}

.modulo-card.selected {
    border: 2px solid var(--success-color);
    background: #ecfdf5;
}

.modulo-card .card-body {
    padding: 1.5rem;
}

.modulo-precio {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.modulo-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.modulo-card.selected .modulo-check {
    display: flex;
}

#total-modulos {
    position: sticky;
    bottom: 20px;
    z-index: 100;
}

.total-box {
    background: linear-gradient(135deg, var(--dark-color), #334155);
    color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--box-shadow-lg);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    background: var(--light-color);
    border: none;
    width: 100%;
    padding: 1.5rem 2rem;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(8, 145, 178, 0.1);
}

.faq-answer {
    padding: 0 2rem 2rem;
    color: var(--gray-medium);
    line-height: 1.6;
}

/* ============================================
   FORM STYLES
   ============================================ */

.form-modern {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--box-shadow-lg);
}

.form-control {
    border: 2px solid var(--gray-light);
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(6, 182, 212, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* ============================================
   MODAL STYLES
   ============================================ */

.modal-content {
    border-radius: var(--border-radius-lg);
    border: none;
    box-shadow: var(--box-shadow-lg);
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    border: none;
}

.modal-title {
    font-weight: 700;
}

.btn-close {
    filter: invert(1);
}

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

footer {
    background: var(--gradient-primary);
    color: white;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-accent);
}

footer h5 {
    font-weight: 600;
    margin-bottom: 1.5rem;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-light);
}

.footer-links {
    font-size: 0.9rem;
}

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

.footer-contact .contact-item {
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.social-link.whatsapp:hover {
    background: #25D366;
}

.btn-accent {
    background: var(--gradient-accent);
    border: none;
    color: white;
}

.btn-accent:hover {
    background: var(--accent-light);
    color: var(--dark-color);
    transform: translateY(-2px);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

.bg-gradient-accent {
    background: var(--gradient-accent) !important;
}

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

.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }

    .hero-section {
        min-height: 90vh;
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .form-modern {
        padding: 2rem;
    }
}

@media (max-width: 575px) {
    .navbar-brand {
        font-size: 1.4rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .pricing-price {
        font-size: 2.5rem;
    }

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

/* ============================================
   GESTIÓN UNIFICADA SECTION STYLES
   ============================================ */

/* Unified Dashboard Styles */
.unified-dashboard-container {
    perspective: 1000px;
    padding: 2rem;
}

.unified-dashboard-mockup {
    animation: float 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.dashboard-window {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.dashboard-window:hover {
    transform: translateY(-10px) rotateY(5deg);
}

.window-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.window-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.control-close {
    background: #ff5f56;
}

.control-minimize {
    background: #ffbd2e;
}

.control-maximize {
    background: #27c93f;
}

.window-title {
    font-weight: 600;
    font-size: 0.9rem;
}

.window-actions {
    display: flex;
    gap: 1rem;
    font-size: 1rem;
}

.dashboard-sidebar {
    position: absolute;
    left: 0;
    top: 48px;
    bottom: 0;
    width: 200px;
    background: #f8f9fa;
    border-right: 1px solid #e9ecef;
    padding: 1rem 0;
}

.sidebar-item {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #6c757d;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-item:hover {
    background: #e9ecef;
    color: #667eea;
}

.sidebar-item.active {
    background: #667eea;
    color: white;
    border-right: 3px solid #764ba2;
}

.sidebar-item i {
    width: 20px;
    text-align: center;
}

.dashboard-main-content {
    margin-left: 200px;
    padding: 1.5rem;
    min-height: 350px;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.content-header h3 {
    font-size: 1.25rem;
    color: #333;
    margin: 0;
}

.date-badge {
    background: #e9ecef;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #6c757d;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.metric-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    color: white;
}

.metric-box i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.metric-label {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
}

.mini-chart {
    background: #f8f9fa;
    height: 100px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.3) 100%);
    clip-path: polygon(0 70%, 15% 50%, 30% 60%, 45% 30%, 60% 40%, 75% 20%, 90% 35%, 100% 10%, 100% 100%, 0 100%);
    animation: chartGrow 2s ease-out;
}

/* Floating Modules */
.floating-module {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
    animation: fadeInFloat 1s ease-out;
}

.module-reservas {
    top: 10%;
    right: -10%;
    animation: floatSlow 4s ease-in-out infinite;
}

.module-rooms {
    bottom: 30%;
    left: -15%;
    animation: floatMedium 5s ease-in-out infinite 0.5s;
}

.module-revenue {
    bottom: 10%;
    right: -5%;
    animation: floatSlow 6s ease-in-out infinite 1s;
}

.module-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.module-info strong {
    display: block;
    color: #333;
    font-size: 0.9rem;
}

.module-info small {
    color: #6c757d;
    font-size: 0.75rem;
}

.module-status {
    margin-left: auto;
    font-size: 1.25rem;
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-10px, -15px);
    }
}

@keyframes floatMedium {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, -10px);
    }
}

@keyframes fadeInFloat {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes chartGrow {
    0% {
        height: 0;
    }

    100% {
        height: 60%;
    }
}

/* ============================================
   IA CHATBOT SECTION STYLES
   ============================================ */

/* AI Chat Container Styles */
.ai-chat-container {
    perspective: 1200px;
    padding: 2rem;
}

.ai-chat-mockup {
    animation: floatGentle 5s ease-in-out infinite;
    transform-style: preserve-3d;
}

.chat-window {
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    max-width: 450px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.chat-window:hover {
    transform: translateY(-10px) scale(1.02);
}

.chat-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ai-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1.5rem;
    position: relative;
}

.status-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #27c93f;
    border: 2px solid white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.chat-title h6 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.chat-title small {
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.chat-title small i {
    font-size: 0.5rem;
    animation: blink 2s infinite;
}

.chat-messages {
    padding: 1.5rem;
    background: #f8f9fa;
    min-height: 450px;
    max-height: 450px;
    overflow-y: auto;
}

.message {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    opacity: 0;
}

.customer-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #6c757d;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.message-avatar.ai {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.message-content {
    max-width: 70%;
}

.customer-message .message-content {
    text-align: right;
}

.message-bubble {
    background: white;
    padding: 0.875rem 1rem;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 0.9rem;
    line-height: 1.5;
}

.customer-message .message-bubble {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.message-time {
    font-size: 0.7rem;
    color: #6c757d;
    margin-top: 0.25rem;
    padding: 0 0.25rem;
}

.room-card {
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.room-card:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.room-card.featured {
    border: 2px solid #ffc107;
    background: #fff9e6;
}

.room-type {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.room-type i {
    color: #667eea;
}

.booking-summary {
    background: #f8f9fa;
    padding: 0.75rem;
    border-radius: 8px;
    border-left: 3px solid #27c93f;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.summary-item:last-child {
    margin-bottom: 0;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid #dee2e6;
}

.summary-item i {
    color: #667eea;
    width: 16px;
}

.typing-indicator {
    display: flex;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 16px;
    width: fit-content;
    margin-left: 48px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #6c757d;
    border-radius: 50%;
    animation: typingAnimation 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

.chat-input {
    padding: 1rem;
    background: white;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 0.5rem;
}

.chat-input input {
    flex: 1;
    border: 1px solid #dee2e6;
    border-radius: 24px;
    padding: 0.625rem 1rem;
    font-size: 0.9rem;
}

.send-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Floating AI Stats */
.floating-stat {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 0.875rem 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 180px;
}

.conversion-stat {
    top: 5%;
    left: -12%;
    animation: floatSide 4s ease-in-out infinite;
}

.response-stat {
    top: 45%;
    right: -15%;
    animation: floatSide 5s ease-in-out infinite 0.5s;
}

.language-stat {
    bottom: 8%;
    left: -10%;
    animation: floatSide 4.5s ease-in-out infinite 1s;
}

.stat-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.stat-info strong {
    display: block;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.2;
}

.stat-info small {
    color: #6c757d;
    font-size: 0.75rem;
}

/* AI Features */
.ai-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.ai-stats-row {
    border-top: 2px solid #e9ecef;
    padding-top: 1.5rem;
}

.ai-stat-box {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

@keyframes floatGentle {

    0%,
    100% {
        transform: translateY(0px) rotateY(0deg);
    }

    50% {
        transform: translateY(-15px) rotateY(2deg);
    }
}

@keyframes floatSide {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(8px, -12px);
    }
}

@keyframes blink {

    0%,
    50%,
    100% {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0.3;
    }
}

@keyframes typingAnimation {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-10px);
    }
}

/* ============================================
   BANDEJA UNIFICADA SECTION STYLES
   ============================================ */

/* Inbox Container Styles */
.inbox-container {
    perspective: 1200px;
    padding: 2rem;
}

.inbox-mockup {
    animation: floatInbox 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.inbox-window {
    background: white;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.inbox-window:hover {
    transform: translateY(-10px) rotateX(2deg);
}

.inbox-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.25rem;
    color: white;
}

.inbox-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.inbox-search {
    position: relative;
    margin-bottom: 1rem;
}

.inbox-search i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.inbox-search input {
    width: 100%;
    padding: 0.625rem 1rem 0.625rem 2.75rem;
    border: none;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.9rem;
}

.inbox-search input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.inbox-filters {
    display: flex;
    gap: 0.5rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.filter-btn.active {
    background: white;
    color: #667eea;
}

.filter-btn .badge {
    background: #ff5f56;
    color: white;
    padding: 0.125rem 0.5rem;
    border-radius: 10px;
    font-size: 0.75rem;
}

.inbox-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    height: 500px;
}

/* Conversations List */
.conversations-list {
    background: #f8f9fa;
    border-right: 1px solid #e9ecef;
    overflow-y: auto;
}

.conversation-item {
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.conversation-item:hover {
    background: #e9ecef;
}

.conversation-item.active {
    background: white;
    border-left: 3px solid #667eea;
}

.conv-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.conv-avatar.small {
    width: 36px;
    height: 36px;
    font-size: 1rem;
}

.whatsapp-avatar {
    background: #25D366;
}

.instagram-avatar {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.facebook-avatar {
    background: #0084FF;
}

.telegram-avatar {
    background: #0088cc;
}

.webchat-avatar {
    background: #667eea;
}

.conv-details {
    flex: 1;
    min-width: 0;
}

.conv-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}

.conv-header strong {
    font-size: 0.9rem;
    color: #333;
}

.conv-time {
    font-size: 0.75rem;
    color: #6c757d;
}

.conv-preview {
    font-size: 0.85rem;
    color: #6c757d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.conv-badge {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ff5f56;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
}

.conv-badge.unread {
    animation: pulse 2s infinite;
}

/* Active Conversation */
.active-conversation {
    background: white;
    display: flex;
    flex-direction: column;
}

.conv-detail-header {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.conv-actions {
    display: flex;
    gap: 1rem;
    color: #6c757d;
    font-size: 1.125rem;
}

.conv-actions i {
    cursor: pointer;
    transition: color 0.3s ease;
}

.conv-actions i:hover {
    color: #667eea;
}

.quick-info-tags {
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.info-tag {
    padding: 0.25rem 0.75rem;
    background: white;
    border-radius: 16px;
    font-size: 0.75rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    border: 1px solid #e9ecef;
}

.info-tag i {
    color: #667eea;
}

.messages-preview {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.preview-message {
    display: flex;
}

.preview-message.outgoing {
    justify-content: flex-end;
}

.preview-bubble {
    max-width: 70%;
    padding: 0.625rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.preview-message.incoming .preview-bubble {
    background: #e9ecef;
    color: #333;
}

.preview-message.outgoing .preview-bubble {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.quick-responses {
    padding: 1rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.quick-response-btn {
    padding: 0.5rem 0.875rem;
    border: 1px solid #667eea;
    background: white;
    color: #667eea;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.quick-response-btn:hover {
    background: #667eea;
    color: white;
}

/* Floating Channels */
.floating-channel {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.floating-channel:hover {
    transform: scale(1.1);
}

.whatsapp-channel {
    background: #25D366;
    top: -5%;
    right: -8%;
    animation: floatChannel 4s ease-in-out infinite;
}

.instagram-channel {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    top: 15%;
    left: -8%;
    animation: floatChannel 5s ease-in-out infinite 0.5s;
}

.facebook-channel {
    background: #0084FF;
    top: 45%;
    right: -10%;
    animation: floatChannel 4.5s ease-in-out infinite 1s;
}

.telegram-channel {
    background: #0088cc;
    bottom: 25%;
    left: -5%;
    animation: floatChannel 5.5s ease-in-out infinite 1.5s;
}

.webchat-channel {
    background: #667eea;
    bottom: -5%;
    right: -5%;
    animation: floatChannel 6s ease-in-out infinite 2s;
}

.channel-icon {
    color: white;
    font-size: 1.75rem;
}

.channel-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: #ff5f56;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    border: 3px solid white;
    animation: pulse 2s infinite;
}

/* Unified Features */
.unified-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.unified-feature:nth-child(1) .unified-icon {
    background: #25D366;
}

.unified-feature:nth-child(2) .unified-icon {
    background: #0084FF;
}

.unified-feature:nth-child(3) .unified-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.unified-feature:nth-child(4) .unified-icon {
    background: #0088cc;
}

.unified-feature:nth-child(5) .unified-icon {
    background: #667eea;
}

@keyframes floatInbox {

    0%,
    100% {
        transform: translateY(0px) rotateX(0deg);
    }

    50% {
        transform: translateY(-20px) rotateX(1deg);
    }
}

@keyframes floatChannel {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-8px, -8px) scale(1.05);
    }
}

/* ============================================
   RESPONSIVE FOR NEW SECTIONS
   ============================================ */

@media (max-width: 991px) {
    .dashboard-sidebar {
        width: 60px;
    }

    .sidebar-item span {
        display: none;
    }

    .dashboard-main-content {
        margin-left: 60px;
    }

    .floating-module,
    .floating-stat,
    .floating-channel {
        display: none;
    }

    .chat-window {
        max-width: 100%;
    }

    .inbox-content {
        grid-template-columns: 1fr;
    }

    .active-conversation {
        display: none;
    }

    .inbox-window {
        max-height: 500px;
    }
}

@media (max-width: 575px) {
    .inbox-filters {
        flex-wrap: wrap;
    }

    .filter-btn {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   ROOM OPTIONS & EXTRA USERS STYLES
   ============================================ */

/* Room options styling */
.room-options .room-option {
    transition: all 0.2s ease;
}

.room-options .room-option label {
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--white);
}

.room-options .room-option label:hover {
    background: rgba(8, 145, 178, 0.05);
    border-color: var(--secondary-color) !important;
}

.room-options .room-option input[type="radio"]:checked+span {
    font-weight: 600;
    color: var(--secondary-color);
}

.room-options .room-option input[type="radio"]:checked~.badge {
    background: var(--secondary-color) !important;
}

.room-options .room-price {
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

/* Extra users section styling */
.extra-users-section {
    background: rgba(8, 145, 178, 0.03);
    padding: 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(8, 145, 178, 0.1);
}

.extra-users-input {
    font-size: 1rem;
    border-left: none !important;
    border-right: none !important;
}

.extra-users-input:focus {
    box-shadow: none;
    border-color: var(--secondary-color);
}

.btn-increment,
.btn-decrement {
    transition: all 0.2s ease;
    border-color: var(--gray-light);
}

.btn-increment:hover,
.btn-decrement:hover {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.extra-users-total {
    font-size: 0.9rem;
    padding: 0.35rem 0.75rem;
    transition: all 0.3s ease;
}

/* Prevent card selection when clicking on interactive elements */
.modulo-card .room-options,
.modulo-card .extra-users-section {
    pointer-events: auto;
}

/* Módulos no seleccionables (habitaciones y usuarios) */
.modulo-card.modulo-no-seleccionable {
    cursor: default !important;
}

.modulo-card.modulo-no-seleccionable:hover {
    transform: none;
}

.modulo-card.modulo-no-seleccionable .modulo-check {
    display: none;
}

/* Módulos bloqueados por paquete seleccionado */
.modulo-card.modulo-package-locked {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.15) 0%, rgba(8, 145, 178, 0.08) 100%);
    border: 2px solid var(--secondary-color);
    opacity: 0.85;
    cursor: not-allowed;
}

.modulo-card.modulo-package-locked::before {
    content: '✓ Incluido en tu plan';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.modulo-card.modulo-package-locked .modulo-check {
    background: var(--secondary-color);
    opacity: 1;
}

.modulo-card.modulo-package-locked .modulo-check i {
    color: white;
}

.modulo-card.modulo-package-locked:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(8, 145, 178, 0.3);
}

/* Animación de shake para feedback cuando se intenta deseleccionar */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.shake-animation {
    animation: shake 0.5s ease-in-out;
}

/* Responsive adjustments for room options */
@media (max-width: 768px) {
    .room-options .room-option label {
        font-size: 0.9rem;
        padding: 0.5rem !important;
    }

    .room-price {
        font-size: 0.75rem !important;
    }

    .extra-users-section {
        padding: 0.75rem;
    }

    .mt-phone {
        margin-top: 1rem !important;
    }
}

.grecaptcha-badge {
    bottom: -400px !important;
    right: -400px !important;
}

.p0 {
    padding: 0 !important;
}