.section-contacto {
    background-color: #000;
}

.contact-wrapper {
    background: #000;
    padding: 60px 30px;
    border-radius: 8px;
}

.contact-input,
.contact-select {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 10px;
    border-radius: 6px;
}

.contact-input::placeholder {
    color: #ccc;
}

.contact-submit {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px;
    width: 100%;
    border-radius: 6px;
    transition: 0.3s;
}

.contact-submit:hover {
    background: #fff;
    color: #000;
}

.contact-icons i {
    font-size: 22px;
    color: #fff;
    margin: 0 10px;
    transition: 0.3s;
}

.contact-icons i:hover {
    opacity: 0.7;
}

.logo-mini {
    width: 45px;
}




/* VIDEO DE FONDO */
.hero-nosotros {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

/* Video ocupando el fondo completo */
.hero-nosotros .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* Capa negra semi transparente */
.hero-nosotros .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

/* Texto del hero */
.hero-nosotros h2 {
    font-size: 2.4rem;
    font-weight: bold;
    z-index: 3;
}

.hero-nosotros p {
    max-width: 600px;
    font-size: 1.1rem;
    z-index: 4;
}

/* Flecha */
.scroll-down {
    font-size: 2rem;
    margin-top: 25px;
    animation: bounce 1.5s infinite;
    cursor: pointer;
    z-index: 5;
}

/* Animación de rebote */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.container-contacto {
  padding: 0px !important;
}

.container-contacto .hero-nosotros form {
  z-index: 4;
  width: 100%;
  max-width: 1080px;
  padding: 4vh 40px;
}

.hero-nosotros h2 {
  font-size: 50px;
  font-weight: bold;
  z-index: 3;
  padding-top: 20vh;
}
.hero-nosotros p {
  max-width: 900px;
  font-size: 23px;
  z-index: 4;
}

.container-contacto .contact-icons {
  z-index: 4;
}

.contact-icons i {
  font-size: 30px;
  color: #fff;
  margin: 0 10px;
  transition: 0.3s;
}

.scroll-down.animate__animated.animate__fadeIn {
  display: none;
}






/* ================================
   RESPONSIVE: CONTACTO
   Pegar al FINAL de /assets/css/contacto.css
================================ */

.hero-nosotros{
  height: 100svh;
  min-height: 100svh;
}

/* ===== Tablet ===== */
@media (max-width: 992px){

  .hero-nosotros h2{
    font-size: 40px;
    padding-top: 10vh;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-nosotros p{
    font-size: 18px;
    max-width: 760px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .container-contacto .hero-nosotros form{
    padding: 3vh 22px;
    max-width: 980px;
  }
}

/* ===== Mobile ===== */
@media (max-width: 768px){

  /* Hero */
  .hero-nosotros h2{
    font-size: 30px;
    line-height: 1.08;
    padding-top: 12vh; /* menos empuje */
  }

  .hero-nosotros p{
    font-size: 16px;
    max-width: 92%;
  }

  /* Flecha: premium en móvil */
  .scroll-down{
    font-size: 28px;
    margin-top: 16px;
    animation: none;
  }

  /* Form: padding lateral real (móvil) */
  .container-contacto .hero-nosotros form{
    padding: 18px 14px;
  }

  /* Inputs más cómodos */
  .contact-input,
  .contact-select{
    padding: 12px;
    font-size: 14px;
  }

  textarea.contact-input{
    min-height: 120px;
  }

  .contact-submit{
    padding: 12px;
    font-size: 14px;
  }

  /* Iconos */
  .contact-icons i{
    font-size: 26px;
  }
}

/* ===== Mobile pequeño ===== */
@media (max-width: 576px){

  .hero-nosotros h2{
    font-size: 26px;
  }

  .hero-nosotros p{
    font-size: 15px;
  }

  .container-contacto .hero-nosotros form{
    padding: 16px 12px;
  }
}
