* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.header {
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #ffffff;
  padding: 10px 20px;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  max-height: 100px;
  margin: 0 auto;
}

.header-container {
  border: none !important;
}

.logoheader img {
  height: 120px;
  width: auto;
}

.perfilheader img {
  height: 120px;
  width: auto;
  align-items: flex-end;
}

.botones {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.botones2 {
  gap: 10px;
  flex-shrink: 0;
}

.btn {
  font-weight: bold;
  color: #ffffff;
  border-radius: 25px;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn-registro {
  display: flex; 
    align-items: center; /* Centra el contenido verticalmente */
  background-color: #C59035;
}

.btn-registro:hover {
  background-color: #C59035;
}

.btn-login {
  background-color: #333456;
}

.btn-login:hover {
  color: #C59035;
  background-color: #333456;
}
@media (max-width: 768px) {
    .header {
        padding: 0px 13px; 
    }

    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        max-height: none;
        padding: 0;
    }

    .logoheader img {
        height: 80px; 
        width: auto;
    }

    .botones {
        display: flex;
        gap: 6px;
    }

    .btn {
        padding: 6px 12px; 
        font-size: 14px;
    }
}
