.elementor-10118 .elementor-element.elementor-element-9746097{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;overflow:visible;}/* Start custom CSS for html, class: .elementor-element-9f28fc3 */:root {
    --bg-deep: #02060a;
    --glass: rgba(15, 23, 42, 0.8);
    --glass-border: rgba(255, 255, 255, 0.12);
    --accent: #00d1ff;
    --accent-glow: rgba(0, 209, 255, 0.4);
    --text-main: #ffffff;
    --text-dim: #94a3b8;
    --font: 'Inter', sans-serif;
}

body {
    margin: 0; padding: 0;
    font-family: var(--font);
    background: var(--bg-deep);
    color: var(--text-main);
    height: 100dvh;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.bg-glow {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% -20%, #1e3a8a 0%, transparent 60%);
    z-index: -1;
}

#evo-app-container {
    width: 100%; max-width: 430px;
    height: 100dvh;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding-bottom: 120px;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
}

/* Header */
.evo-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px;
}
.logo-wrapper { width: 40%; }
.evo-logo { width: 100%; height: auto; object-fit: contain; }
.evo-notification {
    width: 38px; height: 38px; background: var(--glass);
    border: 1px solid var(--glass-border); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: 0.3s;
}

/* Hero Carousel */
.evo-hero {
    margin: 0 20px 20px; border-radius: 28px;
    background: #0a0f1a; border: 1px solid var(--glass-border);
    position: relative; overflow: hidden;
    height: 300px; display: flex; flex-direction: column;
    justify-content: flex-end; padding: 20px; box-sizing: border-box;
}
.hero-slider { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-slider img {
    width: 100%; height: 100%;
    object-fit: cover; opacity: 0.7; transition: opacity 0.5s ease;
}
.hero-text { position: relative; z-index: 2; max-width: 80%; pointer-events: none; }
.evo-badge {
    background: rgba(0, 209, 255, 0.2); color: var(--accent);
    padding: 4px 10px; border-radius: 10px; font-size: 0.6rem;
    font-weight: 800; text-transform: uppercase;
}
.hero-text h2 { font-size: 1.5rem; margin: 8px 0; font-weight: 800; }
.hero-text p { font-size: 0.8rem; color: var(--text-dim); }

.carousel-indicators {
    position: absolute; bottom: 15px; left: 50%;
    transform: translateX(-50%); display: flex; gap: 6px; z-index: 3;
}
.dot { width: 6px; height: 6px; background: rgba(255,255,255,0.3); border-radius: 50%; transition: 0.3s; }
.dot.active { background: var(--accent); width: 15px; border-radius: 3px; }

/* Services Grid */
.services-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 12px; padding: 0 20px;
}
.service-card {
    background: var(--glass); border: 1px solid var(--glass-border);
    border-radius: 22px; padding: 15px;
    display: flex; flex-direction: column; justify-content: space-between;
    height: 100px; transition: 0.3s; cursor: pointer; position: relative;
}
.service-card:active { transform: scale(0.95); background: rgba(0, 209, 255, 0.1); }
.service-top { display: flex; align-items: center; gap: 10px; }
.service-icon {
    width: 32px; height: 32px; background: rgba(255,255,255,0.05);
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 0.9rem;
}
.service-card h3 { font-size: 0.8rem; margin: 0; font-weight: 600; }
.service-card p { font-size: 0.6rem; color: var(--text-dim); margin: 5px 0 0; }
.service-arrow { position: absolute; bottom: 15px; right: 15px; font-size: 0.7rem; color: var(--text-dim); }

/* Support List */
.section-label { padding: 20px 20px 10px; font-size: 0.75rem; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }
.support-list { padding: 0 20px; display: flex; flex-direction: column; gap: 8px; }
.support-item {
    background: var(--glass); border: 1px solid var(--glass-border);
    border-radius: 18px; padding: 12px 15px;
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer; transition: 0.2s;
}
.support-left { display: flex; align-items: center; gap: 12px; }
.support-icon {
    width: 30px; height: 30px; border-radius: 50%;
    background: rgba(0, 209, 255, 0.1); display: flex; align-items: center; justify-content: center;
    color: var(--accent); font-size: 0.8rem;
}
.support-info strong { display: block; font-size: 0.75rem; font-weight: 600; }
.support-info span { font-size: 0.6rem; color: var(--text-dim); }
.arrow-sm { font-size: 0.7rem; color: var(--text-dim); }

/* Premium Comparador */
.compare-section { margin: 25px 20px; }
.compare-card {
    background: linear-gradient(135deg, rgba(0, 209, 255, 0.1), rgba(15, 23, 42, 0.8));
    border: 1px solid var(--accent); border-radius: 25px;
    display: flex; overflow: hidden; height: 85px;
    cursor: pointer; transition: 0.3s;
}
.compare-card:active { transform: scale(0.98); box-shadow: 0 0 20px var(--accent-glow); }
.compare-left { flex: 1; padding: 15px; display: flex; align-items: center; gap: 12px; }
.compare-action {
    width: 70px; background: var(--accent); 
    display: flex; align-items: center; justify-content: center; color: #000;
}

/* Nav Bottom Pill */
.evo-nav {
    position: fixed; bottom: 20px; left: 50%;
    transform: translateX(-50%);
    width: 75%; max-width: 320px; height: 60px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border); border-radius: 100px;
    display: flex; justify-content: space-around; align-items: center;
    padding: 0 10px; box-sizing: border-box; z-index: 1000;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}
.nav-btn {
    display: flex; flex-direction: column; align-items: center;
    gap: 4px; cursor: pointer; color: var(--text-dim);
    font-size: 0.5rem; transition: 0.3s; flex: 1;
}
.nav-btn i { font-size: 1.2rem; transition: 0.3s; color: var(--text-dim); }
.nav-btn.active { color: var(--accent); }
.nav-btn.active i { color: var(--accent); }

/* Modals & Iframe */
.evo-modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5); display: none;
    justify-content: center; align-items: flex-end; z-index: 2000;
}
.modal-content {
    width: 100%; max-width: 430px; height: 85vh;
    background: #0a0f1a; border-radius: 30px 30px 0 0;
    position: relative; transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    overflow: hidden; box-sizing: border-box;
}
.evo-modal.active { display: flex; }
.evo-modal.active .modal-content { transform: translateY(0); }
.modal-close {
    position: absolute; top: 20px; right: 20px;
    width: 30px; height: 30px; background: rgba(255,255,255,0.1);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 110; color: white; font-size: 1.2rem;
}
.modal-iframe { width: 100%; height: 100%; border: none; background: white; }
#map { width: 100%; height: 100%; z-index: 1; }

/* Model Grid */
.model-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; padding: 20px; }
.model-box {
    background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border);
    border-radius: 20px; padding: 12px; text-align: center; cursor: pointer;
    transition: 0.3s; opacity: 0; transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}
.model-box img { width: 100%; height: 90px; object-fit: cover; border-radius: 15px; margin-bottom: 10px; }
.model-box strong { display: block; font-size: 0.75rem; margin-bottom: 5px; }
.model-box .price { color: var(--accent); font-weight: 800; font-size: 0.8rem; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }/* End custom CSS */