*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
:root {
    --primary: #0f5a3a; --primary-light: #e8f5ee; --primary-dark: #0a3d28;
    --text: #1c1c1c; --text-secondary: #5a5a5a; --text-muted: #8a8a8a;
    --bg: #f8f9fa; --white: #ffffff; --border: #e2e5e9;
    --danger: #dc3545; --success: #0f5a3a;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,.06);
    --radius: 12px;
}
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Header */
.header { background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 0; text-align: center; }
.header-badge { font-size: 13px; color: var(--primary); font-weight: 600; background: var(--primary-light); padding: 6px 18px; border-radius: 20px; display: inline-block; }

/* Hero */
.hero { padding: 56px 0; background: var(--white); }
.hero-grid { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.hero-tag { font-size: 13px; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; }
.hero h1 { font-size: 30px; font-weight: 800; line-height: 1.28; color: var(--text); margin-bottom: 18px; }
.hero-desc { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 24px; }
.hero-bullets { display: flex; flex-direction: column; gap: 10px; }
.bullet { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text); }
.bullet-icon { width: 22px; height: 22px; background: var(--primary-light); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }

/* CTA Buttons */
.hero-cta-group { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.cta-btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; border-radius: 10px; font-size: 15px; font-weight: 700; font-family: var(--font); text-decoration: none; cursor: pointer; transition: all .2s; }
.cta-btn-primary { background: var(--primary); color: var(--white); border: 2px solid var(--primary); }
.cta-btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(46,125,50,.25); }
.cta-btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.cta-btn-outline:hover { background: var(--primary-light); transform: translateY(-1px); }
.cta-center { justify-content: center; }

/* Doctor Card */
.doctor-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); position: sticky; top: 24px; }
.doctor-card img { width: 100%; height: 260px; object-fit: cover; object-position: top; }
.doctor-info { padding: 20px; }
.doctor-info h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.doctor-specialty { font-size: 13px; color: var(--primary); font-weight: 600; display: block; margin-bottom: 10px; }
.doctor-bio { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* Form Section */
.form-section { padding: 32px 0 24px; background: var(--bg); border-top: 1px solid var(--border); }
.form-wrapper { max-width: 640px; margin: 0 auto; }
.form-header { text-align: center; margin-bottom: 24px; }
.form-header h2 { font-size: 26px; font-weight: 700; margin-bottom: 10px; }
.form-header p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }

/* Steps */
.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
@keyframes shake { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-4px)} 75%{transform:translateX(4px)} }
.shake { animation: shake .4s ease; }

.step-indicator { margin-bottom: 24px; }
.step-label { font-size: 13px; color: var(--text-muted); font-weight: 500; display: block; margin-bottom: 8px; }
.step-bar { height: 4px; background: #e9ecef; border-radius: 4px; overflow: hidden; }
.step-progress { height: 100%; background: var(--primary); border-radius: 4px; transition: width .4s ease; }
.step-title { font-size: 20px; font-weight: 700; margin-bottom: 20px; color: var(--text); }

/* Fields */
.field { margin-bottom: 22px; }
.field > label { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.field input[type="text"], .field input[type="number"] { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px; font-size: 15px; font-family: var(--font); color: var(--text); background: var(--white); transition: border-color .2s; }
.field input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(15,90,58,.08); }
.field input.error { border-color: var(--danger); }
.field input::placeholder { color: var(--text-muted); }

/* Option Cards (radio replacement for selects) */
.option-grid { display: grid; gap: 8px; }
.option-grid.cols-1 { grid-template-columns: 1fr; }
.option-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.option-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.option-card { cursor: pointer; position: relative; }
.option-card input { position: absolute; opacity: 0; pointer-events: none; }
.option-box { display: flex; align-items: center; justify-content: center; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 14px; font-weight: 500; color: var(--text-secondary); background: var(--white); transition: all .15s ease; text-align: center; min-height: 46px; }
.option-card input:checked + .option-box { border-color: var(--primary); background: var(--primary-light); color: var(--primary); font-weight: 600; }
.option-card:hover .option-box { border-color: #c0d4ca; }

/* Consultation cards */
.consult-box { flex-direction: column; padding: 18px 10px; gap: 4px; }
.consult-icon { font-size: 24px; display: block; }
.consult-label { font-size: 14px; font-weight: 700; display: block; }
.consult-desc { font-size: 11px; color: var(--text-muted); display: block; }
.option-card input:checked + .consult-box .consult-desc { color: var(--primary); }

/* Step description */
.step-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; }

/* Upload area */
.upload-area { border: 2px dashed var(--border); border-radius: 12px; padding: 36px 20px; text-align: center; cursor: pointer; transition: all .2s; background: var(--white); }
.upload-area:hover, .upload-area.drag-over { border-color: var(--primary); background: var(--primary-light); }
.upload-icon { font-size: 32px; margin-bottom: 8px; }
.upload-text { font-size: 14px; color: var(--text); margin-bottom: 4px; }
.upload-link { color: var(--primary); font-weight: 600; text-decoration: underline; }
.upload-hint { font-size: 12px; color: var(--text-muted); }

/* File list */
.file-list { margin-top: 12px; display: flex; flex-direction: column; gap: 8px; }
.file-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; background: var(--white); border: 1px solid var(--border); border-radius: 10px; }
.file-preview { width: 44px; height: 44px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: #f0f0f0; display: flex; align-items: center; justify-content: center; }
.file-preview img { width: 100%; height: 100%; object-fit: cover; }
.file-pdf { font-size: 11px; font-weight: 700; color: var(--danger); }
.file-details { flex: 1; min-width: 0; }
.file-name { display: block; font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.file-size { display: block; font-size: 11px; color: var(--text-muted); }
.file-remove { background: none; border: none; font-size: 16px; color: var(--text-muted); cursor: pointer; padding: 4px 8px; border-radius: 6px; transition: .2s; }
.file-remove:hover { background: #fef2f2; color: var(--danger); }

/* Camera & Upload Actions */
.upload-actions { margin-top: 12px; display: flex; justify-content: center; }
.btn-camera { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: var(--white); border: 1.5px solid var(--primary); border-radius: 10px; color: var(--primary); font-size: 14px; font-weight: 600; font-family: var(--font); cursor: pointer; transition: all .2s; }
.btn-camera:hover { background: var(--primary-light); transform: translateY(-1px); }
.btn-camera svg { flex-shrink: 0; }

/* Attached badge */
.attached-badge { display: flex; align-items: center; gap: 8px; margin-top: 12px; padding: 10px 16px; background: #e8f5ee; border: 1px solid #b7e4c7; border-radius: 10px; color: var(--primary); font-size: 13px; font-weight: 600; font-family: var(--font); }
.attached-badge svg { flex-shrink: 0; color: var(--primary); }

/* Admin search */
.admin-search { position: relative; margin-bottom: 20px; }
.admin-search input { width: 100%; padding: 12px 16px 12px 40px; border: 1px solid var(--border); border-radius: 10px; font-size: 14px; font-family: var(--font); background: var(--white); }
.admin-search input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(15,90,58,.08); }
.admin-search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-size: 16px; color: var(--text-muted); }

/* File modal */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,.6); z-index: 1000; display: flex; align-items: center; justify-content: center; }
.modal-content { background: var(--white); border-radius: 16px; padding: 24px; max-width: 700px; width: 90%; max-height: 85vh; overflow-y: auto; }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.modal-header h3 { font-size: 18px; }
.modal-close { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--text-muted); padding: 4px 8px; }
.modal-files { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.modal-file { border: 1px solid var(--border); border-radius: 10px; overflow: hidden; text-align: center; cursor: pointer; transition: .2s; }
.modal-file:hover { border-color: var(--primary); box-shadow: 0 4px 12px rgba(0,0,0,.06); }
.modal-file img { width: 100%; height: 120px; object-fit: cover; }
.modal-file .mf-pdf { height: 120px; display: flex; align-items: center; justify-content: center; background: #fef2f2; font-weight: 700; color: var(--danger); }
.modal-file p { font-size: 11px; padding: 8px; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.view-btn { background: none; border: 1px solid var(--border); border-radius: 6px; padding: 4px 10px; font-size: 12px; cursor: pointer; font-family: var(--font); color: var(--primary); font-weight: 600; }
.view-btn:hover { background: var(--primary-light); }

/* Date Input & Field Labels */
.field-label { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.date-input { width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 10px; font-size: 15px; font-family: var(--font); color: var(--text); background: var(--white); transition: border-color .2s; box-sizing: border-box; -webkit-appearance: none; }
.date-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(22,101,52,.08); }
.date-input.error { border-color: var(--danger); }

/* Date Cards Grid */
.date-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.date-option { cursor: pointer; position: relative; }
.date-option input { position: absolute; opacity: 0; pointer-events: none; }
.date-box { display: flex; flex-direction: column; align-items: center; padding: 16px 10px; border: 1.5px solid var(--border); border-radius: 10px; transition: all .15s ease; text-align: center; background: var(--white); }
.date-option input:checked + .date-box { border-color: var(--primary); background: var(--primary-light); }
.date-label { font-size: 14px; font-weight: 700; color: var(--text); display: block; }
.date-sub { font-size: 11px; color: var(--text-muted); display: block; margin-top: 3px; }
.date-option input:checked + .date-box .date-label { color: var(--primary); }
.date-option:hover .date-box { border-color: #c0d4ca; }

/* Time Grid */
.time-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.time-option { cursor: pointer; position: relative; }
.time-option input { position: absolute; opacity: 0; pointer-events: none; }
.time-box { display: flex; flex-direction: column; align-items: center; padding: 16px 10px; border: 1.5px solid var(--border); border-radius: 10px; transition: all .15s ease; text-align: center; background: var(--white); }
.time-option input:checked + .time-box { border-color: var(--primary); background: var(--primary-light); }
.time-period { font-size: 13px; font-weight: 700; color: var(--text); display: block; }
.time-range { font-size: 12px; color: var(--text-muted); display: block; margin-top: 3px; }
.time-option input:checked + .time-box .time-period { color: var(--primary); }
.time-option:hover .time-box { border-color: #c0d4ca; }
.time-option.slot-disabled { pointer-events: none; opacity: .4; }
.time-option.slot-disabled .time-box { background: #f3f3f3; border-color: #e0e0e0; }
.time-option.slot-disabled .time-period::after { content: ' — indisponível'; font-weight: 400; font-size: 11px; color: var(--text-muted); }

/* Buttons */
.btn-next, .btn-submit { width: 100%; padding: 14px; background: var(--primary); color: var(--white); border: none; border-radius: 10px; font-size: 15px; font-weight: 700; font-family: var(--font); cursor: pointer; transition: background .2s; }
.btn-next:hover, .btn-submit:hover { background: var(--primary-dark); }
.btn-back { padding: 14px 28px; background: none; border: 1px solid var(--border); border-radius: 10px; font-size: 14px; font-weight: 600; color: var(--text-secondary); font-family: var(--font); cursor: pointer; transition: .2s; }
.btn-back:hover { border-color: var(--text-muted); }
.btn-group { display: flex; gap: 12px; }
.btn-group .btn-next, .btn-group .btn-submit { flex: 1; }
.form-disclaimer { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 14px 16px; margin-bottom: 20px; }
.form-disclaimer p { font-size: 12px; color: var(--text-muted); line-height: 1.5; margin: 0; }
.btn-skip { display: flex; align-items: center; justify-content: center; width: 100%; margin-top: 14px; padding: 16px 20px; background: var(--white); border: 2px solid var(--border); border-radius: 10px; font-size: 15px; font-weight: 600; color: var(--text-secondary); font-family: var(--font); cursor: pointer; text-align: center; transition: all .2s; text-decoration: none; }
.btn-skip:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }

/* Preference Notice */
.preference-notice { display: flex; gap: 10px; align-items: flex-start; background: #fef9e7; border: 1px solid #f0d96b; border-radius: 10px; padding: 14px 16px; margin-bottom: 16px; animation: slideIn .3s ease; }
.preference-notice svg { color: #b8860b; }
.preference-notice p { font-size: 13px; color: #6b5900; line-height: 1.5; margin: 0; }
.preference-notice strong { color: #4a3d00; }
@keyframes slideIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* Product Section */
.product-section { padding: 56px 0; background: var(--white); border-top: 1px solid var(--border); }
.product-grid { display: grid; grid-template-columns: 320px 1fr; gap: 40px; align-items: center; }
.product-image-wrap { padding: 24px; text-align: center; }
.product-img { max-width: 100%; height: auto; border-radius: 8px; }
.product-badge { display: inline-block; background: var(--primary-light); color: var(--primary); font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 20px; margin-bottom: 12px; letter-spacing: .3px; }
.product-info h2 { font-size: 28px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.product-tagline { font-size: 15px; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.5; }
.product-details { display: flex; flex-direction: column; gap: 16px; }
.product-detail { display: flex; gap: 14px; align-items: flex-start; }
.product-detail svg { flex-shrink: 0; margin-top: 2px; }
.product-detail strong { display: block; font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.product-detail span { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* Anti-Piracy Warning */
.piracy-warning { padding: 32px 0; background: #fafafa; border-top: 1px solid var(--border); }
.piracy-box { background: var(--white); border: 1px solid #e0ddd8; border-radius: var(--radius); padding: 24px; text-align: center; }
.piracy-logos { max-width: 100%; height: auto; margin-bottom: 16px; }
.piracy-text { font-size: 13px; color: #555; line-height: 1.7; }
.piracy-text strong { color: #8b2500; font-size: 13px; display: block; margin-bottom: 6px; }

/* Section Titles (shared) */
.section-title { font-size: 24px; font-weight: 800; color: var(--text); text-align: center; margin-bottom: 8px; }
.section-subtitle { font-size: 14px; color: var(--text-secondary); text-align: center; max-width: 640px; margin: 0 auto 32px; line-height: 1.6; }

/* Benefits Section */
.benefits-section { padding: 56px 0; background: var(--bg); border-top: 1px solid var(--border); }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.benefit-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; text-align: center; transition: transform .2s, box-shadow .2s; }
.benefit-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.benefit-icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; background: var(--primary-light); border-radius: 50%; margin-bottom: 16px; }
.benefit-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.benefit-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* Ingredients Section */
.ingredients-section { padding: 56px 0; background: var(--white); border-top: 1px solid var(--border); }
.ingredients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ingredient-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 20px; text-align: center; transition: transform .2s, box-shadow .2s; }
.ingredient-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.ingredient-icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; margin-bottom: 12px; }
.ingredient-card h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.ingredient-card p { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }

/* How It Works */
.howto-section { padding: 56px 0; background: var(--bg); border-top: 1px solid var(--border); }
.howto-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 840px; margin: 0 auto; }
.howto-step { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 20px; text-align: center; position: relative; }
.howto-number { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: var(--primary); color: var(--white); border-radius: 50%; font-size: 18px; font-weight: 800; margin-bottom: 14px; }
.howto-step h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.howto-step p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.howto-hero { text-align: center; margin-bottom: 32px; }
.howto-hero-img { max-width: 320px; width: 100%; height: auto; border-radius: var(--radius); }

/* ANVISA Section */
.anvisa-section { padding: 56px 0; background: var(--white); border-top: 1px solid var(--border); }
.anvisa-grid { display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: center; }
.anvisa-img { max-width: 100%; height: auto; }
.anvisa-info h2 { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.anvisa-info p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 10px; }

/* About */
.about { padding: 56px 0; background: var(--white); border-top: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.about h2 { font-size: 24px; font-weight: 700; margin-bottom: 16px; color: var(--text); }
.about-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 14px; }
.about-stats { display: flex; flex-direction: column; gap: 12px; }
.stat-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; text-align: center; }
.stat-number { display: block; font-size: 28px; font-weight: 800; color: var(--primary); }
.stat-text { font-size: 13px; color: var(--text-secondary); }

/* Trust */
.trust { padding: 48px 0; background: var(--bg); border-top: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trust-item { display: flex; align-items: flex-start; gap: 14px; }
.trust-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.trust-item strong { font-size: 14px; display: block; margin-bottom: 2px; }
.trust-item p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; margin: 0; }

/* Footer */
.footer { background: var(--white); border-top: 1px solid var(--border); padding: 24px 0; text-align: center; }
.footer p { font-size: 13px; color: var(--text-muted); }
.footer-small { font-size: 11px; margin-top: 4px; }
.footer .footer-links { margin-top: 8px; font-size: 12px; }
.footer .footer-links a { color: var(--primary); text-decoration: none; }
.footer .footer-links a:hover { text-decoration: underline; }

/* Floating CTA */
.floating-cta { position: fixed; bottom: 24px; right: 24px; z-index: 999; display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px; background: var(--primary); color: var(--white); font-family: var(--font); font-size: 14px; font-weight: 700; border-radius: 50px; text-decoration: none; box-shadow: 0 6px 24px rgba(46,125,50,.35); transform: translateY(100px); opacity: 0; transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .4s ease, background .2s; pointer-events: none; }
.floating-cta.visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.floating-cta:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(46,125,50,.45); }

/* Bottom CTA */
.bottom-cta { padding: 56px 0; background: linear-gradient(135deg, var(--primary-light) 0%, #e8f5e9 100%); border-top: 1px solid var(--border); text-align: center; }
.bottom-cta h2 { font-size: 26px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.bottom-cta p { font-size: 15px; color: var(--text-secondary); margin-bottom: 24px; }

/* ========== ADMIN PANEL STYLES ========== */
.admin-login { max-width: 400px; margin: 100px auto; padding: 40px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
.admin-login h2 { text-align: center; margin-bottom: 20px; }
.admin-login input { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px; font-size: 15px; margin-bottom: 14px; font-family: var(--font); }
.admin-login button { width: 100%; padding: 12px; background: var(--primary); color: var(--white); border: none; border-radius: 8px; font-weight: 700; cursor: pointer; font-size: 14px; font-family: var(--font); }
.admin-panel { max-width: 1200px; margin: 0 auto; padding: 24px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.admin-header h1 { font-size: 22px; }
.admin-stats { display: flex; gap: 16px; flex-wrap: wrap; }
.admin-stat { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 14px 20px; text-align: center; }
.admin-stat .num { font-size: 24px; font-weight: 800; color: var(--primary); display: block; }
.admin-stat .lbl { font-size: 12px; color: var(--text-muted); }
.admin-actions { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.admin-btn { padding: 8px 16px; border: 1px solid var(--border); border-radius: 8px; background: var(--white); font-size: 13px; font-weight: 600; cursor: pointer; font-family: var(--font); transition: .2s; }
.admin-btn:hover { border-color: var(--primary); color: var(--primary); }
.admin-btn.danger { color: var(--danger); }
.admin-btn.danger:hover { border-color: var(--danger); background: #fef2f2; }
.admin-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
table { width: 100%; border-collapse: collapse; font-size: 13px; }
thead { background: var(--bg); }
th { padding: 12px 14px; text-align: left; font-weight: 600; color: var(--text-secondary); border-bottom: 1px solid var(--border); white-space: nowrap; }
td { padding: 10px 14px; border-bottom: 1px solid #f0f0f0; color: var(--text); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: #fafbfc; }
.badge { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; }
.badge.new { background: #e8f5ee; color: var(--primary); }
.empty-state { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.empty-state p { font-size: 15px; }

/* Responsive - Tablet */
@media (max-width: 768px) {
    .container { padding: 0 18px; }
    .header-badge { font-size: 12px; padding: 5px 14px; }

    .hero { padding: 40px 0; }
    .hero-grid { grid-template-columns: 1fr; gap: 28px; }
    .hero h1 { font-size: 26px; }
    .hero-desc { font-size: 15px; }
    .hero-cta-group { flex-direction: column; }
    .cta-btn { width: 100%; text-align: center; }

    .doctor-card { position: static; }
    .doctor-card img { height: 220px; }

    .form-section { padding: 44px 0; }
    .form-header h2 { font-size: 22px; }
    .option-grid.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
    .time-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }

    .about-grid { grid-template-columns: 1fr; gap: 28px; }
    .about-stats { flex-direction: row; }
    .stat-card { flex: 1; padding: 16px; }
    .stat-number { font-size: 24px; }

    .product-section { padding: 36px 0; }
    .product-grid { grid-template-columns: 1fr; gap: 28px; }
    .product-image-wrap { padding: 20px; max-width: 280px; margin: 0 auto; }

    .benefits-grid { grid-template-columns: 1fr 1fr; }
    .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
    .howto-grid { grid-template-columns: 1fr; gap: 16px; }
    .howto-hero-img { max-width: 260px; }
    .anvisa-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
    .anvisa-img { max-width: 240px; margin: 0 auto; }

    .bottom-cta { padding: 40px 0; }
    .bottom-cta h2 { font-size: 22px; }

    .trust-grid { grid-template-columns: 1fr; gap: 16px; }
    .trust-item { padding: 14px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .container { padding: 0 14px; }
    .header-badge { font-size: 11px; padding: 5px 12px; }

    .hero { padding: 28px 0; }
    .hero h1 { font-size: 22px; line-height: 1.3; }
    .hero-desc { font-size: 14px; }
    .hero-tag { font-size: 11px; }
    .bullet { font-size: 14px; }
    .hero-cta-group { flex-direction: column; gap: 10px; }
    .cta-btn { width: 100%; text-align: center; padding: 13px 20px; font-size: 14px; }

    .doctor-card img { height: 200px; }
    .doctor-info { padding: 16px; }
    .doctor-info h3 { font-size: 16px; }
    .doctor-bio { font-size: 12px; }

    .form-section { padding: 32px 0; }
    .form-header h2 { font-size: 20px; }
    .form-header p { font-size: 14px; }
    .step-title { font-size: 18px; }
    .field > label { font-size: 13px; }
    .field input[type="text"], .field input[type="number"] { font-size: 14px; padding: 11px 14px; }

    .option-grid.cols-3 { grid-template-columns: 1fr 1fr; }
    .option-box { padding: 10px 10px; font-size: 13px; min-height: 42px; }

    .time-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .time-box { padding: 12px 8px; }
    .time-period { font-size: 12px; }
    .time-range { font-size: 11px; }

    .date-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .date-box { padding: 12px 8px; }
    .date-label { font-size: 13px; }
    .date-sub { font-size: 10px; }

    .product-section { padding: 32px 0; }
    .product-grid { grid-template-columns: 1fr; gap: 24px; }
    .product-image-wrap { padding: 16px; max-width: 240px; margin: 0 auto; }
    .product-info h2 { font-size: 22px; }
    .product-tagline { font-size: 14px; }

    .piracy-box { padding: 16px; }
    .piracy-logos { margin-bottom: 12px; }

    .section-title { font-size: 20px; }
    .section-subtitle { font-size: 13px; }

    .benefits-section { padding: 36px 0; }
    .benefits-grid { grid-template-columns: 1fr; gap: 14px; }
    .benefit-card { padding: 20px 16px; }
    .benefit-icon { width: 48px; height: 48px; }

    .ingredients-section { padding: 36px 0; }
    .ingredients-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .ingredient-card { padding: 16px 12px; }
    .ingredient-icon { width: 48px; height: 48px; }
    .ingredient-card h4 { font-size: 13px; }

    .howto-section { padding: 36px 0; }
    .howto-grid { grid-template-columns: 1fr; gap: 16px; }
    .howto-step { padding: 20px 16px; }
    .howto-hero-img { max-width: 220px; }

    .anvisa-section { padding: 36px 0; }
    .anvisa-grid { grid-template-columns: 1fr; gap: 20px; text-align: center; }
    .anvisa-img { max-width: 220px; margin: 0 auto; }

    .bottom-cta { padding: 32px 0; }
    .bottom-cta h2 { font-size: 20px; }
    .bottom-cta p { font-size: 13px; }

    .btn-next, .btn-submit { font-size: 14px; padding: 13px; }
    .btn-back { font-size: 13px; padding: 12px 20px; }
    .btn-group { flex-direction: column-reverse; }
    .btn-group .btn-back { width: 100%; text-align: center; }

    .about { padding: 40px 0; }
    .about h2 { font-size: 20px; }
    .about-content p { font-size: 14px; }
    .about-stats { flex-direction: column; }
    .stat-card { padding: 14px; }
    .stat-number { font-size: 22px; }

    .trust-item strong { font-size: 13px; }
    .trust-item p { font-size: 12px; }

    .footer p { font-size: 12px; }
    .footer-small { font-size: 10px; }

    .floating-cta { bottom: 16px; right: 16px; left: 16px; justify-content: center; font-size: 13px; padding: 13px 20px; }

    /* Admin mobile */
    .admin-header { flex-direction: column; align-items: flex-start; }
    .admin-stats { width: 100%; }
    .admin-stat { flex: 1; }
    th, td { font-size: 12px; padding: 8px 10px; }
}
