/* Importação de fontes */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* Variáveis CSS */
:root {
  --gold: #D4AF37;
  --gold-light: #F4E4A6;
  --gold-dark: #B8860B;
  --black: #0b0b0b;
  --dark: #1a1a1a;
  --charcoal: #2c2c2c;
  --white: #ffffff;
  --silver: #c0c0c0;
  --gray-light: #f5f5f5;
  --gray: #9ca3af;
  --gray-dark: #4b5563;
  --success: #10b981;
  --error: #ef4444;
}

/* Reset e configurações base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Utilitários */
.gold-gradient {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Botões - Tamanhos corrigidos */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  border: none;
  border-radius: 0.5rem;
  padding: 12px 24px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  font-size: 1rem;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 0.5rem;
  padding: 12px 24px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  font-size: 1rem;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

.full-width {
  width: 100%;
}

.card {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 1.5rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 1rem 0;
  background: rgba(11, 11, 11, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-weight: bold;
}

.logo-icon.large {
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  font-size: 2rem;
}

.nav {
  display: none;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

.nav-link {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-icon-container {
  position: relative;
}

.cart-toggle {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
  font-size: 1.25rem;
}

.cart-toggle:hover {
  color: var(--gold);
}

.cart-badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background: var(--error);
  color: var(--white);
  border-radius: 50%;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}

.login-btn {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.login-btn:hover {
  color: var(--gold);
}

.register-btn {
  padding: 10px 20px !important;
  min-height: 40px !important;
  font-size: 0.95rem !important;
}

/* Botões no Hero Section */
.hero-actions .btn-gold,
.hero-actions .btn-outline {
  padding: 16px 32px;
  font-size: 1.125rem;
  min-height: 56px;
}

/* Botões na página de serviços */
.page-actions .btn-gold {
  padding: 14px 28px;
  min-height: 52px;
  font-size: 1.05rem;
}

/* Botões na página de planejamento */
.plan-actions .btn-gold,
.plan-actions .btn-outline {
  padding: 12px 24px;
  min-height: 48px;
}

/* Botões premium */
.premium-card .btn-gold {
  padding: 14px 28px;
  min-height: 52px;
  font-size: 1.05rem;
}

/* Botões de login/cadastro */
.login-form .btn-gold,
.register-form .btn-gold {
  padding: 14px 28px;
  min-height: 52px;
  font-size: 1.125rem;
}

.user-type-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.user-type-selector button {
  padding: 12px 16px;
  min-height: 44px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.user-type-selector button.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* Botões no Modal */
.modal .btn-gold,
.modal .btn-outline {
  padding: 12px 20px;
  min-height: 44px;
  font-size: 1rem;
}

/* Botões no Carrinho */
.cart-actions .btn-gold,
.cart-actions .btn-outline {
  padding: 14px 20px;
  min-height: 48px;
  font-size: 1rem;
}

/* Botões de formulário */
.form-actions .btn-gold,
.form-actions .btn-outline {
  padding: 12px 20px;
  min-height: 44px;
  font-size: 1rem;
}

/* Ajustes específicos para botões com ícones */
.btn-gold i, .btn-outline i {
  font-size: 1rem;
}

/* Ajuste para botões em grid de serviços */
.service-card .btn-gold {
  padding: 10px 20px;
  min-height: 44px;
  font-size: 0.95rem;
}

/* Botões no dashboard */
.dashboard-header .btn-gold {
  padding: 12px 24px;
  min-height: 48px;
  font-size: 1rem;
}

/* Ajuste responsivo para mobile */
@media (max-width: 768px) {
  .btn-gold, .btn-outline {
    padding: 14px 20px;
    min-height: 48px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn-gold,
  .hero-actions .btn-outline {
    width: 100%;
    margin-bottom: 12px;
  }
  
  .page-actions .btn-gold {
    width: 100%;
    margin-top: 16px;
  }
  
  .plan-actions {
    flex-direction: column;
    gap: 12px;
  }
  
  .plan-actions .btn-gold,
  .plan-actions .btn-outline {
    width: 100%;
  }
  
  .user-type-selector {
    grid-template-columns: 1fr;
  }
}

/* Main Content - Correção do espaçamento */
.main-content {
  padding-top: 5rem;
  min-height: calc(100vh - 300px);
}

/* Páginas */
.page {
  display: none;
  animation: fadeIn 0.5s ease;
  min-height: calc(100vh - 300px);
  padding-bottom: 2rem;
}

.page.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--black), var(--dark));
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator i {
  color: var(--gold);
  font-size: 1.5rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Seções */
.featured-services {
  padding: 5rem 0;
  background: var(--dark);
}

.section-title {
  font-size: 2.25rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-subtitle {
  color: var(--gray);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

/* Grid de Serviços */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  transition: all 0.3s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
}

.service-image {
  height: 12rem;
  background-size: cover;
  background-position: center;
}

.service-content {
  padding: 1.5rem;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.service-name {
  font-weight: bold;
  font-size: 1.125rem;
}

.service-category {
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold);
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.service-description {
  color: var(--gray);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.service-price {
  color: var(--gold);
  font-weight: bold;
  font-size: 1.125rem;
}

.service-unit {
  font-size: 0.875rem;
  color: var(--gray);
}

.service-rating {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

.rating-stars {
  color: #fbbf24;
  margin-right: 0.25rem;
}

/* Página de Serviços */
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.page-title {
  font-size: 2.25rem;
  font-weight: bold;
}

@media (min-width: 768px) {
  .page-title {
    font-size: 2.5rem;
  }
}

.filters {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .filters {
    flex-direction: row;
  }
}

.search-input, .filter-select {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--gray-dark);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  color: var(--white);
}

.search-input:focus, .filter-select:focus {
  outline: none;
  border-color: var(--gold);
}

/* Página de Planejamento */
.plan-container {
  padding: 2rem;
}

.plan-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.plan-title {
  font-size: 1.875rem;
  font-weight: bold;
}

.plan-date {
  color: var(--gray);
}

.plan-actions {
  display: flex;
  gap: 1rem;
}

.plan-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .plan-content {
    grid-template-columns: 2fr 1fr;
  }
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.budget-summary {
  position: sticky;
  top: 6rem;
}

.budget-card {
  padding: 1.5rem;
}

.budget-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 1rem;
}

.budget-details {
  margin-bottom: 1.5rem;
}

.budget-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.budget-total {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 1.125rem;
  border-top: 1px solid var(--gray-dark);
  padding-top: 0.5rem;
}

.event-info {
  background: linear-gradient(to right, rgba(212, 175, 55, 0.1), transparent);
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 1.5rem;
}

.info-title {
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* Página Premium */
.premium-header {
  text-align: center;
  margin-bottom: 3rem;
}

.premium-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.premium-subtitle {
  font-size: 1.25rem;
  color: var(--gray);
  max-width: 32rem;
  margin: 0 auto;
}

.premium-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .premium-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.premium-card {
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.premium-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
}

.premium-card.featured {
  border: 2px solid var(--gold);
}

.feature-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--black);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--gold);
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.card-description {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.features-list {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.features-list i {
  color: var(--gold);
  margin-right: 0.75rem;
}

/* Página Sobre */
.about-content {
  max-width: 56rem;
  margin: 0 auto;
}

.about-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}

.about-card {
  padding: 2rem;
  margin-bottom: 2rem;
}

.about-subtitle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 1rem;
}

.about-text {
  color: var(--gray);
  margin-bottom: 1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-feature {
  padding: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 1rem;
}

.feature-text {
  color: var(--gray);
}

/* Páginas de Login e Cadastro */
.login-container, .register-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--black), var(--dark));
  padding: 1rem;
  margin: 0;
}

.login-card, .register-card {
  padding: 2rem;
  width: 100%;
  max-width: 24rem;
}

.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.login-title, .register-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.login-subtitle, .register-subtitle {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.login-form, .register-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 0.25rem;
}

.form-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gray-dark);
  padding: 0.5rem 0;
  color: var(--white);
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
}

.form-input.textarea {
  resize: vertical;
  min-height: 6rem;
}

.checkbox-group {
  display: flex;
  align-items: center;
}

.checkbox {
  margin-right: 0.5rem;
}

.checkbox-label {
  font-size: 0.875rem;
  color: var(--gray);
}

.login-links, .register-links {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--gray);
}

.login-link, .register-link {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.login-link:hover, .register-link:hover {
  color: var(--gold);
}

.link-separator {
  margin: 0 0.5rem;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.active {
  display: flex;
}

.modal-card {
  width: 100%;
  max-width: 64rem;
  max-height: 90vh;
  overflow-y: auto;
}

.service-modal-card {
  width: 100%;
  max-width: 24rem;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: bold;
}

.close-modal {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: var(--white);
}

.modal-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .modal-content {
    grid-template-columns: 2fr 1fr;
  }
}

.auto-plan-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.services-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .services-checkbox-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.checkbox-label-card {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid var(--gray-dark);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.checkbox-label-card:hover {
  border-color: var(--gold);
}

.checkbox-label-card input {
  margin-right: 0.5rem;
}

.form-actions {
  display: flex;
  gap: 0.75rem;
  padding-top: 1rem;
}

.form-actions button {
  flex: 1;
  padding: 12px 20px;
  min-height: 44px;
  font-size: 1rem;
}

/* Summary Section */
.summary-section {
  position: sticky;
  top: 1rem;
}

.budget-summary-card {
  padding: 1.5rem;
}

.summary-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 1rem;
}

.summary-details {
  margin-bottom: 1.5rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.summary-line.bold {
  font-weight: bold;
}

.summary-line.small {
  font-size: 0.875rem;
}

.summary-divider {
  border-top: 1px solid var(--gray-dark);
  margin: 0.75rem 0;
}

.positive {
  color: var(--success);
}

.negative {
  color: var(--error);
}

.suggested-services {
  background: linear-gradient(to right, rgba(212, 175, 55, 0.1), transparent);
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.suggested-title {
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.suggested-list {
  max-height: 10rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.suggested-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}

/* Dashboard do Prestador */
.dashboard-container {
  min-height: calc(100vh - 200px);
  background: linear-gradient(135deg, var(--black), var(--dark));
  padding: 2rem 0;
}

.dashboard-card {
  padding: 2rem;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.dashboard-title {
  font-size: 1.875rem;
  font-weight: bold;
}

.dashboard-subtitle {
  color: var(--gray);
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  padding: 1.5rem;
  text-align: center;
  border-radius: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--gray);
  font-size: 0.875rem;
}

.provider-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Footer - Correção da distância */
.footer {
  background: var(--dark);
  padding: 3rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-text {
  color: var(--gray);
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--gold);
}

.contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: var(--gray);
}

.contact-info i {
  color: var(--gold);
  margin-right: 0.5rem;
  width: 1rem;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  color: var(--gray);
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--gray-dark);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--gray);
}

/* Notificações */
.notification {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.75rem 1.25rem;
  background: var(--success);
  color: var(--white);
  border-radius: 0.375rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  opacity: 0;
  transform: translateY(-1.25rem);
  transition: all 0.3s ease;
}

.notification.show {
  opacity: 1;
  transform: translateY(0);
}

.notification.error {
  background: var(--error);
}

/* Carrinho Lateral - CORREÇÃO: Iniciar fechado */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--dark);
  border-left: 1px solid rgba(212, 175, 55, 0.2);
  z-index: 999;
  transition: right 0.3s ease;
  overflow-y: auto;
}

@media (min-width: 640px) {
  .cart-sidebar {
    width: 24rem;
    right: -24rem;
  }
}

.cart-sidebar.active {
  right: 0;
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  display: none;
}

.cart-overlay.active {
  display: block;
}

.cart-content {
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.close-cart {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-cart:hover {
  color: var(--white);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 1.5rem;
}

.empty-cart {
  text-align: center;
  padding: 2rem 0;
  color: var(--gray);
}

.empty-cart i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.cart-item {
  margin-bottom: 1rem;
  padding: 1rem;
}

.cart-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.cart-item-name {
  font-weight: 600;
  margin: 0;
}

.remove-from-cart {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  padding: 0.25rem;
}

.remove-from-cart:hover {
  color: var(--error);
}

.cart-item-provider {
  color: var(--gray);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.cart-item-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--charcoal);
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity {
  min-width: 2rem;
  text-align: center;
}

.cart-item-price {
  text-align: right;
}

.total-price {
  font-weight: 600;
  color: var(--gold);
}

.unit-price {
  font-size: 0.875rem;
  color: var(--gray);
}

.cart-summary {
  border-top: 1px solid var(--gray-dark);
  padding-top: 1rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 1.125rem;
  border-top: 1px solid var(--gray-dark);
  padding-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Impressão */
@media print {
  .no-print {
    display: none !important;
  }
  
  .print-only {
    display: block;
  }
  
  body {
    background: var(--white);
    color: var(--black);
  }
  
  .card {
    background: var(--white);
    border: 1px solid var(--gray);
    box-shadow: none;
  }
  
  .gold-gradient {
    background: none;
    -webkit-text-fill-color: var(--black);
    color: var(--black);
  }
}

.print-header {
  text-align: center;
  margin-bottom: 2rem;
}

.print-title {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.print-date {
  color: var(--gray-dark);
}

.print-section {
  border-top: 1px solid var(--gray);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}

.print-section-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 1rem;
}

.print-summary {
  max-width: 24rem;
}

.print-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.print-total {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 1.125rem;
  border-top: 1px solid var(--gray);
  padding-top: 0.5rem;
}