/**
 * PURE.equipment - Sistema Anti-Fraude
 * Estilos CSS optimizados para móviles (Mobile-First)
 * Version: 1.0
 */

/* Reset y Base Styles - Mobile First */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 0;
  line-height: 1.6;
  font-size: 16px;
}

/* Navegación - Optimizada para móvil */
.navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.navbar-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 20px;
  gap: 15px;
}

.navbar-brand {
  font-size: 20px;
  font-weight: 700;
  color: #667eea;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.navbar-brand:hover {
  color: #764ba2;
}

.navbar-brand img {
  height: 35px;
  width: auto;
}

.navbar-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  list-style: none;
  width: 100%;
}

.navbar-item {
  margin: 0;
  width: 100%;
  text-align: center;
}

.navbar-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 10px 16px;
  border-radius: 5px;
  display: block;
  font-size: 14px;
}

.navbar-link:hover {
  color: #667eea;
  background: rgba(102, 126, 234, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white !important;
  padding: 12px 25px !important;
  border-radius: 25px;
  font-weight: 600;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  border: 2px solid #667eea;
  color: #667eea !important;
  padding: 10px 20px !important;
  border-radius: 25px;
}

.btn-secondary:hover {
  background: #667eea;
  color: white !important;
}

/* Contenedor Principal - Mobile First */
.content-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 15px;
}

.main-container {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  width: 100%;
  overflow: hidden;
}

/* Header Section - Optimizada para móvil */
.header-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 40px 20px 30px;
  text-align: center;
}

.header-section h1 {
  font-size: 1.8em;
  margin-bottom: 12px;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
}

/* Poner el primer carácter en resalyado */
.first-letter {
  font-size: 1.4em;
  color: #dbc230; /* Azul del gradiente */
  font-weight: 800;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.subtitle {
  font-size: 1em;
  opacity: 0.95;
  margin-bottom: 8px;
  font-weight: 300;
}

.tagline {
  font-size: 0.95em;
  opacity: 0.9;
  font-weight: 400;
}

/* Content Section - Mobile First */
.content-section {
  padding: 30px 20px;
}

.welcome-text {
  text-align: center;
  margin-bottom: 35px;
}

.welcome-text h2 {
  color: #333;
  font-size: 1.6em;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.welcome-text p {
  color: #666;
  font-size: 1em;
  line-height: 1.7;
  max-width: 100%;
  margin: 0 auto;
}

/* Sección PQR - Mobile Optimized */
.pqr-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 40px 20px;
  margin: 30px 0;
  border-radius: 12px;
}

.pqr-section h2 {
  color: #333;
  font-size: 1.8em;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
  line-height: 1.3;
}

.pqr-intro {
  text-align: center;
  font-size: 1em;
  color: #555;
  max-width: 100%;
  margin: 0 auto 30px;
  line-height: 1.7;
}

.pqr-components {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.pqr-component {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pqr-component h3 {
  color: #667eea;
  font-size: 1.4em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pqr-component p {
  color: #666;
  font-size: 1em;
  line-height: 1.6;
}

.pqr-icon {
  font-size: 1.8em;
}

/* Process Steps - Mobile Grid */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 30px;
}

.process-step {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.process-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3em;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.process-step h4 {
  color: #333;
  font-size: 1.2em;
  margin: 20px 0 12px;
  font-weight: 600;
  line-height: 1.3;
}

.process-step p {
  color: #666;
  font-size: 0.95em;
  line-height: 1.6;
}

/* Estadísticas - Mobile Stack */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 35px 0;
}

.stat-item {
  text-align: center;
  padding: 25px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-3px);
}

.stat-number {
  font-size: 2.5em;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1em;
  color: #666;
  font-weight: 600;
}

/* Action Buttons - Mobile Stack */
.action-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 35px 0;
}

.action-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 30px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.action-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.action-card.primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.action-card.primary .action-icon,
.action-card.primary .action-title,
.action-card.primary .action-description {
  color: white;
}

.action-icon {
  font-size: 3em;
  margin-bottom: 15px;
}

.action-title {
  font-size: 1.4em;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.3;
}

.action-description {
  font-size: 1em;
  color: #666;
  line-height: 1.6;
}

/* Features Section - Mobile Optimized */
.features-section {
  margin-top: 40px;
}

.features-title {
  text-align: center;
  font-size: 1.8em;
  color: #333;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.3;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.feature-item {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 25px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
}

.feature-icon {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.feature-content h3 {
  color: #333;
  font-size: 1.3em;
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.feature-content p {
  color: #666;
  font-size: 0.95em;
  line-height: 1.6;
}

/* Video Section - Mobile Optimized */
.video-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 40px 20px;
  margin: 35px 0;
  border-radius: 12px;
  text-align: center;
}

.video-section h2 {
  color: white;
  font-size: 1.8em;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.video-section p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1em;
  margin-bottom: 25px;
  line-height: 1.6;
  max-width: 100%;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 800px; /* Aumenté el max-width para pantallas grandes */
  margin: 0 auto;
  padding-bottom: 56.25%; /* Ratio 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* Asegurar que no haya márgenes o paddings adicionales */
.video-container * {
  box-sizing: border-box;
}

/* Trust Section - Mobile Optimized */
.trust-section {
  background: #f8f9fa;
  padding: 35px 20px;
  margin: 35px 0;
  border-radius: 12px;
  text-align: center;
}

.trust-section h3 {
  color: #333;
  font-size: 1.6em;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.3;
}

.trust-badges {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 25px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  color: #333;
  width: 100%;
  max-width: 280px;
  font-size: 0.95em;
}

.trust-badge-icon {
  font-size: 1.8em;
}

/* Footer - Mobile Optimized */
.footer-section {
  background: #2c3e50;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

.footer-section p {
  margin-bottom: 15px;
  font-size: 0.9em;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
  font-size: 0.95em;
}

.footer-links a:hover {
  color: #667eea;
}

/* ============================================
   RESPONSIVE DESIGN - TABLETS Y DESKTOP
   ============================================ */

/* Tablets - 600px and up */
@media (min-width: 600px) {
  .navbar-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 30px;
  }

  .navbar-brand {
    font-size: 22px;
  }

  .navbar-brand img {
    height: 38px;
  }

  .navbar-menu {
    flex-direction: row;
    gap: 20px;
    width: auto;
  }

  .navbar-item {
    width: auto;
  }

  .navbar-link {
    font-size: 15px;
  }

  .header-section {
    padding: 50px 30px 35px;
  }

  .header-section h1 {
    font-size: 2.3em;
  }

  .subtitle {
    font-size: 1.2em;
  }

  .tagline {
    font-size: 1.05em;
  }

  .content-section {
    padding: 40px 30px;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .action-buttons {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .pqr-components {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-badges {
    flex-direction: row;
    gap: 25px;
  }

  .trust-badge {
    width: auto;
  }

  .video-section {
    padding: 50px 30px;
  }

  .video-section h2 {
    font-size: 2.2em;
  }

  .video-section p {
    font-size: 1.1em;
  }

  .footer-links {
    flex-direction: row;
    gap: 25px;
  }
}

/* Desktop - 968px and up */
@media (min-width: 968px) {
  .content-wrapper {
    padding: 40px 20px;
  }

  .main-container {
    max-width: 1200px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }

  .header-section {
    padding: 60px 40px 40px;
  }

  .header-section h1 {
    font-size: 3em;
  }

  .subtitle {
    font-size: 1.3em;
  }

  .tagline {
    font-size: 1.1em;
  }

  .content-section {
    padding: 50px 40px;
  }

  .welcome-text h2 {
    font-size: 2.2em;
  }

  .welcome-text p {
    font-size: 1.2em;
    max-width: 800px;
  }

  .pqr-section {
    padding: 60px 40px;
    margin: 50px 0;
    border-radius: 15px;
  }

  .pqr-section h2 {
    font-size: 2.5em;
  }

  .pqr-intro {
    font-size: 1.2em;
    max-width: 900px;
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-step {
    padding: 30px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.5em;
  }

  .stats-grid {
    gap: 30px;
    margin: 50px 0;
  }

  .stat-number {
    font-size: 3em;
  }

  .stat-label {
    font-size: 1.1em;
  }

  .action-buttons {
    gap: 30px;
    margin: 50px 0;
  }

  .action-card {
    padding: 40px;
  }

  .action-icon {
    font-size: 4em;
  }

  .action-title {
    font-size: 1.6em;
  }

  .action-description {
    font-size: 1.1em;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .feature-item {
    padding: 35px;
  }

  .feature-icon {
    font-size: 3em;
  }

  .feature-content h3 {
    font-size: 1.4em;
  }

  .feature-content p {
    font-size: 1.05em;
  }

  .features-title {
    font-size: 2.2em;
  }

  .trust-section {
    padding: 50px 40px;
  }

  .trust-section h3 {
    font-size: 2em;
  }

  .trust-badges {
    gap: 40px;
  }

  .video-section {
    padding: 60px 40px;
    margin: 50px 0;
    border-radius: 15px;
  }

  .video-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
  }

  .video-section p {
    font-size: 1.2em;
    max-width: 500px;
    margin: 0 auto 30px;
  }

  .video-container {
    border-radius: 15px;
  }

  .video-container iframe {
    border-radius: 15px;
  }

  .footer-section {
    padding: 40px;
  }

  .footer-section p {
    font-size: 1em;
  }

  .footer-links {
    gap: 30px;
  }

  .navbar-menu {
    gap: 30px;
  }

  .navbar-brand {
    font-size: 24px;
  }

  .navbar-brand img {
    height: 40px;
  }
}

/* ============================================
   ESTILOS ESPECÍFICOS PARA LA PÁGINA DE LOGIN
   ============================================ */

.login-page .content-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.login-page .login-container {
  background: white;
  border-radius: 25px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
  max-width: 450px;
  width: 100%;
  overflow: hidden;
}

.login-page .login-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 40px;
  text-align: center;
}

.login-page .login-header h1 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
}

.login-page .login-header p {
  font-size: 16px;
  opacity: 0.95;
}

.login-page .login-form {
  padding: 40px;
}

.login-page .form-group {
  margin-bottom: 25px;
}

.login-page .form-label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 600;
  font-size: 14px;
}

.login-page .form-input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.login-page .form-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.login-page .form-checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
}

.login-page .form-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.login-page .form-checkbox-label {
  color: #666;
  font-size: 14px;
  cursor: pointer;
}

.login-page .btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.login-page .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.login-page .form-footer {
  text-align: center;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid #e0e0e0;
}

.login-page .form-footer p {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

.login-page .form-footer a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
}

.login-page .form-footer a:hover {
  text-decoration: underline;
}

.login-page .alert {
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
}

.login-page .alert-error {
  background: #fee;
  color: #c33;
  border-left: 4px solid #c33;
}

.login-page .alert-success {
  background: #efe;
  color: #3c3;
  border-left: 4px solid #3c3;
}

.login-page .forgot-password {
  text-align: right;
  margin-top: 10px;
}

.login-page .forgot-password a {
  color: #667eea;
  text-decoration: none;
  font-size: 13px;
}

.login-page .forgot-password a:hover {
  text-decoration: underline;
}

/* Responsive para Login */
@media (max-width: 768px) {
  .login-page .content-wrapper {
    padding: 20px 10px;
  }

  .login-page .login-container {
    margin: 0 10px;
  }

  .login-page .login-header {
    padding: 30px 20px;
  }

  .login-page .login-header h1 {
    font-size: 26px;
  }

  .login-page .login-form {
    padding: 30px 20px;
  }
}

/* ============================================
   ESTILOS ESPECÍFICOS PARA LA PÁGINA DE REGISTRO
   ============================================ */

/* Ajustes específicos para el formulario de registro */
.login-page .form-label .required {
  color: #e74c3c;
  margin-left: 3px;
}

.login-page .form-input-small {
  font-size: 13px;
  color: #666;
  margin-top: 5px;
  display: block;
}

.login-page .form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
}

.login-page .form-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  margin-top: 2px;
  flex-shrink: 0;
}

.login-page .form-checkbox-label {
  color: #666;
  font-size: 14px;
  cursor: pointer;
  line-height: 1.5;
}

.login-page .form-checkbox-label a {
  color: #667eea;
  text-decoration: none;
}

.login-page .form-checkbox-label a:hover {
  text-decoration: underline;
}

.login-page .password-strength {
  margin-top: 8px;
  font-size: 12px;
}

.login-page .password-strength-bar {
  height: 4px;
  background: #e0e0e0;
  border-radius: 2px;
  margin-top: 5px;
  overflow: hidden;
}

.login-page .password-strength-fill {
  height: 100%;
  width: 0%;
  transition: all 0.3s;
  border-radius: 2px;
}

.login-page .password-strength-weak .password-strength-fill {
  width: 33%;
  background: #e74c3c;
}

.login-page .password-strength-medium .password-strength-fill {
  width: 66%;
  background: #f39c12;
}

.login-page .password-strength-strong .password-strength-fill {
  width: 100%;
  background: #27ae60;
}

/* Ajuste para el contenedor de registro (un poco más ancho) */
.login-page .login-container {
  max-width: 550px; /* Un poco más ancho que el login */
}

/* Responsive para Registro */
@media (max-width: 768px) {
  .login-page .login-container {
    max-width: 100%;
    margin: 0 10px;
  }
}

/* ============================================
   ESTILOS PARA EL PANEL DE GESTIÓN DE COOKIES
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
}

.cookie-banner-visible {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  color: white;
}

.cookie-banner-header {
  margin-bottom: 25px;
  text-align: center;
}

.cookie-banner-header h3 {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: white;
  font-weight: 700;
}

.cookie-banner-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1em;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.cookie-banner-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cookie-option {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 15px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.cookie-option:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(102, 126, 234, 0.5);
}

.cookie-option-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.cookie-option-header input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #667eea;
  flex-shrink: 0;
}

.cookie-option-header input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.cookie-option-header label {
  cursor: pointer;
  font-size: 1em;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  flex-wrap: wrap;
}

.cookie-option-header label strong {
  font-weight: 600;
}

.cookie-required {
  background: #667eea;
  color: white;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.75em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-option-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9em;
  line-height: 1.5;
  margin-left: 32px;
}

.cookie-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cookie-btn {
  padding: 14px 30px;
  border-radius: 25px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.cookie-btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.cookie-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5);
}

.cookie-btn-secondary {
  background: white;
  color: #333;
}

.cookie-btn-secondary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.cookie-btn-tertiary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-tertiary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.cookie-banner-footer {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-banner-footer a {
  color: #667eea;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 500;
}

.cookie-banner-footer a:hover {
  text-decoration: underline;
  color: #764ba2;
}

/* Responsive para el banner de cookies */
@media (min-width: 768px) {
  .cookie-banner-content {
    padding: 40px 30px;
  }

  .cookie-banner-header h3 {
    font-size: 2.2em;
  }

  .cookie-banner-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .cookie-banner-actions {
    flex-direction: row;
    justify-content: center;
  }

  .cookie-btn {
    width: auto;
    min-width: 180px;
  }
}

@media (min-width: 968px) {
  .cookie-banner-options {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Botón flotante para reabrir configuración de cookies (opcional) */
.cookie-settings-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9em;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.cookie-settings-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.cookie-settings-button::before {
  content: "🍪 ";
}
