html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
} 
.dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.dashboard-header h1 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
}

.dashboard-header p {
    margin-top: 8px;
    color: #666;
}

.btn-primary {
    display: inline-block;
    background: #111827;
    color: white !important;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.btn-primary:hover {
    background: #374151;
    transform: translateY(-1px);
}

.empty-state {
    border: 1px dashed #d1d5db;
    border-radius: 16px;
    padding: 80px 20px;
    text-align: center;
    background: #fafafa;
}

.empty-icon {
    font-size: 55px;
    margin-bottom: 20px;
}

.empty-state h2 {
    margin-bottom: 10px;
}

.empty-state p {
    color: #6b7280;
    margin-bottom: 25px;
} 
/* ==============================
   SITEBUILDER - TEMPLATES
   ============================== */

.templates-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.templates-header {
    text-align: center;
    margin-bottom: 40px;
}

.templates-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.templates-header p {
    color: #6b7280;
    font-size: 16px;
}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.template-card {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    overflow: hidden;
    background: white;
    transition: 0.2s;
}

.template-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.template-preview {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.business-preview {
    background: linear-gradient(135deg, #111827, #374151);
    color: white;
}

.barber-preview {
    background: linear-gradient(135deg, #171717, #525252);
    color: white;
}

.store-preview {
    background: linear-gradient(135deg, #f3f4f6, #d1d5db);
    color: #111827;
}

.preview-content {
    text-align: center;
}

.preview-content small {
    font-weight: bold;
    letter-spacing: 2px;
}

.preview-content h2 {
    font-size: 25px;
    margin: 15px 0;
}

.preview-content button {
    border: none;
    padding: 9px 15px;
    border-radius: 6px;
    background: white;
    color: #111827;
    font-weight: 600;
}

.template-info {
    padding: 22px;
}

.template-info h3 {
    margin-top: 0;
    font-size: 22px;
}

.template-info p {
    color: #6b7280;
    min-height: 48px;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    background: #111827;
    color: white !important;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.btn-primary:hover {
    background: #374151;
    transform: translateY(-1px);
}

/* ==============================
   RESPONSIVO
   ============================== */

@media (max-width: 900px) {

    .templates-grid {
        grid-template-columns: 1fr;
    }

}