/* =============================
   GENERAL STYLES
   ============================= */
body {
  font-family: 'Poppins', sans-serif;
  background: #f4f7f9;
  margin: 0;
  padding: 0;
  color: #333;
  padding-top: 60px;
}

/* =============================
   NAVBAR PREMIUM
   ============================= */
.vox-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #1a1a1a;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 9999;
  padding: 10px 20px;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-img {
  height: 40px;
}

.tagline {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 500;
}

/* =============================
   HERO SECTION
   ============================= */
.hero {
  background: linear-gradient(135deg, #0077cc 0%, #00c2cb 100%);
  color: white;
  text-align: center;
  padding: 80px 20px 60px;
}

.hero-content h1 {
  font-size: 2.5rem;
}

.hero-content p {
  font-size: 1.2rem;
}

/* =============================
   PROJECTS CONTAINER
   ============================= */
.proyectos-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .proyectos-container {
    flex-direction: row;
    justify-content: space-between;
  }

  .proyectos-container .content {
    max-width: 40%;
  }

  .proyectos-container .form-section {
    max-width: 55%;
  }
}

/* =============================
   BENEFITS LIST
   ============================= */
.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  background: #eef3f7;
  border-left: 4px solid #0077cc;
  border-radius: 8px;
  padding: 12px 18px;
  margin-bottom: 15px;
}

/* =============================
   FORMS
   ============================= */
form label {
  font-weight: 600;
}

form input,
form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-top: 5px;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  background: #fff;
  padding: 5px 10px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}



/* =============================
   BUTTONS
   ============================= */
.cta {
  background-color: #0077cc;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px 20px;
  cursor: pointer;
  font-size: 1.1rem;
}

.cta:hover {
  background-color: #005fa3;
}

/* =============================
   FAQ SECTION
   ============================= */
.faq {
  max-width: 1000px;
  margin: 60px auto;
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
}

.faq-item {
  background: #f4f7fb;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* =============================
   LEGAL PAGES
   ============================= */
.legal-container {
  max-width: 900px;
  margin: 80px auto;
  background: white;
  padding: 50px 40px;
  border-radius: 12px;
}

/* =============================
   ERROR PAGES
   ============================= */
.error-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  text-align: center;
  padding: 40px 20px;
}

.error-icon {
  font-size: 5rem;
}

/* =============================
   COOKIES MODAL
   ============================= */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.cookie-modal.show {
  display: flex;
}

.cookie-content {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
}

/* ============================= */
/* FOOTER PREMIUM */
/* ============================= */
footer {
  text-align: center;
  padding: 20px 10px;
  background: #fff;
  font-size: 0.9rem;
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
}

footer a {
  color: #0077cc;
  text-decoration: none;
  font-weight: 500;
}

footer a:hover {
  text-decoration: underline;
}

/* ============================= */
/* SINGLE CHECKBOX (para Aviso) */
/* ============================= */
.single-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
}

.single-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.single-checkbox label {
  font-weight: 500;
  color: #333;
}

.single-checkbox label a {
  color: #0077cc;
  text-decoration: underline;
}

.single-checkbox label a:hover {
  color: #005fa3;
  text-decoration: none;
}


/* =============================
   THANK YOU PAGE
   ============================= */
.thankyou-page {
  max-width: 600px;
  margin: 80px auto;
  background: white;
  padding: 40px 30px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  animation: fadeIn 0.6s ease-out;
}

.thankyou-page h1 {
  font-size: 2.2rem;
  color: #00a8cc;
  margin-bottom: 20px;
}

.thankyou-page p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 16px;
  line-height: 1.6;
}

.thankyou-page strong {
  color: #0077cc;
}

.back-button {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 24px;
  font-size: 1rem;
  background-color: #0077cc;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-weight: 500;
}

.back-button:hover {
  background-color: #005fa3;
}

/* Fade in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
