/* ===== CSS VARIABLES ===== */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;
    --gold: #c9a84c;
    --gold-light: #e6c65a;
    --gold-dark: #a68a3e;
    --gold-glow: rgba(201, 168, 76, 0.3);
    --text-primary: #f5f5f5;
    --text-secondary: #aaaaaa;
    --text-muted: #666666;
    --border: #2a2a2a;
    --success: #2ecc71;
    --danger: #e74c3c;
    --warning: #f39c12;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--gold-light);
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #0a0a0a;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 168, 76, 0.4);
}

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

.btn-outline:hover {
    background: var(--gold);
    color: #0a0a0a;
    transform: translateY(-2px);
}

.btn-success {
    background: var(--success);
    color: #fff;
}

.btn-success:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.btn-danger {
    background: var(--danger);
    color: #fff;
}

.btn-danger:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gold);
    letter-spacing: 2px;
}

.nav-logo i {
    font-size: 1.4rem;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
}

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

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

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

.nav-actions {
    display: flex;
    gap: 12px;
}

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

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 12px;
    border-top: 1px solid var(--border);
}

.mobile-menu a {
    color: var(--text-secondary);
    padding: 8px 0;
    font-weight: 500;
}

.mobile-menu.active {
    display: flex;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px 60px;
    position: relative;
    background:
        radial-gradient(ellipse at top, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
        var(--bg-primary);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><rect fill="none" stroke="%231a1a1a" stroke-width="0.5" width="80" height="80"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: #0a0a0a;
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.3);
    animation: pulse 2s infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 6rem);
    letter-spacing: 8px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 2rem);
    letter-spacing: 6px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.hero-tagline {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 32px;
    font-style: italic;
}

.hero-team-photo {
    position: relative;
    z-index: 2;
    margin-top: 48px;
    max-width: 700px;
    width: 100%;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-team-photo img {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gold);
    box-shadow: 0 12px 48px rgba(201, 168, 76, 0.15);
    object-fit: cover;
    max-height: 450px;
}

.team-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    height: 300px;
    border-radius: var(--radius-lg);
    border: 2px dashed var(--gold);
    background: var(--bg-card);
    color: var(--text-muted);
}

.team-placeholder i {
    font-size: 3rem;
    color: var(--gold);
}

.team-placeholder p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

.team-placeholder span {
    font-size: 0.8rem;
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

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

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

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 8px;
}

.section-title i {
    margin-right: 8px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.12);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
    color: var(--gold);
}

.service-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 1px;
}

.service-price span {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== LOCATION ===== */
.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--gold);
    transform: translateX(4px);
}

.info-card i {
    font-size: 1.3rem;
    color: var(--gold);
    margin-top: 2px;
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

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

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 24px;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-brand h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 4px;
    color: var(--gold);
}

.footer-brand p {
    color: var(--text-muted);
    letter-spacing: 2px;
}

.social-links h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.1);
}

.social-icon.instagram:hover {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(131, 58, 180, 0.4);
}

.social-icon.facebook:hover {
    background: #1877F2;
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(24, 119, 242, 0.4);
}

.social-icon.tiktok:hover {
    background: #000;
    color: #fff;
    border-color: #69C9D0;
    box-shadow: 0 4px 20px rgba(105, 201, 208, 0.4);
}

.social-icon.whatsapp:hover {
    background: #25D366;
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== MODALS ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 24px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalIn 0.3s ease-out;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.modal-small {
    max-width: 380px;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--border);
}

.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--gold);
}

.modal-header h2 i {
    margin-right: 8px;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.modal-close:hover {
    color: var(--danger);
    transform: rotate(90deg);
}

.modal-body {
    padding: 24px;
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group label i {
    margin-right: 6px;
    color: var(--gold);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

/* White calendar icon */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.login-error {
    color: var(--danger);
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 16px;
    padding: 8px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: var(--radius);
}

/* ===== AGENDA PANEL ===== */
.agenda-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: var(--bg-primary);
    overflow-y: auto;
}

.agenda-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px;
}

.agenda-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.agenda-header-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.agenda-header h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    letter-spacing: 3px;
    color: var(--gold);
}

.agenda-header h2 i {
    margin-right: 8px;
}

.agenda-controls {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.agenda-controls .form-group {
    margin-bottom: 0;
    min-width: 200px;
}

.agenda-legend {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

.dot-available {
    background: var(--text-muted);
}

.dot-pending {
    background: var(--warning);
}

.dot-confirmed {
    background: var(--success);
}

.dot-cancelled {
    background: var(--danger);
}

.dot-blocked {
    background: #7f8c8d;
}

/* ===== CONFIRMATION CARD ===== */
.modal-header-success {
    border-bottom-color: var(--success);
}

.modal-header-success h2 {
    color: var(--success);
}

.confirmation-card {
    text-align: center;
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.2), rgba(46, 204, 113, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--success);
    animation: pulse-success 2s infinite;
}

@keyframes pulse-success {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(46, 204, 113, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(46, 204, 113, 0.4);
    }
}

.confirmation-details {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
}

.confirmation-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.confirmation-row:last-child {
    border-bottom: none;
}

.confirmation-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.confirmation-label i {
    margin-right: 6px;
    color: var(--gold);
}

.confirmation-value {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.confirmation-notice {
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 20px;
}

.notice-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    text-align: left;
}

.notice-item i {
    font-size: 1.3rem;
    color: var(--success);
    flex-shrink: 0;
}

.notice-item .fa-question-circle {
    color: var(--gold);
}

.notice-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.notice-item a {
    color: var(--success);
    font-weight: 600;
}

.notice-item a:hover {
    text-decoration: underline;
}

/* ===== BLOCKED SLOTS ===== */
.slot-blocked-bg {
    background: rgba(127, 140, 141, 0.1);
    border-color: rgba(127, 140, 141, 0.3);
}

.slot-blocked-text {
    color: #7f8c8d;
    font-style: italic;
    font-size: 0.9rem;
}

.slot-blocked-text i {
    margin-right: 6px;
}

.btn-block {
    background: rgba(127, 140, 141, 0.2);
    color: #95a5a6;
    border: 1px solid rgba(127, 140, 141, 0.3);
}

.btn-block:hover {
    background: #7f8c8d;
    color: #fff;
    transform: translateY(-2px);
}

/* ===== AGENDA DAY INFO ===== */
.agenda-day-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius);
    margin-bottom: 12px;
    color: var(--gold);
    font-weight: 500;
    font-size: 0.9rem;
}

.agenda-day-info i {
    margin-right: 4px;
}

.agenda-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.agenda-empty i {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.agenda-empty p {
    font-size: 1rem;
}

/* ===== AGENDA SLOTS ===== */
.agenda-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.agenda-slot {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    gap: 16px;
}

.agenda-slot:hover {
    border-color: rgba(201, 168, 76, 0.3);
}

.slot-time {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 1px;
    color: var(--gold);
    min-width: 80px;
}

.slot-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.slot-info {
    flex: 1;
}

.slot-client-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.slot-client-phone {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.slot-service {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
}

.slot-available {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.9rem;
}

.slot-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.slot-status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.badge-confirmed {
    background: rgba(46, 204, 113, 0.15);
    color: var(--success);
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.badge-cancelled {
    background: rgba(231, 76, 60, 0.15);
    color: var(--danger);
    border: 1px solid rgba(231, 76, 60, 0.3);
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-card);
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    padding: 16px 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5000;
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.2);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

.toast i {
    color: var(--success);
    font-size: 1.2rem;
}

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

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

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

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

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 40px rgba(201, 168, 76, 0.3);
    }

    50% {
        box-shadow: 0 0 60px rgba(201, 168, 76, 0.5);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .location-wrapper {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .agenda-slot {
        flex-wrap: wrap;
    }

    .slot-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .agenda-controls {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 480px) {
    .hero-title {
        letter-spacing: 4px;
    }

    .section {
        padding: 60px 0;
    }

    .modal {
        margin: 16px;
    }
}

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

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* ===== CAMPANA DE NOTIFICACIONES (AGENDA) ===== */
.notif-bell {
    position: relative;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.notif-bell:hover {
    border-color: var(--gold-dark);
    color: var(--gold);
    background: var(--gold-glow);
}

.notif-bell.has-unread {
    border-color: rgba(231, 76, 60, 0.4);
    color: var(--danger);
    animation: bellRing 1.2s ease-in-out;
}

@keyframes bellRing {
    0% {
        transform: rotate(0);
    }

    10% {
        transform: rotate(-20deg);
    }

    20% {
        transform: rotate(20deg);
    }

    30% {
        transform: rotate(-15deg);
    }

    40% {
        transform: rotate(15deg);
    }

    50% {
        transform: rotate(-8deg);
    }

    60% {
        transform: rotate(8deg);
    }

    70% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(0);
    }
}

.notif-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    background: var(--danger);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-primary);
    animation: badgePop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes badgePop {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.notif-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: -8px;
    width: 330px;
    background: var(--bg-card);
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    z-index: 4000;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: notifFadeIn 0.2s ease;
}

@keyframes notifFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

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

.notif-dropdown.open {
    display: flex;
}

.notif-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.notif-dropdown-header i {
    color: var(--gold);
    margin-right: 6px;
}

.notif-clear-btn {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.notif-clear-btn:hover {
    background: var(--gold-glow);
}

.notif-list {
    max-height: 320px;
    overflow-y: auto;
}

.notif-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.notif-item:last-child {
    border-bottom: none;
}

.notif-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.notif-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.12);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.notif-item-body {
    flex: 1;
    min-width: 0;
}

.notif-item-title {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notif-item-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.notif-empty {
    padding: 32px 18px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.notif-empty i {
    display: block;
    font-size: 1.6rem;
    color: var(--success);
    margin-bottom: 10px;
}/* ===== UNDER CONSTRUCTION OVERLAY ===== */
.construction-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    animation: fadeIn 0.8s ease-out;
}

.construction-content {
    max-width: 600px;
    background: var(--bg-secondary);
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 48px 32px;
    box-shadow: 0 0 50px rgba(201, 168, 76, 0.15);
    position: relative;
    overflow: hidden;
}

.construction-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.construction-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 24px;
    animation: slowRotate 20s linear infinite;
}

.construction-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.construction-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
    line-height: 1.8;
}

.construction-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.construction-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-muted);
}

@keyframes slowRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .construction-title {
        font-size: 2.2rem;
    }

    .construction-content {
        padding: 32px 20px;
    }
}
