/* ============================================
   CLIENTE - SOLVEX GROUP
   Estilos específicos de la página de cliente
   ============================================ */

/* ====== SECCIONES PRINCIPALES ====== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: linear-gradient(135deg, var(--bg-light) 0%, #f0f7ff 100%);
  position: relative;
}

.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 119, 182, 0.2), transparent);
}

.section-alt::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 119, 182, 0.2), transparent);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-green), var(--primary-blue));
  border-radius: 2px;
}

/* ====== TIPOGRAFÍA ====== */
p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.text {
  color: var(--text-dark);
}

.section p {
  color: var(--text-dark);
}

/* ====== HERO SECTION ====== */
.hero {
  padding: 8rem 0 6rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 50%, #f0f9ff 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: linear-gradient(45deg, rgba(0, 119, 182, 0.03) 0%, rgba(0, 200, 150, 0.05) 100%);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;         /* Posicionado en la parte inferior */
  left: 0;
  right: 0;
  height: 1px;       /* Línea fina de 1px */
  background: linear-gradient(90deg, transparent, rgba(0, 119, 182, 0.2), transparent);
  z-index: 3;        /* Para que esté por encima del contenido */
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* ====== CTA SECTION ESPECÍFICO PARA CLIENTE ====== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 50%, #001a2e 100%);
  color: var(--white);
  text-align: center;
  padding: 6rem 2rem;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section .lead {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ====== CONTACT INFO STYLES ====== */
.contact-info {
  margin-top: 2rem;
  opacity: 0.8;
}

.contact-info small {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* ====== BOTONES ====== */
.btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.btn-accent:hover::before {
  left: 100%;
}

.btn-accent:hover {
  background: linear-gradient(135deg, #00C896, #00a076);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 200, 150, 0.3);
}

/* ====== COOKIE BANNER ====== */
#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 18px;
  max-width: 360px;
  box-shadow: 0 6px 22px rgba(0,0,0,.08);
  z-index: 9999;
  border-radius: 8px;
}

.cookie-buttons {
  margin-top: 0.6rem;
}

.cookie-reject-btn {
  background: #f1f1f1;
  margin-left: 0.6rem;
}

#cookie-settings-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary-dark);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: none;
}

/* ====== ACCESSIBILITY ====== */
a:focus, .btn:focus {
  outline: 3px solid rgba(0,119,182,0.12);
  outline-offset: 3px;
}