/* ─────────────────────────────────────────────────────────────
   Eventos Biker México - main.css
   Versión limpia con:
   - Tipografía más grande
   - Eventos 3 por fila
   - Patrocinadores 4 por fila
   - Anuncios 2 por fila grandes
   - Navbar/logo y footer consistentes
   ───────────────────────────────────────────────────────────── */

/* ── Variables y reset ────────────────────────────────────── */
:root {
    --ebm-black:       #0d0d0d;
    --ebm-carbon:      #141414;
    --ebm-surface:     #1a1a1a;
    --ebm-surface2:    #222222;
    --ebm-border:      #2a2a2a;
    --ebm-orange:      #FF6B00;
    --ebm-orange-dark: #cc5500;
    --ebm-white:       #f5f5f5;
    --ebm-muted:       #b7b7b7;
    --ebm-fs:          19px;
}

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

html {
    font-size: var(--ebm-fs);
    scroll-behavior: smooth;
}

body {
    background: var(--ebm-black);
    color: var(--ebm-white);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.65;
    font-size: 19px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ── Barra tamaño de letra ────────────────────────────────── */
.fs-bar {
    background: var(--ebm-surface);
    border-bottom: 1px solid var(--ebm-border);
    padding: 7px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
}

.fs-bar span {
    font-size: 15px;
    color: var(--ebm-muted);
    margin-right: 4px;
}

.fs-btn {
    background: var(--ebm-surface2);
    border: 1px solid var(--ebm-border);
    color: var(--ebm-white);
    border-radius: 5px;
    cursor: pointer;
    padding: 6px 14px;
    font-size: 15px;
    transition: all .2s;
}

.fs-btn:hover,
.fs-btn.active {
    background: var(--ebm-orange);
    border-color: var(--ebm-orange);
    color: #fff;
}

/* ── Navegación ───────────────────────────────────────────── */
nav {
    background: var(--ebm-carbon);
    border-bottom: 2px solid var(--ebm-orange);
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
    min-height: 78px;
    position: sticky;
    top: 0;
    z-index: 100;
    overflow: visible;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 78px;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 64px !important;
    width: auto !important;
    max-width: 92px !important;
    object-fit: contain !important;
    display: block !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--ebm-border);
    color: var(--ebm-white);
    font-size: 24px;
    padding: 5px 12px;
    border-radius: 6px;
    cursor: pointer;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 3px;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--ebm-muted);
    font-size: 15px;
    padding: 8px 12px;
    border-radius: 5px;
    border: 1px solid transparent;
    transition: all .2s;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--ebm-orange);
    border-color: var(--ebm-border);
}

.nav-link.orange {
    background: var(--ebm-orange);
    color: #fff;
    border-color: var(--ebm-orange);
    font-weight: 800;
}

.nav-link.orange:hover {
    background: var(--ebm-orange-dark);
    border-color: var(--ebm-orange-dark);
}

.nav-link.nav-active {
    color: var(--ebm-orange);
    border-color: var(--ebm-border);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 430px;
    padding: 62px 20px 50px;
    overflow: hidden;
    background: #0d0d0d;
}

.hero-bg-svg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-svg svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(13,13,13,0.88) 0%,
        rgba(13,13,13,0.55) 50%,
        rgba(13,13,13,0.22) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.hero-badge {
    background: rgba(255,107,0,.12);
    border: 1px solid var(--ebm-orange);
    color: var(--ebm-orange);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 5px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.05;
    color: var(--ebm-white);
}

.hero h1 span {
    color: var(--ebm-orange);
}

.hero p {
    font-size: 1.12rem;
    color: var(--ebm-muted);
    max-width: 680px;
    line-height: 1.65;
}

.hero-stats {
    display: flex;
    gap: 34px;
    margin-top: 8px;
}

.stat-n {
    font-size: 2.05rem;
    font-weight: 900;
    color: var(--ebm-orange);
    line-height: 1;
}

.stat-l {
    font-size: 14px;
    color: var(--ebm-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 3px;
}

.btn-hero {
    margin-top: 8px;
    background: var(--ebm-orange);
    color: #fff;
    font-weight: 800;
    font-size: 1.08rem;
    padding: 14px 30px;
    border-radius: 7px;
    transition: background .2s, transform .2s;
    display: inline-block;
}

.btn-hero:hover {
    background: var(--ebm-orange-dark);
    transform: translateY(-2px);
}

/* ── Buscador ─────────────────────────────────────────────── */
.search-section {
    background: var(--ebm-surface);
    padding: 22px 20px;
    border-bottom: 1px solid var(--ebm-border);
}

.search-title {
    font-size: 16px;
    color: var(--ebm-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 800;
}

.search-form {
    width: 100%;
}

.search-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 10px;
    align-items: end;
}

.field label {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--ebm-white);
    margin-bottom: 6px;
}

.field input,
.field select {
    width: 100%;
    background: var(--ebm-surface2);
    border: 1px solid var(--ebm-border);
    color: var(--ebm-white);
    padding: 13px 14px;
    min-height: 50px;
    border-radius: 5px;
    font-size: 18px;
    outline: none;
    transition: border-color .2s;
    appearance: none;
    -webkit-appearance: none;
}

.field input::placeholder {
    color: #777;
}

.field input:focus,
.field select:focus {
    border-color: var(--ebm-orange);
}

.field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23b7b7b7' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

/* ── Botones buscador ─────────────────────────────────────── */
.search-btns {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    min-width: 280px;
}

.search-btns .btn-search,
.search-btns .btn-reset,
.search-btns button {
    flex: 1;
}

.btn-search,
.btn-reset,
button.btn-reset {
    border-radius: 5px;
    font-weight: 800;
    font-size: 17px !important;
    cursor: pointer;
    white-space: nowrap;
    transition: all .2s;
    min-height: 50px !important;
    height: auto !important;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px !important;
}

.btn-search {
    background: var(--ebm-orange);
    color: #fff;
    border: 2px solid var(--ebm-orange);
}

.btn-search:hover {
    background: var(--ebm-orange-dark);
    border-color: var(--ebm-orange-dark);
}

.btn-reset,
button.btn-reset {
    background: var(--ebm-surface2) !important;
    border: 2px solid var(--ebm-orange) !important;
    color: var(--ebm-orange) !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.btn-reset:hover,
button.btn-reset:hover {
    background: var(--ebm-orange) !important;
    color: #fff !important;
}
.search-active {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
    font-size: 15px;
    color: var(--ebm-muted);
}

.filter-tag {
    background: rgba(255,107,0,.15);
    border: 1px solid rgba(255,107,0,.3);
    color: var(--ebm-orange);
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 15px;
}

.filter-tag a {
    color: var(--ebm-orange);
    font-weight: 800;
    font-size: 14px;
}

.filter-clear {
    color: var(--ebm-muted);
    font-size: 15px;
    text-decoration: underline;
}

.filter-clear:hover {
    color: var(--ebm-orange);
}

/* ── Secciones generales ──────────────────────────────────── */
.section {
    padding: 34px 20px;
}

.section-alt {
    background: var(--ebm-surface);
    border-top: 1px solid var(--ebm-border);
    border-bottom: 1px solid var(--ebm-border);
}

.section-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    gap: 14px;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ebm-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.section-title::before {
    content: '';
    display: block;
    width: 5px;
    height: 22px;
    background: var(--ebm-orange);
    border-radius: 2px;
    flex-shrink: 0;
}

.ver-todos {
    font-size: 16px;
    color: var(--ebm-orange);
    border: 1px solid var(--ebm-orange);
    padding: 7px 14px;
    border-radius: 5px;
    white-space: nowrap;
    transition: all .2s;
    font-weight: 700;
}

.ver-todos:hover {
    background: var(--ebm-orange);
    color: #fff;
}

.no-results {
    color: var(--ebm-muted);
    font-size: 1.05rem;
    padding: 20px 0;
}

.no-results a {
    color: var(--ebm-orange);
}

/* ── Tarjetas de eventos: 3 por fila ──────────────────────── */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.event-card {
    background: var(--ebm-surface);
    border: 1px solid var(--ebm-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s, transform .25s, box-shadow .25s;
    display: block;
    color: var(--ebm-white);
    height: 100%;
}

.event-card:hover {
    border-color: var(--ebm-orange);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,.35);
}

.event-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.event-img-placeholder {
    width: 100%;
    height: 260px;
    background: var(--ebm-surface2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
}

.event-body {
    padding: 18px;
}

.event-tag {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--ebm-orange);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.event-name {
    font-size: 1rem;
    font-weight: 900;
    color: var(--ebm-white);
    line-height: 1.3;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.event-meta {
    font-size: .95rem;
    color: var(--ebm-muted);
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1.45;
}

.event-meta span {
    text-transform: capitalize;
}

.event-status {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 4px;
    margin-top: 10px;
}

.status-activo {
    background: rgba(22,163,74,.15);
    color: #4ade80;
    border: 1px solid rgba(22,163,74,.3);
}

.status-proximo {
    background: rgba(255,107,0,.15);
    color: var(--ebm-orange);
    border: 1px solid rgba(255,107,0,.3);
}

.status-finalizado {
    background: rgba(85,85,85,.15);
    color: #aaa;
    border: 1px solid rgba(85,85,85,.3);
}

/* ── Motos en venta ───────────────────────────────────────── */
.motos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.moto-card {
    background: var(--ebm-surface);
    border: 1px solid var(--ebm-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s, transform .25s, box-shadow .25s;
    display: block;
    color: var(--ebm-white);
}

.moto-card:hover {
    border-color: var(--ebm-orange);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,.35);
}

.moto-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.moto-img-placeholder {
    width: 100%;
    height: 260px;
    background: var(--ebm-surface2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
}

.moto-body {
    padding: 18px;
}

.moto-price {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--ebm-orange);
    margin-bottom: 6px;
}

.moto-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--ebm-white);
    margin-bottom: 6px;
}

.moto-meta {
    font-size: .95rem;
    color: var(--ebm-muted);
}

.moto-badge {
    display: inline-block;
    font-size: 13px;
    background: var(--ebm-orange);
    color: #fff;
    padding: 3px 9px;
    border-radius: 4px;
    margin-top: 8px;
    font-weight: 800;
}

/* ── Patrocinadores: 4 por fila ───────────────────────────── */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sponsor-card {
    background: var(--ebm-surface);
    border: 1px solid var(--ebm-border);
    border-radius: 14px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    min-height: 220px;
    transition: border-color .2s, transform .25s, box-shadow .25s;
}

.sponsor-card:hover {
    border-color: var(--ebm-orange);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,.35);
}

.sponsor-card-cta {
    border-style: dashed;
    cursor: pointer;
}

.sponsor-logo,
.sponsor-logo-placeholder {
    width: 100%;
    height: 120px;
    min-width: 0;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid var(--ebm-border);
    background: var(--ebm-surface2);
    flex-shrink: 0;
}

.sponsor-logo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.sponsor-info {
    flex: 1;
    min-width: 0;
}

.sponsor-name {
    font-size: 1rem;
    font-weight: 900;
    color: var(--ebm-white);
    margin-bottom: 7px;
    line-height: 1.35;
    letter-spacing: .5px;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.sponsor-name.orange {
    color: var(--ebm-orange);
}

.sponsor-desc {
    font-size: .95rem;
    color: var(--ebm-muted);
    line-height: 1.5;
    margin-bottom: 3px;
    text-transform: capitalize;
}

.sponsor-loc {
    font-size: .95rem;
    color: var(--ebm-orange);
    margin-top: 6px;
    display: block;
    font-weight: 700;
}

/* ── Anuncios: 2 por fila grandes ─────────────────────────── */
.ads-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.ad-card {
    background: var(--ebm-surface);
    border: 1px solid var(--ebm-border);
    border-radius: 18px;
    overflow: hidden;
    transition: border-color .2s, transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
    min-height: 520px;
}

.ad-card:hover {
    border-color: var(--ebm-orange);
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,.35);
}

.ad-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 0;
    background: var(--ebm-surface2);
    border: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.ad-body {
    padding: 22px;
}

.ad-cat {
    font-size: 15px;
    color: var(--ebm-orange);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.ad-name {
    font-size: 24px;
    font-weight: 900;
    color: var(--ebm-white);
    margin: 10px 0;
    line-height: 1.2;
}

.ad-desc {
    font-size: 17px;
    color: var(--ebm-muted);
    line-height: 1.6;
}

/* ── Sección Apps ─────────────────────────────────────────── */
.apps-section {
    background: var(--ebm-surface);
    border-top: 1px solid var(--ebm-border);
    border-bottom: 1px solid var(--ebm-border);
    padding: 32px 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.apps-text h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--ebm-white);
    margin-bottom: 5px;
}

.apps-text p {
    font-size: 1.05rem;
    color: var(--ebm-muted);
}

.app-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.app-btn {
    background: var(--ebm-surface2);
    border: 1px solid var(--ebm-border);
    border-radius: 9px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 11px;
    transition: border-color .2s;
}

.app-btn:hover {
    border-color: var(--ebm-orange);
}

.app-btn span {
    font-size: 26px;
}

.app-btn small {
    font-size: 13px;
    color: var(--ebm-muted);
    display: block;
}

.app-btn strong {
    font-size: 16px;
    color: var(--ebm-white);
    display: block;
}

/* ── Facebook ─────────────────────────────────────────────── */
.fb-wall {
    background: var(--ebm-surface);
    border: 1px solid var(--ebm-border);
    border-radius: 10px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ── Histórico ────────────────────────────────────────────── */
.table-wrap {
    overflow-x: auto;
    border-radius: 10px;
    border: 1px solid var(--ebm-border);
}

.historico-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 17px;
}

.historico-table th {
    background: var(--ebm-surface2);
    color: var(--ebm-muted);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--ebm-border);
    white-space: nowrap;
}

.historico-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--ebm-border);
    color: var(--ebm-white);
    text-transform: capitalize;
    font-size: 17px;
}

.historico-table td:first-child {
    color: var(--ebm-muted);
    font-size: 15px;
    white-space: nowrap;
    text-transform: uppercase;
}

.historico-table tr:last-child td {
    border-bottom: none;
}

.historico-table tr:hover td {
    background: var(--ebm-surface2);
}

/* ── Contacto ─────────────────────────────────────────────── */
.contacto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
}

.contacto-card {
    background: var(--ebm-surface);
    border: 1px solid var(--ebm-border);
    border-radius: 10px;
    padding: 26px;
}

.contacto-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--ebm-orange);
    margin-bottom: 13px;
}

.contacto-card p {
    font-size: 1.02rem;
    color: var(--ebm-muted);
    margin-bottom: 15px;
    line-height: 1.65;
}

.contacto-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.contacto-card ul li {
    font-size: 1.02rem;
    color: var(--ebm-muted);
    padding-left: 16px;
    position: relative;
}

.contacto-card ul li::before {
    content: '▸';
    color: var(--ebm-orange);
    position: absolute;
    left: 0;
}

.btn-whatsapp,
.btn-email {
    display: block;
    padding: 15px 18px;
    border-radius: 7px;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 11px;
    transition: opacity .2s;
    text-align: center;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.btn-email {
    background: var(--ebm-surface2);
    border: 1px solid var(--ebm-border);
    color: var(--ebm-white);
}

.btn-whatsapp:hover,
.btn-email:hover {
    opacity: .85;
}

.contador {
    margin-top: 16px;
    text-align: center;
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
    background: var(--ebm-carbon);
    border-top: 2px solid var(--ebm-orange);
    padding: 36px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    font-size: 17px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 900;
    color: var(--ebm-white);
    letter-spacing: 1px;
    margin-bottom: 11px;
}

.footer-logo span {
    color: var(--ebm-orange);
}

.footer-brand p {
    font-size: 17px;
    color: var(--ebm-muted);
    line-height: 1.65;
    margin-top: 5px;
}

.footer-links h4 {
    font-size: 16px;
    color: var(--ebm-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 11px;
}

.footer-links a {
    display: block;
    font-size: 17px;
    color: var(--ebm-muted);
    margin-bottom: 8px;
    transition: color .2s;
}

.footer-links a:hover {
    color: var(--ebm-orange);
}

.footer-bottom {
    background: var(--ebm-black);
    border-top: 1px solid var(--ebm-border);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 16px;
}

.footer-bottom p,
.footer-bottom div {
    font-size: 16px;
    color: #777;
}

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb-bar {
    background: var(--ebm-surface);
    border-bottom: 1px solid var(--ebm-border);
    padding: 11px 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--ebm-muted);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--ebm-orange);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ── Detalle del evento: diseño anterior compatible ───────── */
.event-detail {
    max-width: 1120px;
    margin: 0 auto;
    padding: 22px 18px 44px;
}

.event-hero {
    width: min(100%, 520px);
    height: auto !important;
    max-height: none !important;
    margin: 0 auto 22px;
    background: #050505;
    border: 1px solid var(--ebm-border);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,.35);
    position: relative;
}

.event-hero-img {
    width: 100%;
    height: auto !important;
    max-height: 620px;
    object-fit: contain !important;
    object-position: center;
    background: #000;
}

.event-hero-placeholder {
    width: 100%;
    height: 360px !important;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    background: var(--ebm-surface2);
}

.event-hero-overlay {
    position: absolute;
    left: 14px;
    bottom: 14px;
}

.event-status-badge {
    font-size: 13px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
}

.event-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 22px;
    padding: 0;
    align-items: start;
}

.event-info-col,
.event-map-col {
    background: var(--ebm-surface);
    border: 1px solid var(--ebm-border);
    border-radius: 14px;
    padding: 22px;
}

.event-detail-title {
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--ebm-white);
    line-height: 1.12;
    margin-bottom: 18px;
    letter-spacing: .5px;
}

.event-data-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.event-data-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--ebm-surface2);
    border: 1px solid var(--ebm-border);
    border-radius: 12px;
    padding: 14px;
}

.event-data-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    background: rgba(255,107,0,.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.event-data-label {
    color: var(--ebm-orange);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 4px;
}

.event-data-value {
    color: var(--ebm-white);
    font-size: .95rem;
    font-weight: 700;
    line-height: 1.35;
    text-transform: capitalize;
}

.event-whatsapp {
    color: #25D366;
    font-weight: 800;
}

.event-whatsapp:hover {
    text-decoration: underline;
}

.event-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.btn-action {
    border-radius: 12px;
    padding: 13px 14px;
    font-size: .92rem;
    font-weight: 800;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    transition: opacity .2s, transform .2s;
}

.btn-action:hover {
    opacity: .85;
    transform: translateY(-1px);
}

.btn-facebook {
    background: #1877F2;
    color: #fff;
}

.btn-web {
    background: var(--ebm-surface2);
    border: 1px solid var(--ebm-border);
    color: var(--ebm-white);
}

.btn-mapa {
    background: #34A853;
    color: #fff;
}

.btn-anunciar {
    background: var(--ebm-orange);
    color: #fff;
}

/* ── Detalle del evento: nuevo diseño con cards ───────────── */
.event-detail-card {
    max-width: 1180px;
    margin: 30px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 24px;
    align-items: start;
}

.event-flyer-card,
.event-info-card {
    background: var(--ebm-surface);
    border: 1px solid var(--ebm-border);
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,.35);
}

.event-flyer-card {
    padding: 16px;
}

.event-flyer-wrap {
    position: relative;
    background: #050505;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--ebm-border);
}

.event-flyer-img {
    width: 100%;
    max-height: 650px;
    height: auto;
    object-fit: contain;
    display: block;
    background: #000;
}

.event-info-card {
    padding: 24px;
}

.event-category {
    display: inline-block;
    color: var(--ebm-orange);
    border: 1px solid rgba(255,107,0,.35);
    background: rgba(255,107,0,.12);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.event-section-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--ebm-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-section-title::before {
    content: '';
    display: block;
    width: 5px;
    height: 20px;
    background: var(--ebm-orange);
    border-radius: 2px;
}

.map-embed-wrap {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--ebm-border);
}

.map-embed-wrap iframe {
    min-height: 300px;
}

/* ── Histórico header y paginación ────────────────────────── */
.historico-header {
    background: var(--ebm-carbon);
    border-bottom: 1px solid var(--ebm-border);
    padding: 34px 20px 26px;
    text-align: center;
}

.historico-header h1 {
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--ebm-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 7px;
}

.historico-header p {
    font-size: 1rem;
    color: var(--ebm-orange);
    font-weight: 800;
}

.paginacion {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.pag-btn {
    background: var(--ebm-surface);
    border: 1px solid var(--ebm-border);
    color: var(--ebm-muted);
    padding: 9px 15px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 700;
    transition: all .2s;
    min-width: 42px;
    text-align: center;
}

.pag-btn:hover {
    border-color: var(--ebm-orange);
    color: var(--ebm-orange);
}

.pag-active {
    background: var(--ebm-orange);
    border-color: var(--ebm-orange);
    color: #fff;
}

.pag-info {
    text-align: center;
    font-size: 15px;
    color: var(--ebm-muted);
    margin-top: 13px;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sponsors-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-detail-card {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }
}

@media (max-width: 900px) {
    footer {
        grid-template-columns: 1fr 1fr;
    }

    .search-grid {
        grid-template-columns: 1fr 1fr;
    }

    .search-grid .field:first-child {
        grid-column: 1 / -1;
    }

    .search-btns {
        grid-column: 1 / -1;
        flex-direction: row;
    }

    .event-main {
        grid-template-columns: 1fr;
    }

    .event-data-grid {
        grid-template-columns: 1fr;
    }

    .event-hero {
        width: min(100%, 430px);
    }

    .event-hero-img {
        max-height: 540px;
    }

    .event-flyer-img {
        max-height: 540px;
    }
}

@media (max-width: 768px) {
    :root {
        --ebm-fs: 18px;
    }

    body {
        font-size: 18px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-logo-img {
        height: 58px !important;
        max-width: 82px !important;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: var(--ebm-carbon);
        border-bottom: 2px solid var(--ebm-orange);
        flex-direction: column;
        align-items: stretch;
        padding: 10px;
        gap: 4px;
        z-index: 99;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-link {
        padding: 11px 14px;
        font-size: 17px;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .events-grid,
    .motos-grid,
    .sponsors-grid,
    .ads-grid {
        grid-template-columns: 1fr;
    }

    .event-img,
    .moto-img {
        height: 220px;
    }

    .ad-card {
        min-height: auto;
    }

    .ad-img {
        height: 220px;
    }

    footer {
        grid-template-columns: 1fr;
    }

    .apps-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-actions {
        grid-template-columns: 1fr;
    }

    .event-detail-card {
        padding: 0 14px;
    }
}

@media (max-width: 480px) {
    .search-grid {
        grid-template-columns: 1fr;
    }

    .search-btns {
        flex-direction: row;
    }

    .hero h1 {
        font-size: 1.65rem;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-n {
        font-size: 1.6rem;
    }

    .section-hdr {
        flex-direction: column;
        align-items: flex-start;
    }

    .event-flyer-img {
        max-height: 420px;
    }

    .event-info-card,
    .event-info-col,
    .event-map-col {
        padding: 16px;
    }

    .footer-bottom {
        align-items: flex-start;
        justify-content: flex-start;
    }
}
/* FORZAR BOTONES EN LA MISMA FILA */

/* Botones del buscador */
.search-btns {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    align-items: stretch !important;
    justify-content: center !important;
    width: 100% !important;
}

.search-btns .btn-search,
.search-btns .btn-reset,
.search-btns button {
    flex: 1 1 0 !important;
    width: auto !important;
    min-width: 130px !important;
}

/* Botones de descarga de la app */
.app-btns,
.app-downloads {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    align-items: center !important;
}

.app-btn,
.app-store-btn {
    width: auto !important;
    flex: 0 1 auto !important;
}

/* En celular siguen en fila, pero compactos */
@media (max-width: 480px) {
    .search-btns {
        flex-direction: row !important;
        gap: 8px !important;
    }

    .search-btns .btn-search,
    .search-btns .btn-reset,
    .search-btns button {
        min-width: 0 !important;
        font-size: 15px !important;
        padding: 10px 12px !important;
    }

    .app-btns,
    .app-downloads {
        flex-direction: row !important;
    }

    .app-btn,
    .app-store-btn {
        flex: 1 1 calc(50% - 8px) !important;
        justify-content: center !important;
    }
}
/* HERO NUEVO */

.hero{
    background:#050505;
    padding:60px 40px;
    overflow:hidden;
}

.hero-wrap{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns: 1fr 600px;
    gap:50px;
    align-items:center;
}

.hero-left h1{
    font-size:clamp(3rem,7vw,5.5rem);
    line-height:.95;
    font-weight:900;
    text-transform:uppercase;
    margin:20px 0;
}

.hero-left h1 span{
    color:var(--ebm-orange);
    display:block;
}

.hero-left p{
    font-size:1.2rem;
    max-width:650px;
    margin-bottom:30px;
}

.hero-right{
    text-align:center;
}

.hero-promo-img{
    width:100%;
    max-width:650px;
    margin:auto;

    filter:
        drop-shadow(0 20px 40px rgba(255,107,0,.25));
}

.hero-buttons{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.btn-hero-outline{
    border:2px solid var(--ebm-orange);
    color:var(--ebm-orange);
    padding:14px 28px;
    border-radius:10px;
    font-weight:800;
    transition:.3s;
}

.btn-hero-outline:hover{
    background:var(--ebm-orange);
    color:white;
}

@media(max-width:1100px){

    .hero-wrap{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-left p{
        margin:auto auto 25px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-right{
        order:-1;
    }

    .hero-promo-img{
        max-width:550px;
    }
}

/* HERO 2 COLUMNAS - CORRECCIÓN FINAL */

.hero {
  background: #050505 !important;
  padding: 50px 30px !important;
  min-height: auto !important;
}

.hero-wrap {
  max-width: 1400px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 42% 58% !important;
  gap: 35px !important;
  align-items: center !important;
}

.hero-left {
  position: relative !important;
  z-index: 2 !important;
}

.hero-left h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem) !important;
  line-height: .95 !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  margin: 18px 0 !important;
  color: #fff !important;
}

.hero-left h1 span {
  display: block !important;
  color: var(--ebm-orange) !important;
}

.hero-left p {
  font-size: 1.15rem !important;
  max-width: 620px !important;
  color: var(--ebm-muted) !important;
}

.hero-right {
  position: relative !important;
  z-index: 1 !important;
}

.hero-promo-img {
  width: 100% !important;
  max-width: 780px !important;
  height: auto !important;
  display: block !important;
  margin-left: auto !important;
  object-fit: contain !important;
}

.hero-buttons {
  display: flex !important;
  flex-direction: row !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
  margin-top: 24px !important;
}

.btn-hero-outline {
  border: 2px solid var(--ebm-orange) !important;
  color: var(--ebm-orange) !important;
  padding: 14px 28px !important;
  border-radius: 10px !important;
  font-weight: 800 !important;
  display: inline-flex !important;
  align-items: center !important;
}

.btn-hero-outline:hover {
  background: var(--ebm-orange) !important;
  color: #fff !important;
}

/* En móvil sí se apila */
@media (max-width: 900px) {
  .hero-wrap {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .hero-right {
    order: -1 !important;
  }

  .hero-promo-img {
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .hero-stats,
  .hero-buttons {
    justify-content: center !important;
  }
}


/* ── Sección de precios ─────────────────────────────────────── */
.precios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}

.precio-card {
  background: #111;
  border: 1px solid #2b2b2b;
  border-radius: 22px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform .2s, border-color .2s;
}

.precio-card:hover {
  transform: translateY(-4px);
  border-color: #ff6b00;
}

.precio-card--destacado {
  border-color: #ff6b00;
  background: #161616;
}

.precio-badge {
  position: absolute;
  top: -14px;
  background: #ff6b00;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.precio-icono {
  font-size: 48px;
  margin-bottom: 12px;
}

.precio-nombre {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 16px;
}

.precio-monto {
  font-size: 52px;
  font-weight: 900;
  color: #ff6b00;
  line-height: 1;
  margin-bottom: 8px;
}

.precio-monto span {
  font-size: 18px;
  font-weight: 600;
  color: #aaa;
}

.precio-vigencia {
  color: #888;
  font-size: 13px;
  margin: 0 0 20px;
}

.precio-lista {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
  width: 100%;
}

.precio-lista li {
  color: #ccc;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid #222;
}

.precio-lista li:last-child {
  border-bottom: none;
}

.precio-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: #ff6b00;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  border-radius: 14px;
  text-decoration: none;
  text-align: center;
  margin-top: auto;
  transition: background .15s;
}

.precio-btn:hover { background: #e05e00; }

.precio-btn--gold {
  background: linear-gradient(135deg, #c8960c 0%, #f5c518 100%);
  color: #1a1a00;
}

.precio-btn--gold:hover { background: #c8960c; }

@media (max-width: 860px) {
  .precios-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }
}

/* ── Panel de pago en formularios de admin ──────────────────── */
.pago-panel {
  max-width: 480px;
  margin: 40px auto;
  background: #111;
  border: 1px solid #2b2b2b;
  border-radius: 22px;
  padding: 40px 32px;
  text-align: center;
}

.pago-panel__icono { font-size: 64px; margin-bottom: 12px; }

.pago-panel__titulo {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  margin: 0 0 12px;
}

.pago-panel__desc {
  color: #aaa;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 24px;
}

.pago-panel__precio {
  font-size: 56px;
  font-weight: 900;
  color: #ff6b00;
  line-height: 1;
  margin-bottom: 6px;
}

.pago-panel__precio span {
  font-size: 18px;
  color: #888;
  font-weight: 500;
}

.pago-panel__vigencia {
  color: #666;
  font-size: 13px;
  margin: 0 0 28px;
}

.pago-panel__btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: #ff6b00;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  border-radius: 14px;
  text-decoration: none;
  margin-bottom: 12px;
  transition: background .15s;
}

.pago-panel__btn:hover { background: #e05e00; }

.pago-panel__btn--gold {
  background: linear-gradient(135deg, #c8960c 0%, #f5c518 100%);
  color: #1a1a00;
}

.pago-panel__btn--gold:hover { background: #c8960c; color: #fff; }

.pago-panel__hint {
  color: #555;
  font-size: 13px;
  margin: 0;
}

/* =====================================================
   PUBLICA CON NOSOTROS - CARDS MODERNAS
   Pega este bloque al final de main.css
===================================================== */

#precios {
    background:
        radial-gradient(circle at top left, rgba(255,107,0,.12), transparent 32%),
        linear-gradient(180deg, #111 0%, #0d0d0d 100%);
}

#precios .section-hdr {
    max-width: 1180px;
    margin: 0 auto 26px;
    align-items: flex-end;
}

#precios .section-hdr p {
    color: var(--ebm-muted) !important;
    font-size: 17px !important;
    font-weight: 600;
}

.precios-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 26px !important;
    max-width: 1180px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.precio-card {
    position: relative !important;
    overflow: hidden !important;
    background:
        linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)),
        var(--ebm-carbon) !important;
    border: 1px solid var(--ebm-border) !important;
    border-radius: 22px !important;
    padding: 30px 26px !important;
    min-height: 520px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: left !important;
    box-shadow: 0 16px 38px rgba(0,0,0,.35) !important;
    transition: transform .25s, border-color .25s, box-shadow .25s !important;
}

.precio-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,107,0,.13), transparent 34%);
    pointer-events: none;
}

.precio-card:hover {
    transform: translateY(-6px) !important;
    border-color: var(--ebm-orange) !important;
    box-shadow: 0 22px 46px rgba(0,0,0,.48) !important;
}

.precio-card--destacado,
.precio-card.destacado {
    border: 2px solid var(--ebm-orange) !important;
    background:
        radial-gradient(circle at top right, rgba(255,107,0,.22), transparent 36%),
        linear-gradient(180deg, #1b1b1b 0%, #121212 100%) !important;
    transform: scale(1.03);
}

.precio-card--destacado:hover,
.precio-card.destacado:hover {
    transform: scale(1.03) translateY(-6px) !important;
}

.precio-card.patrocinador {
    background:
        radial-gradient(circle at top right, rgba(245,197,24,.18), transparent 34%),
        linear-gradient(180deg, #1d1608 0%, #141414 100%) !important;
    border-color: rgba(245,197,24,.32) !important;
}

.precio-badge,
.popular-badge {
    position: absolute !important;
    top: 18px !important;
    right: 18px !important;
    left: auto !important;
    background: var(--ebm-orange) !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    padding: 7px 14px !important;
    border-radius: 999px !important;
    text-transform: uppercase !important;
    letter-spacing: .8px !important;
    z-index: 2 !important;
}

.popular-badge {
    background: #ffcc00 !important;
    color: #111 !important;
}

.precio-icono,
.precio-icono-big {
    width: 82px !important;
    height: 82px !important;
    border-radius: 22px !important;
    background: rgba(255,107,0,.14) !important;
    border: 1px solid rgba(255,107,0,.35) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 42px !important;
    margin: 0 0 24px !important;
    position: relative !important;
    z-index: 1 !important;
}

.precio-nombre,
.precio-card .ad-name {
    color: var(--ebm-white) !important;
    font-size: 1.35rem !important;
    font-weight: 950 !important;
    line-height: 1.15 !important;
    margin: 0 0 14px !important;
    text-transform: uppercase !important;
    position: relative !important;
    z-index: 1 !important;
}

.precio-card .ad-cat {
    color: var(--ebm-orange) !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 12px !important;
    position: relative !important;
    z-index: 1 !important;
}

.precio-card .ad-desc {
    color: var(--ebm-muted) !important;
    font-size: 17px !important;
    line-height: 1.6 !important;
    margin-bottom: 18px !important;
    position: relative !important;
    z-index: 1 !important;
}

.precio-monto {
    color: var(--ebm-orange) !important;
    font-size: 48px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    margin: 18px 0 8px !important;
    text-align: left !important;
    position: relative !important;
    z-index: 1 !important;
}

.precio-monto span {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--ebm-muted) !important;
}

.precio-vigencia,
.precio-extra {
    color: #c8c8c8 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    margin: 0 0 22px !important;
    text-align: left !important;
    position: relative !important;
    z-index: 1 !important;
}

.precio-lista {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 26px !important;
    width: 100% !important;
    position: relative !important;
    z-index: 1 !important;
}

.precio-lista li {
    color: #d6d6d6 !important;
    font-size: 16px !important;
    padding: 9px 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.07) !important;
}

.precio-lista li:last-child {
    border-bottom: none !important;
}

.precio-btn {
    margin-top: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    min-height: 52px !important;
    padding: 14px 18px !important;
    background: var(--ebm-orange) !important;
    color: #fff !important;
    border-radius: 14px !important;
    font-size: 16px !important;
    font-weight: 950 !important;
    text-align: center !important;
    transition: background .2s, transform .2s !important;
    position: relative !important;
    z-index: 1 !important;
}

.precio-btn:hover {
    background: var(--ebm-orange-dark) !important;
    transform: translateY(-2px) !important;
}

.precio-btn--gold,
.precio-btn.gold {
    background: linear-gradient(135deg, #c8960c 0%, #f5c518 100%) !important;
    color: #1a1a00 !important;
}

.precio-btn--gold:hover,
.precio-btn.gold:hover {
    background: #c8960c !important;
    color: #fff !important;
}

.precio-card .ad-body {
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    position: relative !important;
    z-index: 1 !important;
}

@media (max-width: 1100px) {
    .precios-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .precio-card--destacado,
    .precio-card.destacado {
        transform: none !important;
    }

    .precio-card--destacado:hover,
    .precio-card.destacado:hover {
        transform: translateY(-6px) !important;
    }
}

@media (max-width: 700px) {
    #precios .section-hdr {
        align-items: flex-start !important;
    }

    .precios-grid {
        grid-template-columns: 1fr !important;
        padding: 0 14px !important;
    }

    .precio-card {
        min-height: auto !important;
        padding: 26px 22px !important;
    }

    .precio-monto {
        font-size: 42px !important;
    }
}
