@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #1a0000;
  min-height: 100vh;
}

.landing-container {
  background-image: url('./assets/img/bg.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

/* Hero con logo */
.hero-content {
  text-align: center;
  padding-top: 40px;
  max-width: 1200px;
  width: 100%;
}

.logo-principal {
  max-width: 100%;
  width: 1000px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Seccion CTA */
.cta-section {
  text-align: center;
  margin: 30px 0;
}

.cta-image {
  max-width: 100%;
  width: 500px;
  height: auto;
}

/* Main y contenedor de formulario */
main {
  width: 100%;
  max-width: 600px;
}

.content {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding-bottom: 60px;
}

/* Contenedor del formulario TrustArc */
#form-container {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(30, 0, 0, 0.9) 100%) !important;
  border: 3px solid #E31C23 !important;
  color: #FFF !important;
  font-size: 18px !important;
  margin: 20px auto !important;
  border-radius: 20px !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  box-shadow: 0 20px 40px rgba(227, 28, 35, 0.3) !important;
  min-height: 400px !important;
  padding: 30px 20px !important;
}

/* Estilos para TrustArc form */
#trusarchform {
  width: 100% !important;
  max-width: 800px !important;
}

/* Ocultar elementos innecesarios */
.ta-upm-modal-header {
  display: none !important;
}

.ta-form-logo {
  display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
  .landing-container {
    background-attachment: scroll;
    padding: 15px;
  }

  .hero-content {
    padding-top: 20px;
  }

  .logo-principal {
    width: 90%;
    max-width: 400px;
  }

  .cta-image {
    width: 85%;
    max-width: 350px;
  }

  #form-container {
    width: 100%;
    padding: 20px 15px !important;
    border-radius: 15px !important;
  }

  .content {
    padding-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .logo-principal {
    width: 95%;
  }

  .cta-image {
    width: 90%;
  }

  #form-container {
    margin: 10px auto !important;
  }
}
