/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  color: white;
  text-align: center;
}

.logo img {
  height: 30px;
  object-fit: contain;
}

/* VIDEO DE FONDO */
.video-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}

.video-background iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%) scale(1.2); /* Zoom */
  pointer-events: none;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px; /* Grosor */
  background:rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo img {
  height: 35px; /* Diseño original */
  object-fit: contain;
}

nav a {
  margin-left: 15px;
  text-decoration: none;
  color: #474242; /* más oscuro */
  font-weight: 600;
  font-size: 1em; /* más grande */
}

.talk-button {
  background: #6b3fc6;
  color: white !important;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
}

/* MAIN */
main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 100px;
}

main h1 {
  font-size: 3.5em;
  font-weight: 600;
  margin-bottom: 10px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.search-box {
  background: white;
  padding: 20px;
  border-radius: 12px;
  width: 60%;
  margin-top: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.tabs span {
  margin: 0 15px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
}
.tabs .active {
  color: black;
  border-bottom: 2px solid black;
}

.search-input {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.search-input input {
  padding: 10px;
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  font-size: 1em;
}

.search-input button {
  padding: 10px 20px;
  background: #222;
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-weight: bold;
}

.subtext {
  margin-top: 30px;
  font-size: 1em;
  font-weight: 600;
}

/* QUITAR EL CÍRCULO DEL CHAT*/
#elevenlabs-agent {
  display: none !important;
}
