/* Estilos globales para De Torres */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background-color: #f3f4f6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header superior común */
.header {
  background-color: #5A3E36;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.back-button {
  background-color: transparent;
  color: white;
  border: 1px solid white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.back-button:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Logo container para cabeceras al estilo dashboard */
.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 40px;
  margin-right: 10px;
}

.logo-container h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 100;
  letter-spacing: 1px;
}

/* Footer común */
.footer {
  background-color: white;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
  margin-top: auto;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 150px;
  height: auto;
  margin-bottom: 1rem;
  object-fit: contain;
}

.footer-text {
  color: #374151;
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 600px;
}

.footer-text strong {
  color: #5A3E36;
}

/* Botones estilo nuevo dashboard */
.logout-button {
  background-color: #5A3E36;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.logout-button:hover {
  background-color: #A45A52;
}

/* Responsive base */
@media (max-width: 960px) {
  .header {
    padding: 1rem;
  }
}

@media (max-width: 600px) {
  .header-title {
    font-size: 1.2rem;
  }
  
  .logo {
    height: 30px;
  }
} 