@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;700;900&display=swap');

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Red Hat Display', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #43464F;
}
.logo-top-left {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}

.logo-top-left img {
  height: 100px;
  width: auto;
}

header.hero {
   position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

#bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
  object-fit: cover;
  pointer-events: none;
}

header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  z-index: 2;
}

header .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

header h1 {
  font-size: 2.5rem;
  color: #283198;
  margin-bottom: 1rem;
}

header h2 {
  font-size: 1.5rem;
  color: #283198;
  margin-bottom: 1rem;
}

.logos img {
  max-height: 120px;
  margin: 10px;
}


a {
  text-decoration: none;
  color: #ED696A;
}

.cta-buttons {
  margin-bottom: 20px;
}

.btn {
 display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  background-color: #ED696A;
  color: white;
  font-weight: bold;
  margin: 1.8rem 0.5rem 0.5rem;
  transition: background-color 0.3s ease;
}

.btn.secondary {
  background-color: #283198;
}

.btn.secondary:hover {
  background-color: #1e255b;
}

.btn:hover {
  background-color: #A13838;
}

section#que-es {
    padding-top: 60px;
}

section {
  padding: 27px 20px;
  max-width: 800px;
  margin: auto;
}

section h2 {
  margin-bottom: 20px;
  color: #283198;
}

ul, ol {
  margin-left: 20px;
}

form {
  display: flex;
  flex-direction: column;
  background: #F5F5F5;
  padding: 2rem;
  border-radius: 10px;
  max-width: 600px;
  margin: 2rem auto;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

form label {
  margin-top: 10px;
}

form input, form textarea {
    width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Red Hat Display', sans-serif;
}

select:not(:-internal-list-box):not([multiple]){font-family: 'Red Hat Display', sans-serif;}
select {
    padding: 10px 5px;
    font-family: 'Red Hat Display', sans-serif;
}
button {font-size: 16px;font-family: 'Red Hat Display', sans-serif;}

input[type="submit"] {
  background-color: #283198;
  color: white;
  cursor: pointer;
  border: none;
}

input[type="submit"]:hover {
  background-color: #1e255b;
}

input[type="checkbox"] {
  width: 30px;
}

form button {
  margin-top: 20px;
}

/* Footer */
footer {
  background: #f8f8f8;
  text-align: center;
  padding: 20px;
    font-size: 14px;
}

/* Logos en header/footer */
footer .logos img {
  max-height: 70px;
  margin: 10px;
}
footer a {
    text-decoration: underline;
    color:#43464F
}
footer a:hover {
    text-decoration: underline;
    color:#000000
}

/* WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.whatsapp-float img {
  width: 65px;
  height: 65px;
}


#cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #333;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  z-index: 1000;
}

#cookie-banner a {
  color: #ED696A;
  text-decoration: underline;
}

#cookie-banner button {
  margin-left: 10px;
  background: #ED696A;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 4px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  header h2 {
    font-size: 1.2rem;
  }

  .btn {
    padding: 10px 20px;
  }
}
