/* Fondo sección */
.ec-expo-section{
    width:100%;
    background:#050510;
    padding:60px 0;
}
.ec-expo-section--password{
    padding:80px 0;
}

/* Contenedor */
.ec-expo-wrapper{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px 40px;
}
.ec-expo-heading{
    text-align:center;
    font-size:32px;
    font-weight:700;
    margin-bottom:30px;
    color:#ffffff;
    text-shadow:0 8px 30px rgba(0,0,0,.7);
}

/* Grid: 3 por fila */
.ec-expo-coches{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}
@media (max-width:1100px){
    .ec-expo-coches{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:700px){
    .ec-expo-coches{grid-template-columns:1fr;}
}

/* Card */
.ec-coche-card{
    background:radial-gradient(circle at top left,#b46af8 0,#181827 45%,#050510 100%);
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 26px 60px rgba(0,0,0,.85);
    border:1px solid rgba(255,255,255,.06);
    display:flex;
    flex-direction:column;
    color:#e5e7eb;
    backdrop-filter:blur(10px);
}

/* Slider */
.ec-coche-slider{
    position:relative;
    overflow:hidden;
    height:260px;
    background:#020617;
}
.ec-coche-slider-track{
    display:flex;
    height:100%;
    transition:transform .35s ease;
}
.ec-coche-slide{
    min-width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
}
.ec-coche-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Botones slider */
.ec-slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    border:none;
    width:34px;
    height:34px;
    border-radius:999px;
    background:rgba(15,23,42,.85);
    color:#f9fafb;
    cursor:pointer;
    font-size:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,0,0,.65);
    transition:background .2s ease,transform .2s ease,box-shadow .2s ease;
}
.ec-slider-btn--prev{left:12px;}
.ec-slider-btn--next{right:12px;}
.ec-slider-btn:hover{
    background:linear-gradient(135deg,#a855f7,#ec4899);
    transform:translateY(-50%) scale(1.05);
    box-shadow:0 14px 30px rgba(168,85,247,.8);
}

/* Contenido card */
.ec-coche-body{
    padding:18px 20px 20px;
}
.ec-coche-title{
    margin:0 0 12px;
    font-size:18px;
    font-weight:600;
    color:#f9fafb;
}

/* Meta */
.ec-coche-meta{
    list-style:none;
    padding:0;
    margin:0;
    font-size:14px;
}
.ec-coche-meta li{
    display:flex;
    justify-content:space-between;
    margin-bottom:4px;
    border-bottom:1px dashed rgba(148,163,184,.35);
    padding-bottom:4px;
}
.ec-coche-meta li span{
    color:#9ca3af;
}
.ec-coche-meta li strong{
    color:#f9fafb;
}
.ec-precio-eur{
    display:inline-block;
    margin-left:6px;
    font-size:12px;
    color:#a5b4fc;
}
.ec-tipo-cambio-nota{
    margin:10px 0 0;
    font-size:11px;
    color:#9ca3af;
}

/* Área protegida */
.ec-expo-protegida{
    display:flex;
    justify-content:center;
    padding:0 20px;
}
.ec-expo-protegida-inner{
    max-width:480px;
    width:100%;
    background:radial-gradient(circle at top left,#b46af8 0,#181827 55%,#050510 100%);
    border-radius:22px;
    padding:26px 24px 28px;
    box-shadow:0 26px 60px rgba(0,0,0,.9);
    border:1px solid rgba(255,255,255,.08);
    text-align:center;
    color:#e5e7eb;
}
.ec-expo-title{
    margin:0 0 8px;
    font-size:20px;
    font-weight:700;
    color:#ffffff;
}
.ec-expo-text{
    margin:0 0 18px;
    font-size:14px;
    color:#cbd5f5;
}
.ec-expo-error{
    margin:0 0 10px;
    font-size:13px;
    color:#fecaca;
}

/* Form contraseña */
.ec-expo-form{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    justify-content:center;
}
.ec-expo-input{
    flex:1 1 200px;
    min-width:0;
    border-radius:999px;
    border:1px solid rgba(148,163,184,.7);
    padding:8px 14px;
    background:rgba(15,23,42,.95);
    color:#e5e7eb;
    font-size:14px;
    outline:none;
    transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
}
.ec-expo-input:focus{
    border-color:#a855f7;
    box-shadow:0 0 0 1px rgba(168,85,247,.7);
    background:rgba(15,23,42,1);
}

/* Botón entrar */
.ec-expo-btn{
    border-radius:999px;
    border:none;
    padding:8px 20px;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    background:#7c3aed;
    color:#ffffff !important;
    text-transform:uppercase;
    letter-spacing:.06em;
    box-shadow:0 12px 30px rgba(124,58,237,.85);
    transition:transform .2s ease,box-shadow .2s ease,filter .2s ease;
}
.ec-expo-btn:hover{
    transform:translateY(-1px);
    filter:brightness(1.06);
    box-shadow:0 18px 38px rgba(124,58,237,1);
}

/* Sin imagen */
.ec-coche-img--noimg{
    background:rgba(15,23,42,.9);
    color:rgba(255,255,255,.7);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    height:260px;
}

/* Filtro de marcas */
.ec-filtro-marcas{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:24px;
    color:#e5e7eb;
    font-size:14px;
}
.ec-filtro-marcas label{
    font-weight:600;
}
.ec-filtro-marcas select{
    border-radius:999px;
    border:1px solid rgba(148,163,184,.7);
    padding:6px 12px;
    background:#020617;
    color:#e5e7eb;
    font-size:14px;
    outline:none;
    min-width:180px;
}
.ec-filtro-marcas select:focus{
    border-color:#a855f7;
    box-shadow:0 0 0 1px rgba(168,85,247,.7);
}
