* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f4f4;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
}
header {
  text-align: center;
  margin-top: 40px;
  z-index: 9;
}

.cookie-consent-banner{
    display: flex;
    background: #000000c7;
    width: 100%;
    position: fixed;
    color: aliceblue;
    padding: 1em;
    align-items: center;
    bottom: 0px;
    z-index: 9999;
}

.cookie-consent-banner p, h1, h2, h3, h4, h5, h6{
    
    color: #fff;
    
}


.btn-consent{
  width: 40%;
  margin: 1em;
    background-color: var(--prodi-orange);
    color: var(--prodi-white);
    padding: 10px 23px;
    border-radius: var(--border-radius-btn);
    font-weight: 700;
    text-transform: uppercase;
    background-color: #ff5e37;

}

.logo {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}
.brand-prodi {
  color: #333;
  font-weight: 600;
  font-size: 24px;
}
.sidebar-nav ul {
  list-style: none;      /* Quita los círculos */
  padding-left: 0;       /* Elimina sangría por defecto */
  margin: 0;
}

.sidebar-nav li {
  margin-bottom: 10px;   /* Espaciado entre enlaces */
}

.sidebar-nav a {
  text-decoration: none;
  color: #000;           /* Cambia según tu diseño */
  font-weight: 500;
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
}

.sidebar-nav a:hover {
  background-color: #f25e18;  /* Color al pasar el mouse */
  color: white;
}

.message-error {
  color: #a10000;
  background-color: #ffe3e3;
  border: 1px solid #f25e18;
  padding: 12px 20px;
  margin: 20px auto;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
  max-width: 90%;
}

#background-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  object-fit: cover;
  background-size: cover;
}


.message-success {
  color: #155724;
  background-color: #d4edda;
  border: 1px solid #28a745;
  padding: 12px 20px;
  margin: 20px auto;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
  max-width: 90%;
}

.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}
.modal-content {
  background: #fff;
  color: #333;
  border-radius: 10px;
  padding: 20px;
  width: 95%;
  max-width: 600px;
  animation: fadeIn 0.3s ease;
}
.close-button {
  float: right;
  font-size: 22px;
  cursor: pointer;
}
.profile-pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}
.modal-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.bio {
  font-size: 14px;
  margin-bottom: 15px;
}
.skill-badges span {
  display: inline-block;
  background: #f25e18;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  margin: 2px;
  font-size: 12px;
}
.gallery img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  margin: 5px;
  border-radius: 6px;
}
.contact-buttons .contact-button {
  display: inline-block;
  background: #f25e18;
  color: white;
  padding: 10px 14px;
  margin: 5px;
  text-decoration: none;
  border-radius: 8px;
}
.review-list {
  max-height: 200px;
  overflow-y: auto;
}
.share-button {
  padding: 10px 20px;
  background: #333;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.brand-tm {
  color: #ff5e38;
  font-weight: 700;
  font-size: 12px;
}
.brand-app {
  color: #ff5e38;
  font-weight: 700;
  font-size: 24px;
}
.register-container {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 40px;
  max-width: 400px;
  width: 90%;
  margin-top: 20px;
  animation: fadeIn 0.5s ease-in-out;
}
.register-container h2 {
  color: #ff5e37;
  margin-bottom: 20px;
  text-align: center;
}
input[type="text"], input[type="email"], input[type="password"], input[type="tel"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}
button {
  width: 100%;
  padding: 12px;
  background-color: #ff5e37;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
button:hover {
  background-color: #d94e0f;
}
.message {
  margin-top: 10px;
  text-align: center;
  color: red;
}
.password-wrapper {
  position: relative;
}
.password-wrapper input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}
.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 16px;
  color: #666;
  user-select: none;
}



.button-style {
  background-color: #ff5e38;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 16px;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 94, 56, 0.3);
}
.button-style:hover {
  background-color: #d94e0f;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 94, 56, 0.4);
}

footer {
  margin-top: auto;
  padding: 20px;
  font-size: 12px;
  color: #666;
  text-align: center;
  width: 100%;
}
.disclaimer {
  font-size: 11px;
  color: #888;
  text-align: center;
  margin-top: 45px;
  max-width: 80%;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media screen and (max-width: 480px) {
  .register-container {
    padding: 25px;
  }
  .button-style {
    padding: 12px 20px;
    font-size: 15px;
  }
}