* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #111;
    color: #fff;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
    background: rgba(10, 10, 10, .75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    z-index: 1000;
}

.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

nav a:hover {
    color: #d4af37;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.btn-primary {
    display: inline-block;
    background: #d4af37;
    color: #111;
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 8px;
    font-weight: bold;
    transition: .3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    display: inline-block;
    border: 2px solid #d4af37;
    color: #fff;
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 8px;
    font-weight: bold;
    transition: .3s;
    background: transparent;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #111;
}

.hero {
    min-height: 90vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 0 8%;
    background-image:
        linear-gradient(rgba(0, 0, 0, .72), rgba(0, 0, 0, .72));
    background-size: cover;
    background-position: center;
}

.hero-content {
    width: 600px;
    max-width: 90%;
    margin-left: 8%;
}

.hero-tag {
    display: inline-block;
    color: #d4af37;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero h1 {
    font-size: 78px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 82px;
    margin-bottom: 25px;
}

.hero p {
    font-size: 22px;
    line-height: 34px;
    color: #ddd;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-card {
    width: 360px;
    padding: 35px;
    border-radius: 18px;
    background: rgba(15, 15, 15, .82);
    border: 1px solid rgba(212, 175, 55, .25);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .45);
}

.hero-card h3 {
    color: #d4af37;
    margin-bottom: 25px;
    font-size: 28px;
}

.hero-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.hero-card li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: #ddd;
}

.rating {
    margin-top: 20px;
}

.stars {
    color: #d4af37;
    font-size: 24px;
}

.rating p {
    margin-top: 10px;
    color: #bbb;
    font-size: 15px;
}

.services {
    padding: 120px 8%;
    background: #111;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title span {
    color: #d4af37;
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: bold;
}

.section-title h2 {
    margin-top: 15px;
    font-size: 42px;
}

.section-title p {
    color: #bbb;
    margin-top: 15px;
    font-size: 18px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.service-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: .35s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(212, 175, 55, .18);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center 18%;
}

.service-info {
    padding: 25px;
}

.service-info h3 {
    margin-bottom: 15px;
    font-size: 26px;
}

.service-info p {
    color: #bdbdbd;
    margin-bottom: 20px;
}

.service-info span {
    color: #d4af37;
    font-size: 24px;
    font-weight: bold;
}

.service-duration {
    font-size: 13px;
    margin-top: 6px;
    margin-bottom: 0;
}

.plans {
    padding: 120px 8%;
    background: #0d0d0d;
}

.plans-page,
.team-page,
.gallery-page,
.contact-page {
    padding: 100px 8%;
    background: #fff;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1000px;
    margin: 0 auto;
}

.plan-card {
    position: relative;
    background: #1a1a1a;
    border-radius: 18px;
    padding: 45px 35px;
    text-align: center;
    transition: .35s;
    border: 1px solid rgba(212, 175, 55, .15);
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.plan-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 20px 45px rgba(212, 175, 55, .18);
}

.plan-card h3 {
    color: #d4af37;
    font-size: 30px;
    margin-bottom: 15px;
}

.plan-card h4 {
    font-size: 52px;
    margin-bottom: 30px;
}

.plan-card h4 small {
    font-size: 22px;
    color: #d4af37;
}

.plan-card h4 span {
    font-size: 18px;
    color: #bdbdbd;
}

.plan-card ul {
    list-style: none;
    margin-bottom: 35px;
    flex-grow: 1;
}

.plan-card li {
    padding: 10px 0;
    color: #d8d8d8;
}

.plan-card .btn-primary {
    align-self: center;
    margin-top: auto;
}

.destaque {
    border: 2px solid #d4af37;
    transform: scale(1.04);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #d4af37;
    color: #111;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: bold;
}

.page-hero {
    padding: 170px 8% 90px;
    text-align: center;
    background: #f1f1f1;
}

.page-hero span {
    color: #d4af37;
    font-size: 14px;
    letter-spacing: 4px;
    font-weight: bold;
}

.page-hero h1 {
    margin-top: 15px;
    font-size: 52px;
    color: #111;
}

.page-hero p {
    max-width: 700px;
    margin: 20px auto 0;
    color: #666;
    font-size: 18px;
    line-height: 30px;
}

.team-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 18px;
    padding: 40px 30px;
    text-align: center;
    transition: .3s;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.team-avatar {
    width: 100%;
    height: 260px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #d4af37;
    color: #111;
    font-size: 32px;
    font-weight: bold;
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-info h3 {
    color: #111;
    font-size: 25px;
    margin-bottom: 8px;
}

.team-info span {
    color: #b89216;
    font-weight: bold;
}

.team-info p {
    color: #666;
    line-height: 25px;
    margin-top: 18px;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    height: 350px;
    overflow: hidden;
    border-radius: 18px;
    background: #eee;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.contact-info h2 {
    color: #111;
    font-size: 38px;
    margin-bottom: 20px;
}

.contact-info > p {
    color: #666;
    line-height: 28px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 4px;
    color: #d4af37;
}

.contact-item h3 {
    margin-bottom: 6px;
    font-size: 19px;
}

.contact-item p {
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.contact-card {
    background: #f5f5f5;
    border-radius: 20px;
    padding: 55px;
    text-align: center;
    border: 1px solid #ddd;
}

.contact-card h2 {
    color: #111;
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    margin-bottom: 30px;
}

.booking-page {
    padding: 100px 8%;
    background: #111;
    min-height: 600px;
}

.booking-card {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 45px;
    background: #1a1a1a;
    border: 1px solid rgba(212, 175, 55, .18);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.booking-form-step {
    width: 100%;
    text-align: center;
}

.booking-form-step h2 {
    margin-bottom: 12px;
}

.booking-form-step > p {
    color: #aaa;
    margin-bottom: 30px;
}

.booking-form-step .login-tag {
    margin-bottom: 15px;
}

.service-options,
.product-options,
.employee-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.service-option,
.product-option,
.employee-option {
    padding: 25px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 15px;
    cursor: pointer;
    transition: .25s;
}

.service-option:hover,
.product-option:hover,
.employee-option:hover {
    border-color: #d4af37;
    transform: translateY(-3px);
}

.service-option h3,
.product-option h3,
.employee-option h3 {
    margin-bottom: 10px;
}

.service-option p,
.product-option p,
.employee-option p {
    color: #aaa;
}

.service-option.selected,
.product-option.selected,
.employee-option.selected {
    border: 2px solid #d4af37;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, .1);
}

.time-slots {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.time-slot {
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid #d4af37;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
}

.time-slot:hover {
    background: rgba(212, 175, 55, .15);
}

.time-slot.selected {
    background: #d4af37;
    color: #111;
    font-weight: bold;
}

.slots-message {
    color: #aaa;
    font-size: 14px;
    margin: 0;
}

.employee-option input {
    margin-top: 15px;
    accent-color: #d4af37;
}

.product-image {
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 12px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 20px;
}

.booking-total strong {
    color: #d4af37;
    font-size: 25px;
}

.booking-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.booking-buttons .btn-primary,
.booking-buttons .btn-secondary {
    margin: 0;
}

.booking-skip {
    margin-top: 20px !important;
    font-size: 14px;
    color: #777 !important;
}

.booking-summary {
    text-align: left;
    background: #111;
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
}

.booking-summary h3 {
    color: #d4af37;
    margin-bottom: 10px;
}

.booking-summary p {
    color: #bbb;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    color: #eee;
    font-size: 15px;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #3a3a3a;
    background: #111;
    color: #fff;
    outline: none;
    font-size: 15px;
}

.form-group input:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, .08);
}

.footer {
    background: #080808;
    border-top: 1px solid rgba(212, 175, 55, .15);
    padding: 70px 8% 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #999;
    line-height: 1.7;
    margin-bottom: 10px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h3 {
    color: #d4af37;
    font-size: 18px;
    margin-bottom: 12px;
}

.footer-column a {
    color: #aaa;
    text-decoration: none;
    transition: .3s;
}

.footer-column a:hover {
    color: #d4af37;
}

.footer-column p {
    color: #aaa;
}

.footer-highlight {
    display: block;
    color: #d4af37 !important;
    margin-top: 10px;
    text-decoration: none;
}

.footer-highlight:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1400px;
    margin: 60px auto 0;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    color: #666;
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    border: 1px solid #d4af37;
    border-radius: 10px;
    text-decoration: none;
    font-size: 21px;
    transition: .3s;
}

.footer-social a:hover {
    background: #d4af37;
    transform: translateY(-3px);
}

.theme-toggle,
.auth-theme-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.theme-icon {
    font-size: 20px;
    line-height: 1;
}

.sun {
    color: #d4af37;
}

.moon {
    color: #777;
}

.toggle-button {
    position: relative;
    width: 48px;
    height: 24px;
    border: none;
    border-radius: 30px;
    background: #d4af37;
    cursor: pointer;
    padding: 0;
    transition: .3s;
}

.toggle-ball {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: .3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
}

.auth-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    background: #0d0d0d;
    border-bottom: 1px solid #1f1f1f;
    z-index: 1000;
}

.auth-header .logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.auth-theme-toggle .theme-icon {
    font-size: 17px;
}

.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 130px 20px 60px;
    background: #111;
}

.login-card {
    width: 100%;
    max-width: 430px;
    padding: 45px 40px;
    background: #1a1a1a;
    border: 1px solid rgba(212, 175, 55, .25);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.cadastro-card {
    max-width: 460px;
}

.login-tag {
    display: block;
    text-align: center;
    color: #d4af37;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.login-card h1 {
    text-align: center;
    color: #fff;
    font-size: 36px;
    margin-bottom: 12px;
}

.login-subtitle {
    text-align: center;
    color: #aaa;
    margin-bottom: 35px;
    font-size: 15px;
    line-height: 1.5;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-button {
    width: 100%;
    padding: 15px;
    margin-top: 5px;
    border: none;
    border-radius: 10px;
    background: #d4af37;
    color: #111;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: .2s;
}

.login-button:hover {
    transform: translateY(-2px);
    background: #e2bd42;
}

.login-forgot {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 14px;
}

.login-forgot a {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
}

.login-forgot a:hover {
    text-decoration: underline;
}

.login-footer {
    margin-top: 28px;
    text-align: center;
}

.login-footer p {
    color: #aaa;
    margin-bottom: 8px;
    font-size: 14px;
}

.login-footer a {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
}

.login-footer a:hover {
    text-decoration: underline;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 100%;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color, #222);
}

.form-group input {
    width: 100%;
    box-sizing: border-box;
    padding: 13px 14px;
    border: 1px solid #d6d6d6;
    border-radius: 8px;
    background: #fff;
    color: #222;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus {
    border-color: #d9ad25;
    box-shadow: 0 0 0 3px rgba(217, 173, 37, 0.12);
}

.form-group input::placeholder {
    color: #999;
}

.dark-mode .form-group label {
    color: #eee;
}

.dark-mode .form-group input {
    background: #252525;
    color: #eee;
    border-color: #444;
}

.dark-mode .form-group input::placeholder {
    color: #888;
}

.dark-mode .form-group input:focus {
    border-color: #d9ad25;
}

.success-message {
    margin-top: 18px;
    text-align: center;
    color: #4caf50;
    font-size: 14px;
}

.error-message {
    margin-top: 18px;
    text-align: center;
    color: #e57373;
    font-size: 14px;
}

.dashboard-page {
    width: 100%;
    min-height: 100vh;
    background: #f5f5f5;
}

.dashboard-content {
    width: min(100% - 40px, 1100px);
    margin: 0 auto;
    padding: 40px 0 80px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    margin-bottom: 30px;
}

.dashboard-card,
.dashboard-section,
.profile-card {
    width: 100%;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
}

.dashboard-card h3 {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.dashboard-card strong {
    display: block;
    color: #111;
    font-size: 32px;
    margin-bottom: 10px;
}

.dashboard-card p {
    color: #888;
    font-size: 14px;
    line-height: 22px;
}

.dashboard-section {
    margin-top: 30px;
}

.payment-note {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed rgba(212, 175, 55, .25);
    font-size: 14px;
}

.charts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 15px;
}

.chart-card {
    background: rgba(212, 175, 55, .04);
    border: 1px solid rgba(212, 175, 55, .15);
    border-radius: 14px;
    padding: 25px;
}

.chart-card h3 {
    color: #d4af37;
    font-size: 16px;
    margin-bottom: 20px;
}

.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bar-row {
    display: grid;
    grid-template-columns: 90px 1fr 100px;
    align-items: center;
    gap: 12px;
}

.bar-track {
    height: 16px;
    background: rgba(255, 255, 255, .06);
    border-radius: 8px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 8px;
    transition: width .4s ease;
}

.bar-value {
    text-align: right;
    font-size: 14px;
    white-space: nowrap;
}

.pie-chart-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.pie-chart circle {
    transition: stroke-dasharray .4s ease;
}

.pie-legend {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
}

.legend-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 8px;
}

.dashboard-section h2 {
    color: #111;
    margin-bottom: 15px;
}

.dashboard-section p {
    color: #666;
    line-height: 26px;
}

.dashboard-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.profile-card {
    margin-bottom: 25px;
}

.profile-card h2 {
    color: #111;
    margin-bottom: 25px;
}

.profile-card p {
    color: #555;
    margin-bottom: 12px;
}

.profile-plan {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 25px;
}

.profile-plan h3 {
    color: #111;
    margin-bottom: 10px;
}

.profile-plan p {
    margin-bottom: 20px;
}

body:not(.dark-mode) {
    background: #f5f5f5;
    color: #111;
}

body:not(.dark-mode) header {
    background: rgba(255, 255, 255, .88);
    border-bottom: 1px solid #e5e5e5;
}

body:not(.dark-mode) nav a {
    color: #222;
}

body:not(.dark-mode) nav a:hover {
    color: #b89520;
}

body:not(.dark-mode) .hero {
    background-image:
        linear-gradient(rgba(255, 255, 255, .72), rgba(255, 255, 255, .72));
}

body:not(.dark-mode) .hero h1 {
    color: #111;
}

body:not(.dark-mode) .hero p {
    color: #444;
}

body:not(.dark-mode) .hero-card {
    background: rgba(255, 255, 255, .88);
    border-color: rgba(180, 145, 30, .3);
}

body:not(.dark-mode) .hero-card li {
    color: #444;
    border-bottom-color: rgba(0, 0, 0, .08);
}

body:not(.dark-mode) .rating p,
body:not(.dark-mode) .section-title p,
body:not(.dark-mode) .service-info p {
    color: #666;
}

body:not(.dark-mode) .services {
    background: #f5f5f5;
}

body:not(.dark-mode) .service-card {
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

body:not(.dark-mode) .plans {
    background: #eee;
}

body:not(.dark-mode) .plans-page,
body:not(.dark-mode) .team-page,
body:not(.dark-mode) .gallery-page,
body:not(.dark-mode) .contact-page {
    background: #fff;
}

body:not(.dark-mode) .plan-card {
    background: #fff;
    border-color: rgba(180, 145, 30, .25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
}

body:not(.dark-mode) .plan-card li {
    color: #555;
}

body:not(.dark-mode) .page-hero {
    background: #f1f1f1;
}

body:not(.dark-mode) .page-hero h1 {
    color: #111;
}

body:not(.dark-mode) .page-hero p {
    color: #666;
}

body:not(.dark-mode) .btn-secondary {
    color: #111;
}

body:not(.dark-mode) .destaque {
    border-color: #111;
}

body:not(.dark-mode) .contact-item p {
    color: #666;
}

body:not(.dark-mode) .contact-card {
    background: #f5f5f5;
    border-color: #ddd;
}

body:not(.dark-mode) .footer-social a {
    background: #fff;
    color: #d4af37;
}

body:not(.dark-mode) .booking-page {
    background: #f5f5f5;
}

body:not(.dark-mode) .booking-card {
    background: #fff;
    border-color: rgba(180, 145, 30, .25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

body:not(.dark-mode) .booking-form-step > p,
body:not(.dark-mode) .service-option p,
body:not(.dark-mode) .product-option p,
body:not(.dark-mode) .employee-option p {
    color: #666;
}

body:not(.dark-mode) .service-option,
body:not(.dark-mode) .product-option,
body:not(.dark-mode) .employee-option,
body:not(.dark-mode) .booking-summary {
    background: #f8f8f8;
    border-color: #ddd;
}

body:not(.dark-mode) .booking-total {
    border-top-color: rgba(0, 0, 0, .08);
}

body:not(.dark-mode) .booking-summary {
    color: #111;
}

body:not(.dark-mode) .booking-summary p {
    color: #555;
}

body:not(.dark-mode) .form-group label {
    color: #222;
}

body:not(.dark-mode) .form-group input {
    background: #fff;
    color: #222;
    border-color: #ccc;
}

body:not(.dark-mode) .auth-header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

body:not(.dark-mode) .auth-theme-toggle .sun {
    color: #d4af37;
}

body:not(.dark-mode) .auth-theme-toggle .moon {
    color: #777;
}

body:not(.dark-mode) .login-page {
    background: #f5f5f5;
}

body:not(.dark-mode) .login-card {
    background: #fff;
    border-color: rgba(180, 145, 30, .3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

body:not(.dark-mode) .login-card h1 {
    color: #222;
}

body:not(.dark-mode) .login-subtitle {
    color: #666;
}

body:not(.dark-mode) .form-group input::placeholder {
    color: #999;
}

body:not(.dark-mode) .login-footer p {
    color: #666;
}

body.dark-mode {
    background: #111;
    color: #fff;
}

body.dark-mode .toggle-button {
    background: #333;
}

body.dark-mode .toggle-ball {
    left: 27px;
}

body.dark-mode .sun {
    color: #777;
}

body.dark-mode .moon {
    color: #d4af37;
}

body.dark-mode .plans-page,
body.dark-mode .team-page,
body.dark-mode .gallery-page,
body.dark-mode .contact-page {
    background: #0d0d0d;
}

body.dark-mode .plan-card,
body.dark-mode .team-card,
body.dark-mode .contact-card {
    background: #1a1a1a;
    border-color: rgba(212, 175, 55, .15);
}

body.dark-mode .plan-card h4,
body.dark-mode .team-info h3,
body.dark-mode .contact-info h2,
body.dark-mode .contact-item h3,
body.dark-mode .contact-card h2 {
    color: #fff;
}

body.dark-mode .plan-card li {
    color: #d8d8d8;
}

body.dark-mode .plan-card h4 span {
    color: #bdbdbd;
}

body.dark-mode .destaque {
    border-color: #d4af37;
}

body.dark-mode .team-info p,
body.dark-mode .contact-info > p,
body.dark-mode .contact-item p,
body.dark-mode .contact-card p {
    color: #bbb;
}

body.dark-mode .gallery-item {
    background: #1a1a1a;
}

body.dark-mode .booking-page {
    background: #111;
}

body.dark-mode .booking-card {
    background: #1a1a1a;
    border-color: rgba(212, 175, 55, .15);
}

body.dark-mode .booking-form-step > p,
body.dark-mode .service-option p,
body.dark-mode .product-option p,
body.dark-mode .employee-option p {
    color: #aaa;
}

body.dark-mode .service-option,
body.dark-mode .product-option,
body.dark-mode .employee-option,
body.dark-mode .booking-summary {
    background: #111;
    border-color: rgba(255, 255, 255, .1);
}

body.dark-mode .booking-total {
    border-top-color: rgba(255, 255, 255, .08);
}

body.dark-mode .booking-summary p {
    color: #bbb;
}

body.dark-mode .page-hero {
    background: #111;
    color: #fff;
}

body.dark-mode .page-hero h1 {
    color: #fff;
}

body.dark-mode .page-hero p {
    color: #bbb;
}

body.dark-mode .login-page {
    background: #111;
}

body.dark-mode .login-card {
    background: #1a1a1a;
}

body.dark-mode .auth-header {
    background: #0d0d0d;
    border-bottom-color: #1f1f1f;
}

body.dark-mode .form-group label {
    color: #eee;
}

body.dark-mode .form-group input {
    background: #111;
    color: #fff;
    border-color: #3a3a3a;
}

body.dark-mode .form-group input::placeholder {
    color: #777;
}

body.dark-mode .login-footer p {
    color: #aaa;
}

body.dark-mode .dashboard-page {
    background: #111;
}

body.dark-mode .dashboard-card,
body.dark-mode .dashboard-section,
body.dark-mode .profile-card {
    background: #1a1a1a;
    border-color: rgba(212, 175, 55, .15);
}

body.dark-mode .dashboard-card h3 {
    color: #aaa;
}

body.dark-mode .dashboard-card strong,
body.dark-mode .dashboard-section h2,
body.dark-mode .profile-card h2,
body.dark-mode .profile-plan h3 {
    color: #fff;
}

body.dark-mode .dashboard-card p,
body.dark-mode .dashboard-section p,
body.dark-mode .profile-card p {
    color: #bbb;
}

body.dark-mode .profile-plan {
    background: #111;
}

.hamburger-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.hamburger-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}

body:not(.dark-mode) .hamburger-toggle span {
    background: #111;
}

.hamburger-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-toggle.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
    header {
        padding: 16px 3%;
    }

    .hamburger-toggle {
        display: flex;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-height: 80vh;
        overflow-y: auto;
        background: #0d0d0d;
        border-top: 1px solid rgba(212, 175, 55, .15);
        padding: 10px 8% 20px;
        z-index: 999;
        box-shadow: 0 15px 25px rgba(0, 0, 0, .3);
    }

    body:not(.dark-mode) nav {
        background: #fff;
    }

    nav.nav-open {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav ul li {
        border-bottom: 1px solid rgba(212, 175, 55, .12);
    }

    nav ul li a {
        display: block;
        padding: 16px 0;
        font-size: 16px;
    }

    .nav-auth-item {
        border-bottom: none !important;
        padding-top: 10px;
    }

    .nav-auth-item a {
        display: inline-block !important;
        padding: 10px 18px !important;
        background: #d4af37;
        color: #111 !important;
        border-radius: 10px;
        font-weight: 600;
    }

    .charts-grid {
        grid-template-columns: 1fr;
    }

    .bar-row {
        grid-template-columns: 80px 1fr 90px;
    }

    .header-actions {
        gap: 12px;
    }

    .header-button .btn-primary {
        padding: 14px 22px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid,
    .team-grid,
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .services-grid,
    .plans-grid,
    .team-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        flex-direction: column;
        justify-content: center;
        gap: 40px;
        padding-top: 170px;
        padding-bottom: 60px;
    }

    .hero-content {
        margin-left: 0;
        width: 100%;
    }

    .hero h1 {
        font-size: 52px;
        line-height: 58px;
    }

    .hero-card {
        width: 100%;
        max-width: 360px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .header-actions {
        gap: 6px;
    }

    .auth-header .header-actions {
        gap: 8px;
    }

    .auth-header .logo-img {
        width: 36px;
        height: 36px;
    }

    .auth-theme-toggle {
        gap: 4px;
    }

    .auth-header .header-actions .btn-secondary,
    .auth-header .header-actions .btn-primary {
        padding: 8px 12px;
        font-size: 13px;
    }

    .page-hero h1 {
        font-size: 38px;
    }

    .booking-card {
        padding: 25px;
    }

    .service-options,
    .product-options,
    .employee-options {
        grid-template-columns: 1fr;
    }

    .booking-buttons {
        flex-direction: column;
    }

    .booking-buttons .btn-primary,
    .booking-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .login-card {
        padding: 35px 25px;
    }

    .login-card h1 {
        font-size: 30px;
    }

    .auth-header {
        padding: 0 5%;
    }

    .login-page {
        padding: 120px 15px 40px;
    }

    .dashboard-content {
        width: min(100% - 30px, 1100px);
        padding: 40px 0;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-section,
    .profile-card {
        padding: 25px;
    }

    .dashboard-actions {
        flex-direction: column;
    }

    .dashboard-actions a {
        text-align: center;
    }
}

.login-form .form-group {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 7px !important;
    width: 100% !important;
}

.login-form .form-group label {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
}

.login-form .form-group input {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

.login-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
}

.login-form label {
    display: block;
    width: 100%;
    margin: 0 0 7px;
    color: #eee;
    font-size: 15px;
    font-weight: 600;
}

.login-form input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    margin: 0 0 8px;
    border-radius: 10px;
    border: 1px solid #3a3a3a;
    background: #111;
    color: #fff;
    outline: none;
    font-size: 15px;
    font-family: inherit;
}

.login-form input:focus {
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, .08);
}

.login-form input::placeholder {
    color: #777;
}

.login-form .login-button {
    width: 100%;
    margin-top: 5px;
}

.employee-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    margin: 25px 0;
}

.employee-option {
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 15px;
    cursor: pointer;
    text-align: center;
    transition: 0.2s ease;
}

.employee-option:hover {
    transform: translateY(-3px);
}

.employee-option.selected {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
    transform: translateY(-3px);
}

.employee-option.selected::after {
    content: "✓";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-color);
    color: #111;
    font-weight: 700;
    font-size: 16px;
}

.employee-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
}

.employee-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.employee-info h3 {
    margin: 0 0 6px;
}

.employee-info p {
    margin: 0;
    font-size: 14px;
}

@media (max-width: 768px) {

    .employee-options {
        grid-template-columns: 1fr;
    }

    .employee-image {
        height: 260px;
    }

}

.admin-actions{
    display:flex;
    gap:12px;
    margin-top:20px;
    flex-wrap:wrap;
}

.btn-success{
    background:#1b8f47;
    color:white;
    border:none;
    padding:12px 20px;
    border-radius:12px;
    cursor:pointer;
    font-weight:600;
}

.btn-danger{
    background:#c62828;
    color:white;
    border:none;
    padding:12px 20px;
    border-radius:12px;
    cursor:pointer;
    font-weight:600;
}

.btn-success:hover{
    background:#15763a;
}

.btn-danger:hover{
    background:#a31d1d;
}

.appointment-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.appointment-actions .btn-primary,
.appointment-actions .btn-success,
.appointment-actions .btn-danger {
    min-width: 115px;
    height: 44px;
    padding: 0 20px;
    border-radius: 8px;
    border: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-sizing: border-box;
}

.appointment-actions .btn-primary {
    background-color: #d9ad2b;
    color: #000;
}

.appointment-actions .btn-success {
    background-color: #198754;
    color: #fff;
}

.appointment-actions .btn-danger {
    background-color: #dc2626;
    color: #fff;
}

.appointment-actions .btn-primary:hover,
.appointment-actions .btn-success:hover,
.appointment-actions .btn-danger:hover {
    opacity: 0.9;
}

.appointment-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.appointment-actions form {
    margin: 0;
}

.appointment-actions button {
    min-width: 115px;
    height: 44px;
    padding: 0 20px;
    border: none;
    border-radius: 8px;

    font-family: inherit;
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    box-sizing: border-box;

    transition: opacity 0.2s ease,
                transform 0.2s ease;
}

.appointment-actions button:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.appointment-actions .btn-primary {
    background-color: #d9ad2b;
    color: #000;
}

.appointment-actions .btn-success {
    background-color: #198754;
    color: #fff;
}

.appointment-actions .btn-danger {
    background-color: #dc2626;
    color: #fff;
}