/* ============================================================
   T-DIGITAL: Sistema de Tarjetas Digitales Premium
   Estilos Base + 15 Temas de Industria
   Diseño: Luxury Executive Premium
   ============================================================ */

/* ---- IMPORTS GOOGLE FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600&family=Great+Vibes&family=Lato:wght@300;400;700&family=Libre+Baskerville:wght@400;700&family=Source+Sans+Pro:wght@300;400;600&family=Oswald:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&family=Bebas+Neue&family=Open+Sans:wght@300;400;600&family=Space+Grotesk:wght@400;500;600;700&family=Work+Sans:wght@300;400;500;600&family=Cinzel:wght@400;500;600;700&family=Merriweather:wght@300;400;700&family=Poppins:wght@300;400;500;600;700&family=Nunito:wght@300;400;600;700&family=Quicksand:wght@400;500;600;700&family=Rajdhani:wght@400;500;600;700&family=Abril+Fatface&family=Outfit:wght@300;400;500;600;700&family=DM+Sans:wght@400;500;600;700&family=Syne:wght@400;500;600;700&display=swap');

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1a1a;
    --secondary: #c9a227;
    --accent: #333333;
    --text: #1a1a1a;
    --text-light: #666666;
    --bg: #f5f5f5;
    --white: #ffffff;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-heavy: 0 20px 60px rgba(0,0,0,0.18);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

/* ============================================================
   LANDING PAGE
   ============================================================ */
.landing-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
}

.landing-page::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(201, 162, 39, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(201, 162, 39, 0.05) 0%, transparent 50%);
    animation: float-bg 20s ease-in-out infinite;
}

@keyframes float-bg {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-20px, 20px) rotate(1deg); }
    66% { transform: translate(20px, -20px) rotate(-1deg); }
}

.landing-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    position: relative;
    z-index: 10;
}

.landing-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 4px;
}

.landing-logo span {
    color: #fff;
    font-weight: 300;
}

.landing-nav-links a {
    color: rgba(255,255,255,0.8);
    margin-left: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    position: relative;
}

.landing-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: var(--transition);
}

.landing-nav-links a:hover {
    color: #fff;
}

.landing-nav-links a:hover::after {
    width: 100%;
}

.landing-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 100px);
    padding: 60px 48px;
    position: relative;
    z-index: 5;
}

.landing-hero-content {
    text-align: center;
    max-width: 900px;
}

.landing-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.landing-hero h1 em {
    font-style: italic;
    color: var(--secondary);
}

.landing-hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.65);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.landing-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--secondary);
    color: #0a0a0a;
    padding: 18px 48px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    border: 2px solid var(--secondary);
}

.landing-cta:hover {
    background: transparent;
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(201, 162, 39, 0.3);
}

.landing-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: #fff;
    padding: 18px 48px;
    border-radius: var(--radius-full);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
    margin-left: 16px;
    transition: var(--transition);
}

.landing-cta-secondary:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-2px);
}

.landing-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.landing-stat h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--secondary);
    font-weight: 700;
}

.landing-stat p {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}

/* ---- Seccion industrias landing ---- */
.landing-industrias {
    background: #0d0d0d;
    padding: 100px 48px;
    position: relative;
}

.landing-industrias h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #fff;
    text-align: center;
    margin-bottom: 16px;
}

.landing-industrias-sub {
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    margin-bottom: 60px;
}

.industrias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.industria-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.industria-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--card-accent, var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.industria-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

.industria-card:hover::before {
    transform: scaleX(1);
}

.industria-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    background: var(--card-accent, var(--secondary));
    color: #fff;
}

.industria-card h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.industria-card p {
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ---- Footer landing ---- */
.landing-footer {
    background: #080808;
    padding: 40px 48px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.landing-footer p {
    color: rgba(255,255,255,0.35);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* ============================================================
   LOGIN ADMIN
   ============================================================ */
.admin-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #141428 50%, #0a0a0a 100%);
    position: relative;
}

.admin-login-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 162, 39, 0.06) 0%, transparent 60%);
}

.login-box {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    width: 100%;
    max-width: 440px;
    position: relative;
    z-index: 2;
}

.login-logo {
    text-align: center;
    margin-bottom: 40px;
}

.login-logo h1 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: var(--secondary);
    letter-spacing: 3px;
}

.login-logo h1 span {
    color: #fff;
    font-weight: 300;
}

.login-logo p {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    margin-top: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.form-input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255,255,255,0.08);
}

.form-input::placeholder {
    color: rgba(255,255,255,0.3);
}

.btn-login {
    width: 100%;
    padding: 16px;
    background: var(--secondary);
    color: #0a0a0a;
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 8px;
}

.btn-login:hover {
    background: #d4b43a;
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.3);
}

.login-error {
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #fca5a5;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    margin-bottom: 24px;
    text-align: center;
}

/* ============================================================
   DASHBOARD ADMIN
   ============================================================ */
.admin-body {
    background: #0d0d0d;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 70px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.admin-header-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--secondary);
    letter-spacing: 2px;
}

.admin-header-logo span {
    color: #fff;
    font-weight: 300;
}

.admin-header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-user {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 500;
}

.btn-header {
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.btn-header-primary {
    background: var(--secondary);
    color: #0a0a0a;
    border-color: var(--secondary);
}

.btn-header-primary:hover {
    background: #d4b43a;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
}

.btn-header-secondary {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.15);
}

.btn-header-secondary:hover {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}

/* ---- Stats dashboard ---- */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    padding: 40px 40px 0;
    max-width: 1400px;
}

.stat-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
}

.stat-label {
    color: rgba(255,255,255,0.45);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: #fff;
    font-weight: 700;
    line-height: 1;
}

.stat-value.gold {
    color: var(--secondary);
}

/* ---- Tabla dashboard ---- */
.admin-content {
    padding: 40px;
    max-width: 1400px;
}

.admin-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 6px;
}

.admin-section-sub {
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
    margin-bottom: 28px;
}

.admin-filters {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.admin-search {
    flex: 1;
    min-width: 280px;
    position: relative;
}

.admin-search input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    padding: 12px 16px 12px 44px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    transition: var(--transition);
}

.admin-search input:focus {
    outline: none;
    border-color: var(--secondary);
}

.admin-search svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.4);
    width: 18px;
    height: 18px;
}

.data-table-container {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table thead th {
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.data-table tbody td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}

.data-table tbody tr {
    transition: var(--transition);
}

.data-table tbody tr:hover {
    background: rgba(255,255,255,0.03);
}

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

.td-nombre {
    display: flex;
    align-items: center;
    gap: 14px;
}

.td-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.1);
}

.td-avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    font-weight: 600;
    font-size: 0.85rem;
}

.td-nombre-info strong {
    color: #fff;
    font-weight: 600;
    display: block;
}

.td-nombre-info small {
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-activo {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.badge-inactivo {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.td-visitas {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--secondary);
    font-size: 1rem;
}

.td-actions {
    display: flex;
    gap: 8px;
}

.btn-action {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.8rem;
}

.btn-action:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}

.btn-action.view:hover { color: #60a5fa; border-color: rgba(96, 165, 250, 0.3); }
.btn-action.edit:hover { color: #fbbf24; border-color: rgba(251, 191, 36, 0.3); }
.btn-action.delete:hover { color: #f87171; border-color: rgba(248, 113, 113, 0.3); background: rgba(248, 113, 113, 0.1); }
.btn-action.copy:hover { color: #a78bfa; border-color: rgba(167, 139, 250, 0.3); }

.empty-state {
    text-align: center;
    padding: 80px 40px;
    color: rgba(255,255,255,0.4);
}

.empty-state svg {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.empty-state h3 {
    color: rgba(255,255,255,0.6);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

/* ---- Formulario crear/editar ---- */
.form-section {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: 32px;
    margin-bottom: 24px;
}

.form-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-section-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--secondary);
    color: #0a0a0a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255,255,255,0.08);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.5)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-select option {
    background: #1a1a2e;
    color: #fff;
}

input[type="color"].form-input {
    height: 48px;
    padding: 4px 8px;
    cursor: pointer;
}

/* Upload de imagenes */
.upload-zone {
    border: 2px dashed rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.upload-zone:hover {
    border-color: var(--secondary);
    background: rgba(201, 162, 39, 0.03);
}

.upload-zone svg {
    width: 48px;
    height: 48px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 16px;
}

.upload-zone p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.upload-zone input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.preview-image {
    max-width: 200px;
    max-height: 200px;
    border-radius: var(--radius-md);
    margin-top: 16px;
    display: none;
}

.preview-image.visible {
    display: block;
}

/* Botones config */
.botones-config {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.boton-config-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    transition: var(--transition);
}

.boton-config-item:hover {
    background: rgba(255,255,255,0.05);
}

.boton-config-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--secondary);
    cursor: pointer;
}

.boton-config-item label {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    cursor: pointer;
    flex: 1;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
}

/* Vista previa */
.preview-container {
    position: sticky;
    top: 90px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #1a1a1a;
}

.preview-header {
    background: rgba(255,255,255,0.05);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.preview-dots {
    display: flex;
    gap: 6px;
}

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

.preview-dot.red { background: #ff5f56; }
.preview-dot.yellow { background: #ffbd2e; }
.preview-dot.green { background: #27c93f; }

.preview-header span {
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    margin-left: 8px;
}

.preview-frame {
    width: 100%;
    height: 700px;
    border: none;
    background: #fff;
}

/* Alertas */
.alert {
    padding: 16px 24px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #4ade80;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #f87171;
}

/* Botones formulario */
.form-actions {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.btn-submit {
    padding: 14px 40px;
    background: var(--secondary);
    color: #0a0a0a;
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: #d4b43a;
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.3);
    transform: translateY(-1px);
}

.btn-cancel {
    padding: 14px 40px;
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cancel:hover {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}

/* ============================================================
   TARJETA PUBLICA - BASE
   ============================================================ */
.tarjeta-page {
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.tarjeta-fondo {
    position: fixed;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tarjeta-fondo-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
}

.tarjeta-container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.tarjeta-wrapper {
    width: 100%;
    max-width: 460px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.25);
    animation: cardEnter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes cardEnter {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.tarjeta-header {
    position: relative;
    padding: 48px 32px 0;
    text-align: center;
}

.tarjeta-foto-container {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 24px;
}

.tarjeta-foto {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,0.9);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.tarjeta-foto-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
    font-weight: 300;
    border: 4px solid rgba(255,255,255,0.9);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.tarjeta-nombre {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.tarjeta-profesion {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tarjeta-body {
    padding: 32px;
}

.tarjeta-descripcion {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 28px;
    padding: 0 8px;
}

/* Botones de accion principales */
.tarjeta-botones-principales {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 26px;
}

.btn-principal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 12px;
    font-family: inherit;
    font-weight: 500;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.btn-principal svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.btn-principal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.14);
}

/* Botones redes sociales */
.tarjeta-redes {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.btn-red-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.btn-red-social svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

.btn-red-social:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* Boton ubicacion */
.tarjeta-ubicacion {
    text-align: center;
    margin-bottom: 20px;
}

.btn-ubicacion {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: rgba(255,255,255,0.65);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.btn-ubicacion svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.btn-ubicacion:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* Footer tarjeta */
.tarjeta-qr-section {
    text-align: center;
    padding: 0 32px 24px;
}

.qr-divider {
    width: 40px;
    height: 1px;
    background: rgba(0,0,0,0.1);
    margin: 0 auto 16px;
}

.qr-label {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.4);
    margin-bottom: 12px;
    font-weight: 500;
}

.tarjeta-qr-imagen {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    background: #fff;
    padding: 8px;
    object-fit: contain;
    margin-bottom: 12px;
}

.qr-link {
    display: block;
    font-size: 0.75rem;
    color: rgba(0,0,0,0.5);
    text-decoration: none;
    word-break: break-all;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.qr-link:hover {
    color: rgba(0,0,0,0.8);
}

.tarjeta-footer {
    text-align: center;
    padding: 20px 32px 28px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.tarjeta-footer p {
    font-size: 0.7rem;
    color: rgba(0,0,0,0.35);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.tarjeta-footer a {
    color: rgba(0,0,0,0.45);
    transition: var(--transition);
}

.tarjeta-footer a:hover {
    color: var(--text);
}

/* 404 */
.error-404 {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    text-align: center;
    padding: 40px;
}

.error-404 h1 {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 16px;
}

.error-404 h2 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 12px;
}

.error-404 p {
    color: rgba(255,255,255,0.5);
    margin-bottom: 32px;
}

/* ============================================================
   15 TEMAS DE INDUSTRIA - ESTILOS ESPECIFICOS
   ============================================================ */

/* ---- 1. INMOBILIARIA ---- */
.theme-inmobiliaria .tarjeta-wrapper {
    background: linear-gradient(180deg, #f7f5f0 0%, #ffffff 100%);
}
.theme-inmobiliaria .tarjeta-nombre {
    font-family: 'Playfair Display', serif;
    color: #1a365d;
}
.theme-inmobiliaria .tarjeta-profesion {
    color: #c9a227;
    font-weight: 600;
}
.theme-inmobiliaria .btn-principal {
    background: #1a365d;
    color: #fff;
    border-radius: 10px;
}
.theme-inmobiliaria .btn-principal:hover {
    background: #2c5282;
}
.theme-inmobiliaria .btn-principal.tel {
    background: transparent;
    color: #1a365d;
    border: 2px solid #1a365d;
}
.theme-inmobiliaria .btn-principal.tel:hover {
    background: #1a365d;
    color: #fff;
}
.theme-inmobiliaria .btn-red-social:hover {
    background: #1a365d;
    border-color: #1a365d;
}
.theme-inmobiliaria .btn-red-social:hover svg {
    fill: #fff;
}
.theme-inmobiliaria .btn-red-social svg {
    fill: #1a365d;
}

/* ---- 2. FINANCIERA ---- */
.theme-financiera .tarjeta-wrapper {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid rgba(15, 39, 68, 0.1);
}
.theme-financiera .tarjeta-nombre {
    font-family: 'Cormorant Garamond', serif;
    color: #0f2744;
    font-weight: 600;
}
.theme-financiera .tarjeta-profesion {
    color: #b8860b;
    letter-spacing: 2px;
}
.theme-financiera .btn-principal {
    background: #0f2744;
    color: #fff;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
}
.theme-financiera .btn-principal:hover {
    background: #1a3a5c;
}
.theme-financiera .btn-principal.tel {
    background: transparent;
    color: #0f2744;
    border: 2px solid #0f2744;
}
.theme-financiera .btn-principal.tel:hover {
    background: #0f2744;
    color: #fff;
}
.theme-financiera .btn-red-social {
    border-radius: 4px;
}
.theme-financiera .btn-red-social:hover {
    background: #0f2744;
    border-color: #0f2744;
}
.theme-financiera .btn-red-social:hover svg {
    fill: #fff;
}
.theme-financiera .btn-red-social svg {
    fill: #0f2744;
}

/* ---- 3. ESTETICA ---- */
.theme-estetica .tarjeta-wrapper {
    background: linear-gradient(180deg, #fdf8f5 0%, #ffffff 100%);
    border-radius: 30px;
}
.theme-estetica .tarjeta-nombre {
    font-family: 'Great Vibes', cursive;
    font-size: 2.6rem;
    color: #6b2d5c;
    font-weight: 400;
}
.theme-estetica .tarjeta-profesion {
    color: #d4a574;
    font-family: 'Lato', sans-serif;
}
.theme-estetica .btn-principal {
    background: linear-gradient(135deg, #6b2d5c 0%, #8b4d7a 100%);
    color: #fff;
    border-radius: 30px;
    font-weight: 500;
}
.theme-estetica .btn-principal:hover {
    box-shadow: 0 8px 30px rgba(107, 45, 92, 0.35);
}
.theme-estetica .btn-principal.tel {
    background: transparent;
    color: #6b2d5c;
    border: 2px solid #6b2d5c;
}
.theme-estetica .btn-principal.tel:hover {
    background: #6b2d5c;
    color: #fff;
}
.theme-estetica .btn-red-social {
    border-radius: 12px;
    background: rgba(107, 45, 92, 0.06);
    border-color: rgba(107, 45, 92, 0.12);
}
.theme-estetica .btn-red-social svg {
    fill: #6b2d5c;
}
.theme-estetica .btn-red-social:hover {
    background: #6b2d5c;
    border-color: #6b2d5c;
}
.theme-estetica .btn-red-social:hover svg {
    fill: #fff;
}

/* ---- 4. RESTAURANTE ---- */
.theme-restaurante .tarjeta-wrapper {
    background: linear-gradient(180deg, #faf7f2 0%, #ffffff 100%);
}
.theme-restaurante .tarjeta-nombre {
    font-family: 'Libre Baskerville', serif;
    color: #2c1810;
}
.theme-restaurante .tarjeta-profesion {
    color: #c75b12;
}
.theme-restaurante .btn-principal {
    background: #2c1810;
    color: #faf7f2;
    border-radius: 50px;
    font-family: 'Libre Baskerville', serif;
}
.theme-restaurante .btn-principal:hover {
    background: #4a2510;
}
.theme-restaurante .btn-principal.tel {
    background: transparent;
    color: #2c1810;
    border: 2px solid #2c1810;
}
.theme-restaurante .btn-principal.tel:hover {
    background: #2c1810;
    color: #faf7f2;
}
.theme-restaurante .btn-red-social {
    border-radius: 50%;
    background: rgba(44, 24, 16, 0.06);
}
.theme-restaurante .btn-red-social svg {
    fill: #2c1810;
}
.theme-restaurante .btn-red-social:hover {
    background: #2c1810;
}
.theme-restaurante .btn-red-social:hover svg {
    fill: #faf7f2;
}

/* ---- 5. MECANICO ---- */
.theme-mecanico .tarjeta-wrapper {
    background: linear-gradient(180deg, #f0f0f0 0%, #ffffff 100%);
    border-radius: 8px;
}
.theme-mecanico .tarjeta-nombre {
    font-family: 'Oswald', sans-serif;
    color: #1c1c1c;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.theme-mecanico .tarjeta-profesion {
    color: #e63946;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}
.theme-mecanico .btn-principal {
    background: #1c1c1c;
    color: #fff;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.theme-mecanico .btn-principal:hover {
    background: #e63946;
}
.theme-mecanico .btn-principal.tel {
    background: transparent;
    color: #1c1c1c;
    border: 2px solid #1c1c1c;
}
.theme-mecanico .btn-principal.tel:hover {
    background: #1c1c1c;
    color: #fff;
}
.theme-mecanico .btn-red-social {
    border-radius: 4px;
    background: rgba(28, 28, 28, 0.06);
}
.theme-mecanico .btn-red-social svg {
    fill: #1c1c1c;
}
.theme-mecanico .btn-red-social:hover {
    background: #e63946;
    border-color: #e63946;
}
.theme-mecanico .btn-red-social:hover svg {
    fill: #fff;
}

/* ---- 6. GIMNASIO ---- */
.theme-gimnasio .tarjeta-wrapper {
    background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
}
.theme-gimnasio .tarjeta-nombre {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 2px;
    color: #0d0d0d;
}
.theme-gimnasio .tarjeta-profesion {
    color: #00d4aa;
    font-weight: 700;
    letter-spacing: 2px;
}
.theme-gimnasio .btn-principal {
    background: #0d0d0d;
    color: #00d4aa;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px), 0 8px);
}
.theme-gimnasio .btn-principal:hover {
    background: #00d4aa;
    color: #0d0d0d;
}
.theme-gimnasio .btn-principal.tel {
    background: transparent;
    color: #0d0d0d;
    border: 2px solid #0d0d0d;
}
.theme-gimnasio .btn-principal.tel:hover {
    background: #0d0d0d;
    color: #00d4aa;
}
.theme-gimnasio .btn-red-social {
    border-radius: 0;
    background: rgba(13, 13, 13, 0.06);
    clip-path: polygon(4px 0, calc(100% - 4px) 0, 100% 4px, 100% calc(100% - 4px), calc(100% - 4px) 100%, 4px 100%, 0 calc(100% - 4px), 0 4px);
}
.theme-gimnasio .btn-red-social svg {
    fill: #0d0d0d;
}
.theme-gimnasio .btn-red-social:hover {
    background: #00d4aa;
    border-color: #00d4aa;
}
.theme-gimnasio .btn-red-social:hover svg {
    fill: #0d0d0d;
}

/* ---- 7. DISENO GRAFICO ---- */
.theme-diseno .tarjeta-wrapper {
    background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
    border: 2px solid #1a1a2e;
    border-radius: 0;
}
.theme-diseno .tarjeta-nombre {
    font-family: 'Space Grotesk', sans-serif;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: -1px;
}
.theme-diseno .tarjeta-profesion {
    color: #e94560;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
}
.theme-diseno .btn-principal {
    background: #1a1a2e;
    color: #fff;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}
.theme-diseno .btn-principal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #e94560;
    transition: left 0.3s ease;
    z-index: 0;
}
.theme-diseno .btn-principal:hover::before {
    left: 0;
}
.theme-diseno .btn-principal span {
    position: relative;
    z-index: 1;
}
.theme-diseno .btn-principal.tel {
    background: transparent;
    color: #1a1a2e;
    border: 2px solid #1a1a2e;
}
.theme-diseno .btn-principal.tel::before {
    display: none;
}
.theme-diseno .btn-principal.tel:hover {
    background: #1a1a2e;
    color: #fff;
}
.theme-diseno .btn-red-social {
    border-radius: 0;
    border: 2px solid #1a1a2e;
    background: transparent;
}
.theme-diseno .btn-red-social svg {
    fill: #1a1a2e;
}
.theme-diseno .btn-red-social:hover {
    background: #e94560;
    border-color: #e94560;
}
.theme-diseno .btn-red-social:hover svg {
    fill: #fff;
}

/* ---- 8. LEGAL ---- */
.theme-legal .tarjeta-wrapper {
    background: linear-gradient(180deg, #f5f3f0 0%, #ffffff 100%);
    border: 1px solid rgba(13, 27, 42, 0.15);
    border-radius: 4px;
}
.theme-legal .tarjeta-nombre {
    font-family: 'Cinzel', serif;
    color: #0d1b2a;
    letter-spacing: 1px;
}
.theme-legal .tarjeta-profesion {
    color: #8b6914;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 600;
}
.theme-legal .btn-principal {
    background: #0d1b2a;
    color: #f5f3f0;
    border-radius: 4px;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
}
.theme-legal .btn-principal:hover {
    background: #1b263b;
}
.theme-legal .btn-principal.tel {
    background: transparent;
    color: #0d1b2a;
    border: 2px solid #0d1b2a;
}
.theme-legal .btn-principal.tel:hover {
    background: #0d1b2a;
    color: #f5f3f0;
}
.theme-legal .btn-red-social {
    border-radius: 4px;
    background: rgba(13, 27, 42, 0.06);
    border: 1px solid rgba(13, 27, 42, 0.12);
}
.theme-legal .btn-red-social svg {
    fill: #0d1b2a;
}
.theme-legal .btn-red-social:hover {
    background: #0d1b2a;
    border-color: #0d1b2a;
}
.theme-legal .btn-red-social:hover svg {
    fill: #f5f3f0;
}

/* ---- 9. SALUD ---- */
.theme-salud .tarjeta-wrapper {
    background: linear-gradient(180deg, #ffffff 0%, #e8f4f8 100%);
    border-radius: 24px;
    border: 1px solid rgba(0, 168, 150, 0.15);
}
.theme-salud .tarjeta-nombre {
    font-family: 'Merriweather', serif;
    color: #1a3c40;
    font-weight: 700;
}
.theme-salud .tarjeta-profesion {
    color: #00a896;
    font-weight: 600;
    letter-spacing: 1px;
}
.theme-salud .btn-principal {
    background: #00a896;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
}
.theme-salud .btn-principal:hover {
    background: #008f7a;
    box-shadow: 0 8px 30px rgba(0, 168, 150, 0.3);
}
.theme-salud .btn-principal.tel {
    background: transparent;
    color: #00a896;
    border: 2px solid #00a896;
}
.theme-salud .btn-principal.tel:hover {
    background: #00a896;
    color: #fff;
}
.theme-salud .btn-red-social {
    border-radius: 50%;
    background: rgba(0, 168, 150, 0.08);
    border-color: rgba(0, 168, 150, 0.15);
}
.theme-salud .btn-red-social svg {
    fill: #00a896;
}
.theme-salud .btn-red-social:hover {
    background: #00a896;
    border-color: #00a896;
}
.theme-salud .btn-red-social:hover svg {
    fill: #fff;
}

/* ---- 10. COACH ---- */
.theme-coach .tarjeta-wrapper {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    border-radius: 20px;
}
.theme-coach .tarjeta-nombre {
    font-family: 'Poppins', sans-serif;
    color: #2d1b69;
    font-weight: 700;
}
.theme-coach .tarjeta-profesion {
    color: #f39c12;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.theme-coach .btn-principal {
    background: linear-gradient(135deg, #2d1b69 0%, #5b2c8f 100%);
    color: #fff;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.theme-coach .btn-principal:hover {
    box-shadow: 0 8px 30px rgba(45, 27, 105, 0.35);
    transform: translateY(-2px);
}
.theme-coach .btn-principal.tel {
    background: transparent;
    color: #2d1b69;
    border: 2px solid #2d1b69;
}
.theme-coach .btn-principal.tel:hover {
    background: #2d1b69;
    color: #fff;
}
.theme-coach .btn-red-social {
    border-radius: 50%;
    background: rgba(45, 27, 105, 0.06);
}
.theme-coach .btn-red-social svg {
    fill: #2d1b69;
}
.theme-coach .btn-red-social:hover {
    background: #f39c12;
    border-color: #f39c12;
}
.theme-coach .btn-red-social:hover svg {
    fill: #fff;
}

/* ---- 11. VETERINARIA ---- */
.theme-veterinaria .tarjeta-wrapper {
    background: linear-gradient(180deg, #f5f9f5 0%, #ffffff 100%);
    border-radius: 24px;
}
.theme-veterinaria .tarjeta-nombre {
    font-family: 'Quicksand', sans-serif;
    color: #1b5e3b;
    font-weight: 700;
}
.theme-veterinaria .tarjeta-profesion {
    color: #f4a261;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}
.theme-veterinaria .btn-principal {
    background: #1b5e3b;
    color: #fff;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
}
.theme-veterinaria .btn-principal:hover {
    background: #2d8b5e;
}
.theme-veterinaria .btn-principal.tel {
    background: transparent;
    color: #1b5e3b;
    border: 2px solid #1b5e3b;
}
.theme-veterinaria .btn-principal.tel:hover {
    background: #1b5e3b;
    color: #fff;
}
.theme-veterinaria .btn-red-social {
    border-radius: 50%;
    background: rgba(27, 94, 59, 0.08);
    border-color: rgba(27, 94, 59, 0.15);
}
.theme-veterinaria .btn-red-social svg {
    fill: #1b5e3b;
}
.theme-veterinaria .btn-red-social:hover {
    background: #1b5e3b;
    border-color: #1b5e3b;
}
.theme-veterinaria .btn-red-social:hover svg {
    fill: #fff;
}

/* ---- 12. TRANSPORTE ---- */
.theme-transporte .tarjeta-wrapper {
    background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
    border-radius: 8px;
}
.theme-transporte .tarjeta-nombre {
    font-family: 'Rajdhani', sans-serif;
    color: #0a0e27;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.theme-transporte .tarjeta-profesion {
    color: #1a237e;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}
.theme-transporte .btn-principal {
    background: #0a0e27;
    color: #ffd700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1rem;
}
.theme-transporte .btn-principal:hover {
    background: #1a237e;
}
.theme-transporte .btn-principal.tel {
    background: transparent;
    color: #0a0e27;
    border: 2px solid #0a0e27;
}
.theme-transporte .btn-principal.tel:hover {
    background: #0a0e27;
    color: #ffd700;
}
.theme-transporte .btn-red-social {
    border-radius: 4px;
    background: rgba(10, 14, 39, 0.06);
}
.theme-transporte .btn-red-social svg {
    fill: #0a0e27;
}
.theme-transporte .btn-red-social:hover {
    background: #ffd700;
    border-color: #ffd700;
}
.theme-transporte .btn-red-social:hover svg {
    fill: #0a0e27;
}

/* ---- 13. MUSICO ---- */
.theme-musico .tarjeta-wrapper {
    background: linear-gradient(180deg, #f0f0f0 0%, #ffffff 100%);
    border: none;
    border-radius: 0;
    position: relative;
}
.theme-musico .tarjeta-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #c0392b, #e74c3c);
}
.theme-musico .tarjeta-nombre {
    font-family: 'Abril Fatface', cursive;
    color: #1a1a2e;
    letter-spacing: 1px;
}
.theme-musico .tarjeta-profesion {
    color: #e74c3c;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
}
.theme-musico .btn-principal {
    background: #1a1a2e;
    color: #fff;
    border-radius: 0;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.theme-musico .btn-principal:hover {
    background: #e74c3c;
}
.theme-musico .btn-principal.tel {
    background: transparent;
    color: #1a1a2e;
    border: 2px solid #1a1a2e;
}
.theme-musico .btn-principal.tel:hover {
    background: #1a1a2e;
    color: #fff;
}
.theme-musico .btn-red-social {
    border-radius: 0;
    background: rgba(26, 26, 46, 0.06);
    border: 1px solid rgba(26, 26, 46, 0.1);
}
.theme-musico .btn-red-social svg {
    fill: #1a1a2e;
}
.theme-musico .btn-red-social:hover {
    background: #e74c3c;
    border-color: #e74c3c;
}
.theme-musico .btn-red-social:hover svg {
    fill: #fff;
}

/* ---- 14. INFLUENCER ---- */
.theme-influencer .tarjeta-wrapper {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
}
.theme-influencer .tarjeta-nombre {
    font-family: 'Outfit', sans-serif;
    color: #2d2d2d;
    font-weight: 700;
}
.theme-influencer .tarjeta-profesion {
    color: #ff6b9d;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
}
.theme-influencer .btn-principal {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: #fff;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
}
.theme-influencer .btn-principal:hover {
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.35);
}
.theme-influencer .btn-principal.tel {
    background: transparent;
    color: #ff6b9d;
    border: 2px solid #ff6b9d;
}
.theme-influencer .btn-principal.tel:hover {
    background: #ff6b9d;
    color: #fff;
}
.theme-influencer .btn-red-social {
    border-radius: 12px;
    background: rgba(255, 107, 157, 0.08);
    border-color: rgba(255, 107, 157, 0.15);
}
.theme-influencer .btn-red-social svg {
    fill: #ff6b9d;
}
.theme-influencer .btn-red-social:hover {
    background: #ff6b9d;
    border-color: #ff6b9d;
}
.theme-influencer .btn-red-social:hover svg {
    fill: #fff;
}

/* ---- 15. ECOMMERCE ---- */
.theme-ecommerce .tarjeta-wrapper {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid rgba(15, 52, 96, 0.1);
    border-radius: 12px;
}
.theme-ecommerce .tarjeta-nombre {
    font-family: 'Syne', sans-serif;
    color: #0f3460;
    font-weight: 700;
}
.theme-ecommerce .tarjeta-profesion {
    color: #e94560;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}
.theme-ecommerce .btn-principal {
    background: #0f3460;
    color: #fff;
    border-radius: 8px;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}
.theme-ecommerce .btn-principal:hover {
    background: #e94560;
}
.theme-ecommerce .btn-principal.tel {
    background: transparent;
    color: #0f3460;
    border: 2px solid #0f3460;
}
.theme-ecommerce .btn-principal.tel:hover {
    background: #0f3460;
    color: #fff;
}
.theme-ecommerce .btn-red-social {
    border-radius: 8px;
    background: rgba(15, 52, 96, 0.06);
    border-color: rgba(15, 52, 96, 0.1);
}
.theme-ecommerce .btn-red-social svg {
    fill: #0f3460;
}
.theme-ecommerce .btn-red-social:hover {
    background: #e94560;
    border-color: #e94560;
}
.theme-ecommerce .btn-red-social:hover svg {
    fill: #fff;
}

/* ============================================================
   PAGINA DE EJEMPLOS (MUESTRAS)
   ============================================================ */
.muestras-page {
    min-height: 100vh;
    background: #0a0a0a;
    padding: 60px 40px;
}

.muestras-header {
    text-align: center;
    margin-bottom: 60px;
}

.muestras-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 12px;
}

.muestras-header p {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
}

.muestras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.muestra-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.muestra-card:hover {
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

.muestra-preview {
    padding: 40px;
    display: flex;
    justify-content: center;
    min-height: 420px;
    align-items: center;
    position: relative;
}

.muestra-info {
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.muestra-info h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.muestra-info p {
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
}

.muestra-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 8px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .landing-hero h1 {
        font-size: 2.8rem;
    }
    .landing-stats {
        gap: 40px;
    }
    .landing-nav {
        padding: 20px 24px;
    }
    .landing-hero {
        padding: 40px 24px;
    }
    .landing-industrias {
        padding: 60px 24px;
    }
    .industrias-grid {
        grid-template-columns: 1fr;
    }
    .login-box {
        padding: 40px 28px;
        margin: 20px;
    }
    .admin-header {
        padding: 0 20px;
    }
    .admin-stats,
    .admin-content {
        padding: 24px 20px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .form-actions {
        flex-direction: column;
    }
    .btn-submit,
    .btn-cancel {
        width: 100%;
    }
    .muestras-grid {
        grid-template-columns: 1fr;
    }
    .tarjeta-wrapper {
        max-width: 100%;
    }
    .landing-cta-secondary {
        margin-left: 0;
        margin-top: 12px;
    }
    .landing-hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .landing-hero h1 {
        font-size: 2.2rem;
    }
    .landing-stats {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .stat-value {
        font-size: 1.8rem;
    }
    .tarjeta-foto,
    .tarjeta-foto-placeholder {
        width: 120px;
        height: 120px;
    }
    .tarjeta-nombre {
        font-size: 1.5rem;
    }
}

/* ============================================================
   UTILIDADES
   ============================================================ */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: 16px; }

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.02);
}
::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.2);
}

/* ============================================================
   OVERRIDE LUXURY UNIFICADO PARA TODOS LOS TEMAS
   Asegura que los botones mantengan proporciones premium
   sin importar la industria seleccionada.
   ============================================================ */
[class*="theme-"] .btn-principal {
    padding: 13px 22px;
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

[class*="theme-"] .btn-principal svg {
    width: 17px;
    height: 17px;
}

[class*="theme-"] .btn-red-social {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.72);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

[class*="theme-"] .btn-red-social svg {
    width: 17px;
    height: 17px;
}

[class*="theme-"] .btn-ubicacion {
    padding: 10px 20px;
    font-size: 0.75rem;
    background: rgba(255,255,255,0.65);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
