@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #facc15;
    --primary-dark: #eab308;
    --primary-light: #fef08a;
    --secondary: #1e293b;
    --accent: #2563eb;
    --background: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgba(234, 179, 8, 0.1), 0 2px 4px -2px rgba(234, 179, 8, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(234, 179, 8, 0.2), 0 4px 6px -4px rgba(234, 179, 8, 0.1);
    --shadow-yellow: 0 8px 24px rgba(250, 204, 21, 0.3);
    --radius-lg: 1rem;
    --radius-md: 0.75rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
}

h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

h3 {
    font-size: 2.25rem;
    margin-bottom: 3rem;
    color: var(--text-main);
    position: relative;
    display: inline-block;
}

h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

/* Header y Navegación */
.header {
    position: fixed;
    top: 0;
    background: var(--glass);
    backdrop-filter: blur(12px);
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 8px;
}

.menu-toggle i {
    width: 28px;
    height: 28px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.logo-movi {
    color: #F5C518;
}

.logo-seguro {
    color: #1A6EBD;
}

.navegacion ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

.navegacion a {
    color: var(--text-main);
    font-weight: 500;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.navegacion a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.navegacion a:hover {
    color: var(--primary);
}

.navegacion a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.1) 100%), url('img/newhero.png') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 60px;
    color: var(--white);
    overflow: visible;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-left {
    flex: 1;
    max-width: 650px;
    text-align: left;
}

.hero-left h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
    color: var(--white);
    text-shadow: none;
    text-transform: uppercase;
}

.hero-left h1 .highlight {
    color: #facc15;
}

.hero-left h1 .taxi-badge {
    background: #facc15;
    color: #000;
    font-size: 1.2rem;
    padding: 4px 12px;
    border-radius: 8px;
    vertical-align: middle;
    margin-left: 10px;
    font-style: italic;
    font-weight: 900;
    letter-spacing: 1px;
    display: inline-block;
    transform: skewX(-10deg);
}

.hero-left p {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin-bottom: 2rem;
    max-width: 500px;
    font-weight: 400;
}

.hero-search-form {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 8px 8px 8px 20px;
    border-radius: 50px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hero-search-form .search-icon {
    color: #94a3b8;
    margin-right: 10px;
}

.hero-search-form input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--text-main);
    background: transparent;
    padding: 0;
}

.hero-search-form button {
    background: #facc15;
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-search-form button:hover {
    background: #eab308;
    transform: translateY(-2px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    padding: 10px 20px 10px 10px;
    margin-bottom: 3rem;
    max-width: 100%;
}

.hero-badge .badge-icon {
    background: #facc15;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.hero-badge p {
    margin: 0;
    font-size: 0.9rem;
    color: #e2e8f0;
    line-height: 1.3;
}

.hero-badge .highlight-text {
    color: #facc15;
    font-weight: 600;
}

.hero-features {
    display: flex;
    gap: 30px;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-features .f-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #facc15;
}

.hero-features .f-text {
    display: flex;
    flex-direction: column;
}

.hero-features .f-text strong {
    font-size: 0.95rem;
    color: var(--white);
}

.hero-features .f-text span {
    font-size: 0.8rem;
    color: #cbd5e1;
}

.hero-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.phone-img {
    max-width: 350px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    position: relative;
    z-index: 2;
}

.floating-badges {
    position: absolute;
    left: 40px;
    top: 22%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 1;
}

.floating-badges::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    border-left: 2px dashed rgba(255,255,255,0.3);
    z-index: -1;
}

.f-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.f-badge::after {
    content: '';
    position: absolute;
    right: -60px;
    top: 50%;
    width: 50px;
    height: 2px;
    border-top: 2px dashed rgba(255,255,255,0.3);
    z-index: -1;
}

.f-badge .fb-icon {
    width: 50px;
    height: 50px;
    background: rgba(30, 41, 59, 0.8);
    border: 2px solid #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.f-badge .fb-text {
    font-size: 0.85rem;
    color: var(--white);
    line-height: 1.2;
    text-align: left;
}

.hero-bottom-banner {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    background: var(--white);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    width: calc(100% - 48px);
    max-width: 1200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 10;
}

.banner-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
    position: relative;
}

.banner-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 30px;
    width: 1px;
    background: #e2e8f0;
}

.banner-item .b-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.banner-item .b-text strong {
    color: var(--text-main);
    font-size: 0.95rem;
}

.banner-item .b-text span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }
    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero-features {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-right {
        margin-top: 40px;
        justify-content: center;
    }
    .floating-badges {
        display: none;
    }
    .hero-bottom-banner {
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px;
        justify-content: center;
        position: relative;
        transform: none;
        bottom: auto;
        left: auto;
        width: 100%;
        margin-top: 60px;
        border-radius: 0;
    }
    .banner-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-left h1 {
        font-size: 2.5rem;
    }
    .hero-search-form {
        flex-direction: column;
        padding: 10px;
        border-radius: 20px;
        gap: 10px;
        width: 100%;
    }
    .hero-search-form input {
        text-align: center;
        padding: 10px;
        width: 100%;
    }
    .hero-search-form button {
        width: 100%;
    }
}

/* Pasos y Tarjetas */
.bg-light {
    background-color: var(--background);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 2rem;
}

.step-card {
    background: var(--white);
    padding: 48px 32px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #007AFF, #5AC8FA);
    transform: scaleY(0);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: #c7d2fe;
}

.step-card:hover::before {
    transform: scaleY(1);
}

.step-number,
.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 28px auto;
    transition: var(--transition);
    color: #fff;
}

/* Iconos individuales */
.step-card:nth-child(1) .service-icon {
    background: linear-gradient(145deg, #007AFF, #5856D6);
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.3);
}

.step-card:nth-child(2) .service-icon {
    background: linear-gradient(145deg, #34C759, #30D158);
    box-shadow: 0 6px 20px rgba(52, 199, 89, 0.3);
}

.step-card:nth-child(3) .service-icon {
    background: linear-gradient(145deg, #FF9500, #FF6B00);
    box-shadow: 0 6px 20px rgba(255, 149, 0, 0.3);
}

.step-card:nth-child(4) .service-icon {
    background: linear-gradient(145deg, #AF52DE, #5856D6);
    box-shadow: 0 6px 20px rgba(175, 82, 222, 0.3);
}

.service-icon i {
    width: 30px;
    height: 30px;
    stroke-width: 1.8;
}

.step-card:hover .service-icon {
    transform: scale(1.1);
}

.step-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.step-card p {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Footer */
.footer-site {
    background-color: #0f172a;
    color: var(--white);
    padding: 100px 0 40px 0;
    margin-top: 100px;
    position: relative;
}

.footer-site .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 48px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-column .logo img {
    height: 80px;
    width: auto;
}

.footer-column .logo-text {
    color: var(--white);
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer-column p {
    color: #94a3b8;
    margin-top: 1rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 30px;
    font-size: 0.875rem;
    color: #64748b;
}

/* Resultados */
.search-results-container {
    padding-top: 120px;
    min-height: 80vh;
}

table {
    width: 100%;
    max-width: 1000px;
    margin: 2rem auto;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid #e2e8f0;
}

th {
    background: var(--primary);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    color: var(--text-main);
    font-size: 0.95rem;
}

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

tr:hover td {
    background-color: #f8fafc;
}

.no-results {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    max-width: 500px;
    margin: 4rem auto;
    color: var(--text-muted);
}

/* Form Styles */
.form-container {
    max-width: 500px;
    margin: 120px auto;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid #e2e8f0;
    text-align: left;
}

.form-container h3 {
    margin-bottom: 2rem;
    font-size: 1.75rem;
    text-align: center;
    width: 100%;
}

.form-container h3::after {
    display: none;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.form-container input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-container input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: var(--secondary);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

/* Alertas */
.alert {
    padding: 15px;
    margin: 20px auto;
    max-width: 500px;
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 500;
    animation: fadeInUp 0.5s ease-out;
}

.alert-success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Cómo funciona */
.how-it-works {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 3rem auto 0 auto;
    text-align: left;
}

.how-step {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--white);
    padding: 32px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e2e8f0;
}

.how-step:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.step-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--secondary);
    min-width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
}

.step-info h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.step-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Preguntas frecuentes */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-main);
    user-select: none;
}

.faq-question:hover {
    background-color: #f8fafc;
}

.faq-question i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--accent);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    background-color: #fff;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px 24px;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

/* Tablas (Desktop) */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1.5rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    min-width: 600px;
}

th,
td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

th {
    background: #f8fafc;
    color: var(--text-main);
    font-weight: 600;
}

.conductor-foto {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
}

.qr-foto {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.no-foto {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

.simur-info {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}

.simur-info a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.simur-info a:hover {
    text-decoration: underline;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Diseño responsivo general */
@media (max-width: 768px) {
    .header {
        padding: 0 20px;
        height: 70px;
    }

    .menu-toggle {
        display: block;
    }

    .navegacion {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        display: block !important;
    }

    .navegacion.active {
        transform: translateY(0);
    }

    .navegacion ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .hero {
        min-height: 100vh;
        padding-top: 100px;
    }

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

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .search-bar {
        flex-direction: column;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        gap: 12px;
    }

    .search-bar input {
        width: 100%;
        padding: 16px 24px;
        border-radius: 16px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .search-bar button {
        width: 100%;
        padding: 16px;
        border-radius: 16px;
    }

    .container {
        padding: 40px 15px;
    }

    .footer-site {
        padding: 60px 0 30px 0;
        margin-top: 60px;
    }

    .footer-site .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-column a:hover {
        padding-left: 0;
    }

    .how-step {
        flex-direction: column;
        text-align: center;
        gap: 16px;
        padding: 24px 16px;
    }

    .how-it-works {
        padding: 0;
    }

    h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .form-container {
        padding: 24px 16px;
        margin-top: 80px;
    }
    
    .search-results-container {
        padding-top: 90px;
    }

    /* Tablas en Móviles */
    table, thead, tbody, th, td, tr {
        display: block;
    }
    table {
        min-width: 100%;
    }
    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    tr {
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        margin-bottom: 1rem;
        padding: 0; /* Padding movido a celdas */
        background: var(--white);
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }
    td {
        border: none !important;
        border-bottom: 1px solid #f1f5f9 !important;
        position: relative;
        padding: 1rem 1rem 1rem 40% !important; /* El important asegura que no se sobreescriba */
        text-align: right !important; /* Alineamos a la derecha para que no choque con la etiqueta */
        display: flex;
        justify-content: flex-end;
        align-items: center;
        min-height: 50px;
        word-break: break-all;
    }
    td:last-child {
        border-bottom: 0 !important;
    }
    td:before {
        position: absolute;
        top: 50%;
        left: 1rem;
        transform: translateY(-50%);
        width: 35%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: 600;
        color: var(--text-muted);
        font-size: 0.85rem;
        text-align: left;
    }
    
    /* Etiquetas de Buscar */
    td:nth-of-type(1):before { content: "Foto"; }
    td:nth-of-type(2):before { content: "Nombre"; }
    td:nth-of-type(3):before { content: "Correo"; }
    td:nth-of-type(4):before { content: "Placa"; }
    td:nth-of-type(5):before { content: "Teléfono"; }
    td:nth-of-type(6):before { content: "Código QR"; }
    
    /* Etiquetas de Admin */
    .form-container td:nth-of-type(1):before { content: "Nombre"; }
    .form-container td:nth-of-type(2):before { content: "Placa"; }
    .form-container td:nth-of-type(3):before { content: "Teléfono"; }
    .form-container td:nth-of-type(4):before { content: "Acciones"; }
}

/* ==========================================================================
   COOKIE BANNER (GLASSMORPHISM STYLE)
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 420px;
    width: calc(100% - 48px);
    background: rgba(30, 41, 59, 0.95); /* Slate 900 con transparencia */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
    z-index: 99999;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner--hidden {
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
}

.cookie-banner-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-banner-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(250, 204, 21, 0.15); /* Tono amarillo primario */
    color: var(--primary); /* #facc15 */
}

.cookie-icon-wrapper svg {
    width: 22px;
    height: 22px;
    animation: cookie-rotate 6s ease-in-out infinite;
}

.cookie-banner-header h4 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
}

.cookie-banner-header h4::after {
    display: none !important; /* Desactivar cualquier línea inferior por defecto */
}

.cookie-banner-text {
    color: #94a3b8; /* slate-400 */
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    text-align: left;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.btn-cookie-accept {
    flex: 1;
    padding: 11px 16px;
    background: var(--primary); /* #facc15 */
    color: var(--secondary); /* #1e293b */
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-cookie-accept:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.35);
}

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

.btn-cookie-decline {
    flex: 1;
    padding: 11px 16px;
    background: transparent;
    color: #cbd5e1; /* slate-300 */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-cookie-decline:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

/* Animaciones */
@keyframes cookie-rotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(12deg); }
}

/* Responsivo para móviles */
@media (max-width: 480px) {
    .cookie-banner {
        bottom: 16px;
        left: 16px;
        right: 16px;
        width: calc(100% - 32px);
        padding: 20px;
    }
    
    .cookie-banner-buttons {
        flex-direction: column-reverse;
        gap: 8px;
    }
    
    .btn-cookie-accept, .btn-cookie-decline {
        width: 100%;
    }
}