* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
  font-family: 'Georgia', serif;
  background-color: #f8f6f3;
  color: #333;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.header {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px;
  background: linear-gradient(135deg, #8B7355 0%, #A0956B 100%);
  color: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 400;
  letter-spacing: 1px;
}

.header p {
  font-size: 1.1rem;
  opacity: 0.9;
  font-style: italic;
}

.section {
  margin-bottom: 40px;
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-left: 5px solid #8B7355;
}

.section-title {
  font-size: 1.8rem;
  color: #8B7355;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
  font-weight: 500;
}

.service {
  margin-bottom: 25px;
  padding: 20px;
  border-radius: 8px;
  background: #fafafa;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.service:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 10px;
}

.service-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c5530;
  flex: 1;
  min-width: 200px;
}

.service-duration {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 5px;
  font-style: italic;
  white-space: pre-line;
  line-height: 1.3;
}

.service-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #8B7355;
  white-space: nowrap;
}

.service-description {
  color: #555;
  line-height: 1.5;
  margin-top: 8px;
}

.package-section {
  background: linear-gradient(135deg, #f0ede8 0%, #e8e2d8 100%);
  border-left: 5px solid #c9a96e;
}

.package-item {
  background: white;
  padding: 20px;
  border-radius: 8px;
  margin: 15px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.whatsapp-contact {
  text-align: center;
  margin: 40px 0;
}

.whatsapp-btn {
  display: inline-block;
  background: linear-gradient(135deg, #A0956B 0%, #8B7355 100%);
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 115, 85, 0.4);
  background: linear-gradient(135deg, #8B7355 0%, #A0956B 100%);
}

.multiple-sessions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.session-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

@media (max-width: 768px) {
  .container {
    padding: 20px 15px;
  }
  
  .header h1 {
    font-size: 2rem;
  }
  
  .service-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .service-name {
    min-width: auto;
    margin-bottom: 5px;
  }
  
  .whatsapp-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media print {
  body {
    background: white;
  }
  
  .container {
    max-width: none;
    padding: 20px;
  }
  
  .whatsapp-contact {
    display: none;
  }
  
  .service:hover {
    transform: none;
    box-shadow: none;
  }
} 