:root {
    --gold: #D4AF37;
    --gold-light: #F4D03F;
    --gold-dark: #B8860B;
    --black: #0A0A0A;
    --dark: #121212;
    --dark-light: #1A1A1A;
    --dark-card: #1E1E1E;
    --gray: #2A2A2A;
    --gray-light: #3A3A3A;
    --text: #E8E8E8;
    --text-muted: #A0A0A0;
    --white: #FFFFFF;
    --gradient-gold: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    --shadow-gold: 0 4px 30px rgba(212, 175, 55, 0.3);
}

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

html { 
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--gray);
    overflow: visible;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    overflow: visible;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    white-space: nowrap;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 20px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.85) 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 3px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--black);
}

.btn-primary:hover {
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 10px 24px;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-full {
    width: 100%;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-dark {
    background: var(--dark);
}

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

.section-badge {
    display: inline-block;
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 24px auto 0;
}

/* Historia */
.historia-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.historia-image {
    width: 100%;
    max-width: 600px;
}

.historia-text .lead {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
}

.historia-text p {
    margin-bottom: 15px;
    color: var(--text-muted);
}

.valores {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.valor {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
}

.image-frame {
    background: var(--dark-card);
    border: 1px solid var(--gray);
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    width: 100%;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gray);
    color: var(--text-muted);
}

.image-placeholder i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 15px;
}

/* Empresa Info */
.empresa-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.empresa-card {
    background: var(--dark-card);
    border: 1px solid var(--gray);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.empresa-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.empresa-logo {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.empresa-logo i {
    font-size: 1.8rem;
    color: var(--black);
}

.empresa-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

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

/* Rangos */
.rangos-section {
    margin-bottom: 60px;
}

.rangos-section h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.rangos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.rango {
    background: var(--dark-card);
    border: 1px solid var(--gray);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.rango:hover {
    border-color: var(--gold);
}

.rango-icon {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.rango span:last-child {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Paquetes */
.paquetes-section h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.paquetes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.paquete {
    background: var(--dark-card);
    border: 1px solid var(--gray);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s;
}

.paquete:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.paquete-featured {
    border-color: var(--gold);
    transform: scale(1.05);
}

.paquete-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.paquete-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-gold);
    color: var(--black);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.paquete-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--gray);
}

.paquete-header h4 {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.paquete-nivel {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.paquete-items {
    list-style: none;
    padding: 30px;
}

.paquete-items li {
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--gray);
}

.paquete-items li:last-child {
    border-bottom: none;
}

.paquete-cta {
    padding: 0 30px 30px;
    text-align: center;
}

/* Productos */
.productos-categorias {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.categoria-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.categoria-header i {
    font-size: 1.5rem;
    color: var(--gold);
}

.categoria-header h3 {
    font-size: 1.5rem;
}

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

.producto-card {
    background: var(--dark-card);
    border: 1px solid var(--gray);
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s;
}

.producto-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.producto-icon {
    width: 50px;
    height: 50px;
    background: var(--gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.producto-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--white);
}

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

/* Contacto */
.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contacto-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contacto-item i {
    font-size: 1.3rem;
    color: var(--gold);
    margin-top: 5px;
}

.contacto-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-family: 'Inter', sans-serif;
}

.contacto-item p, .contacto-item a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
}

.contacto-item a:hover {
    color: var(--gold);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--dark-card);
    border: 1px solid var(--gray);
    border-radius: 4px;
    color: var(--text);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--gray);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    display: block;
}

.footer-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links h4,
.footer-legal h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-legal p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--gray);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-gold);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--black);
    box-shadow: var(--shadow-gold);
    position: relative;
    transition: transform 0.3s;
    overflow: visible;
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.chat-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 22px;
    height: 22px;
    background: #E74C3C;
    border-radius: 50%;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--black);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 520px;
    background: var(--dark);
    border: 1px solid var(--gray);
    border-radius: 12px;
    overflow: hidden;
    display: none;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.chat-window.active {
    display: flex;
}

.chat-header {
    background: var(--dark-card);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gray);
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
}

.chat-header h4 {
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

.chat-status {
    font-size: 0.75rem;
    color: #2ECC71;
}

.chat-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.chat-message {
    max-width: 85%;
}

.chat-message.bot {
    align-self: flex-start;
}

.chat-message.user {
    align-self: flex-end;
}

.message-content {
    background: var(--dark-card);
    border: 1px solid var(--gray);
    border-radius: 12px;
    padding: 12px 16px;
}

.chat-message.user .message-content {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.message-content p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.message-content ul {
    margin: 8px 0;
    padding-left: 20px;
}

.message-content li {
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.chat-suggestions {
    padding: 10px 20px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    border-top: 1px solid var(--gray);
}

.suggestion-btn {
    background: var(--dark-card);
    border: 1px solid var(--gray);
    color: var(--gold);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
}

.suggestion-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.chat-input {
    display: flex;
    gap: 10px;
    padding: 15px 20px;
    border-top: 1px solid var(--gray);
}

.chat-input input {
    flex: 1;
    background: var(--dark-card);
    border: 1px solid var(--gray);
    border-radius: 20px;
    padding: 10px 16px;
    color: var(--text);
    font-size: 0.9rem;
}

.chat-input input:focus {
    outline: none;
    border-color: var(--gold);
}

.chat-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-gold);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
}

/* Slogan Section */
.slogan-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(10, 10, 10, 1) 50%, rgba(212, 175, 55, 0.05) 100%);
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
}

.slogan-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.slogan-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.slogan-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--text);
    font-style: italic;
    margin-bottom: 20px;
    border: none;
    padding: 0;
}

.slogan-text .highlight {
    color: var(--gold);
    font-weight: 400;
}

.slogan-text .highlight-bold {
    color: var(--gold-light);
    font-weight: 700;
}

.slogan-author {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
}

.slogan-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark-card);
    border: 1px solid var(--gold);
    padding: 12px 24px;
    border-radius: 30px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Info Section */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-card {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, #B8860B, #D4AF37, #F4D03F, #D4AF37, #B8860B) 1;
    border-radius: 0;
    padding: 32px 28px;
    position: relative;
    transition: all 0.4s;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    pointer-events: none;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
}

.info-card:hover::before {
    border-color: rgba(212, 175, 55, 0.4);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.info-card h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 16px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

.info-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 12px;
    text-align: center;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.info-card strong {
    color: var(--gold-light);
}

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

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

.info-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.info-card ul li {
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card ul li::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.7rem;
}

/* Admin Panel */
.admin-trigger {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: rgba(42, 42, 42, 0.3);
    border: 1px solid transparent;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(160, 160, 160, 0.3);
    font-size: 1rem;
    transition: all 0.3s;
    z-index: 998;
}

.admin-trigger:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

.admin-panel {
    display: none !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.95) !important;
    z-index: 10000 !important;
    overflow-y: auto !important;
    visibility: hidden !important;
}

.admin-panel.active {
    display: block !important;
    visibility: visible !important;
}

.admin-header {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 1;
}

.admin-header h2 {
    color: var(--gold);
    font-size: 1.3rem;
}

.admin-close {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #EF4444;
    color: #EF4444;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.admin-close:hover {
    background: #EF4444;
    color: #fff;
}

.admin-body {
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.admin-section {
    background: #1a1a2e;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.admin-section h3 {
    color: var(--gold);
    margin-bottom: 16px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-field {
    margin-bottom: 16px;
}

.admin-field label {
    display: block;
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.admin-field input,
.admin-field textarea,
.admin-field select {
    width: 100%;
    padding: 12px;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
}

.admin-field input:focus,
.admin-field textarea:focus {
    outline: none;
    border-color: var(--gold);
}

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

.admin-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.admin-btn-primary {
    background: var(--gradient-gold);
    color: var(--black);
}

.admin-btn-primary:hover {
    box-shadow: var(--shadow-gold);
}

.admin-btn-secondary {
    background: #334155;
    color: #e2e8f0;
}

.admin-btn-secondary:hover {
    background: #475569;
}

/* Product Catalog Admin */
.product-upload-area {
    border: 2px dashed #334155;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.product-upload-area:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.product-upload-area.dragover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.product-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.product-preview-item {
    position: relative;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 8px;
    overflow: hidden;
}

.product-preview-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.product-preview-item .remove-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: #EF4444;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid var(--gray);
    }

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

    .nav-toggle {
        display: block;
    }

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    .empresa-info {
        grid-template-columns: 1fr;
    }

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

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

    .paquete-featured {
        transform: none;
    }

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

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

    .chat-window {
        width: calc(100vw - 40px);
        right: -15px;
    }

    .slogan-text {
        font-size: 1.2rem;
    }

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