/* === ENCABEZADO === */
header.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 1.5rem 2rem;
}

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

.logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00b8ff;
  text-decoration: none;
}

.logo span {
  color: #333;
  font-weight: 600;
}

.page-title {
  color: #00b8ff;
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

    main {
      max-width: 900px;
      margin: 3rem auto;
      padding: 0 1.5rem;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

    section {
      margin-bottom: 2rem;
    }

    section h2 {
      color: #00b8ff;
      font-size: 1.4rem;
      margin-bottom: 0.8rem;
    }

    ul {
      margin-left: 1.2rem;
    }

    a {
      color: #00b8ff;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    .rights-block {
      background: #f1f9ff;
      padding: 1rem;
      border-left: 4px solid #00b8ff;
      border-radius: 8px;
    }

    .no-share {
      background: #f9f9f9;
      padding: 0.8rem;
      border-left: 4px solid #00b8ff;
      border-radius: 6px;
      color: #333;
    }
    
    /* LADO DERECHO - FORMULARIO */
.cotizar-formulario {
  flex: 1;
  min-width: 320px;
  background: #f8faff;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cotizar-formulario h2 {
  text-align: center;
  color: #0d2b5c;
  margin-bottom: 1.5rem;
}

.cotizar-formulario form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #0077ff;
  box-shadow: 0 0 5px rgba(0, 119, 255, 0.2);
  outline: none;
}

.cotizar-formulario button {
  background: linear-gradient(135deg, #0077ff, #0d2b5c);
  color: #fff;
  padding: 1rem;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cotizar-formulario button:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #0d2b5c, #0077ff);
}

#mensaje {
  text-align: center;
  margin-top: 1rem;
  color: #0d2b5c;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 900px) {
  .cotizar-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .cotizar-info {
    padding: 2rem;
  }

  .cotizar-formulario {
    padding: 2rem;
  }
}

/* ====== FORMULARIO ====== */
.cotizar-form {
  flex: 1;
  min-width: 320px;
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.cotizar-form h2 {
  color: #0d2b5c;
  margin-bottom: 1.5rem;
  text-align: center;
}

.cotizar-form input,
.cotizar-form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
}

.cotizar-form button {
  width: 100%;
  background: #0077ff;
  color: #fff;
  padding: 0.9rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.cotizar-form button:hover {
  background: #005fcc;
}

#mensaje {
  text-align: center;
  margin-top: 1rem;
  color: #0d2b5c;
}





    /* === FOOTER CORPORATIVO === */
    footer {
  background: #0a0a0a;
  color: #eaeaea;
  font-family: 'Poppins', sans-serif;
  padding: 3rem 1rem;
  line-height: 1.6;
}

/* Contenedor principal del footer */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  border-bottom: 1px solid #222;
  padding-bottom: 2rem;
}

/* Marca o nombre de la tienda */
.footer-brand h2 {
  color: #00b8ff;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  margin: 0.3rem 0;
}

/* Secciones de enlaces */
.footer-links h3,
.footer-social h3 {
  color: #00b8ff;
  margin-bottom: 0.8rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin: 0.4rem 0;
}

.footer-links a {
  color: #eaeaea;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #00b8ff;
}

/* Íconos sociales */
.social-icons a {
  color: #eaeaea;
  margin: 0 0.5rem;
  font-size: 1.5rem;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  color: #00b8ff;
  transform: translateY(-3px);
}

/* Parte inferior del footer */
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: #aaa;
}

/* Enlaces legales */
.footer-legal a {
  color: #00b8ff;
  text-decoration: none;
  margin: 0 0.3rem;
  font-size: 0.9rem;
}

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

/* Responsivo */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}


/* === NUEVO: Diseño responsive del encabezado === */
@media (max-width: 768px) {
  /* 🔹 Ocultar Nexora Software en pantallas pequeñas */
  .logo {
    display: none;
  }

  /* 🔹 Centrar el título de la página */
  .header-container {
    justify-content: center;
    text-align: center;
  }

  .page-title {
    font-size: 1.7rem;
  }
}