.elementor-420 .elementor-element.elementor-element-309ebda{--display:flex;}/* Start custom CSS for html, class: .elementor-element-8f935e8 *//* Reset y configuración base */
* {
  box-sizing: border-box;
}

.patria-workflow {
  max-width: 1000px;
  margin: 0 auto;
  font-family: 'Playfair Display', serif;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.workflow-step {
  display: none;
  animation: fadeInUp 0.6s ease-in-out;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 35px;
  margin: 20px 0;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.workflow-step.active {
  display: block;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Títulos principales mejorados */
.main-title {
  text-align: center;
  font-size: clamp(28px, 6vw, 42px);
  font-family: 'Fredoka One', cursive;
  font-weight: 400;
  color: #c82333;
  margin-bottom: 25px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
  background: linear-gradient(45deg, #c82333, #dc3545, #c82333);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease-in-out infinite;
}

.subtitle {
  text-align: center;
  font-size: clamp(18px, 4vw, 24px);
  font-family: 'Satisfy', cursive;
  color: #6c757d;
  margin-bottom: 35px;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.step-title {
  font-family: 'Pacifico', cursive !important;
  font-weight: 400 !important;
  color: #c82333 !important;
  margin-bottom: 35px !important;
  font-size: clamp(24px, 5vw, 32px) !important;
  text-align: center !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1) !important;
}

/* Contenedor de formulario */
.form-container {
  max-width: 650px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.8);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
  position: relative;
  margin-bottom: 30px;
  text-align: left;
}

.form-control {
  width: 100%;
  padding: 18px 24px;
  border: 2px solid #dee2e6;
  border-radius: 15px;
  font-size: 16px;
  font-family: 'Cinzel', serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.form-control:focus {
  outline: none;
  border-color: #c82333;
  box-shadow: 0 0 0 4px rgba(200, 35, 51, 0.1);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.95);
}

.form-control:hover {
  border-color: #adb5bd;
  transform: translateY(-1px);
}

.form-label {
  position: absolute;
  left: 24px;
  top: 18px;
  color: #6c757d;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Dancing Script', cursive;
  transition: all 0.3s ease;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.9);
  padding: 0 10px;
  border-radius: 6px;
}

.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label {
  top: -12px;
  font-size: 13px;
  color: #c82333;
  font-weight: 600;
}

/* ESTILOS HORIZONTALES */
.design-styles-section {
  margin: 35px 0;
  text-align: center;
}

.styles-title {
  font-family: 'Amatic SC', cursive !important;
  font-weight: 700 !important;
  color: #c82333 !important;
  margin-bottom: 25px !important;
  font-size: 24px !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1) !important;
}

.design-styles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.style-button {
  padding: 20px 15px;
  border: 2px solid #dee2e6;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-family: 'Cinzel', serif;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.style-button:hover {
  border-color: #c82333;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
}

.style-button.selected {
  border-color: #c82333;
  background: linear-gradient(135deg, rgba(200, 35, 51, 0.1), rgba(167, 30, 42, 0.1));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(200, 35, 51, 0.2);
}

.style-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.style-name {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 4px;
}

.style-desc {
  font-size: 12px;
  color: #6c757d;
  font-style: italic;
}

/* Botones hermosos */
.btn {
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 10px;
  letter-spacing: 0.5px;
  display: inline-block;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, #c82333, #a71e2a);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #a71e2a, #8b1a1a);
}

.btn-secondary {
  background: linear-gradient(135deg, #6c757d, #545b62);
  color: white;
}

.btn-success {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
}

.btn-outline {
  background: transparent;
  border: 2px solid #c82333;
  color: #c82333;
}

.btn-outline:hover {
  background: #c82333;
  color: white;
}

/* Mensajes predeterminados hermosos */
.predefined-messages {
  margin: 30px 0;
  text-align: left;
}

.messages-title {
  font-family: 'Amatic SC', cursive !important;
  font-weight: 700 !important;
  color: #c82333 !important;
  margin-bottom: 20px !important;
  font-size: 24px !important;
  text-align: center !important;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1) !important;
}

.message-option {
  display: block;
  width: 100%;
  padding: 16px 20px;
  margin: 12px 0;
  background: rgba(248, 249, 250, 0.8);
  border: 2px solid #dee2e6;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  font-size: 15px;
  font-family: 'Merriweather', serif;
  color: #495057;
  line-height: 1.5;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.message-option:hover {
  background: rgba(233, 236, 239, 0.9);
  border-color: #c82333;
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.message-option.selected {
  background: linear-gradient(135deg, rgba(200, 35, 51, 0.9), rgba(167, 30, 42, 0.9));
  color: white;
  border-color: #c82333;
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(200, 35, 51, 0.3);
}

/* Contenedor de vista previa con MÁS TRANSPARENCIA */
.preview-container {
  border: 4px solid #c82333;
  border-radius: 25px;
  padding: 40px;
  margin: 30px auto;
  background-image: url('https://mir-s3-cdn-cf.behance.net/project_modules/max_1200/88ef3b18243993.562c8a0aea74a.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  min-height: 550px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.preview-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.preview-container.fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  border-radius: 0;
  margin: 0;
  padding: 50px;
  background-attachment: fixed;
  max-width: none;
  border: none;
}

.fullscreen-controls {
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 10000;
}

.fullscreen-btn {
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-family: 'Cinzel', serif;
  margin-left: 10px;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.fullscreen-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.05);
}

/* CONTENIDO RECTANGULAR UNIFORME */
.preview-content {
  position: relative;
  z-index: 2;
  padding: 40px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(25px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  
  /* FORMATO RECTANGULAR ESTRUCTURADO */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  gap: 25px;
}

.fullscreen .preview-content {
  padding: 60px;
  max-width: 750px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(30px);
  border: 3px solid rgba(255, 255, 255, 0.5);
  min-height: 550px;
  gap: 30px;
}

/* ESTILOS DE DISEÑO CON FORMATO RECTANGULAR */

/* Estilo Clásico Elegante */
.style-classic .preview-content {
  background: rgba(255, 255, 255, 0.75);
  border: 4px solid #c82333;
  border-radius: 25px;
  box-shadow: 0 25px 60px rgba(200, 35, 51, 0.25);
  backdrop-filter: blur(20px);
}

.style-classic .patriotic-main-title {
  font-family: 'Cinzel', serif !important;
  font-size: clamp(32px, 7vw, 48px) !important;
  font-weight: 700 !important;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3) !important;
  color: #8B0000 !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #8B0000 !important;
  background-clip: unset !important;
}

.style-classic .user-name {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 700 !important;
  font-style: italic !important;
  color: #2c3e50 !important;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9) !important;
}

.style-classic .patriotic-message {
  font-family: 'Playfair Display', serif !important;
  font-weight: 600 !important;
  font-style: italic !important;
  color: #2c3e50 !important;
}

/* Estilo Moderno Profesional */
.style-modern .preview-content {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(248, 249, 250, 0.7));
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(200, 35, 51, 0.3);
  backdrop-filter: blur(25px);
}

.style-modern .patriotic-main-title {
  font-family: 'Kalam', cursive !important;
  font-size: clamp(28px, 6vw, 42px) !important;
  font-weight: 700 !important;
  color: #2c3e50 !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #2c3e50 !important;
  background-clip: unset !important;
  text-shadow: none !important;
}

.style-modern .user-name {
  font-family: 'Satisfy', cursive !important;
  font-weight: 400 !important;
  color: #495057 !important;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8) !important;
}

.style-modern .patriotic-message {
  font-family: 'Merriweather', serif !important;
  font-weight: 400 !important;
  color: #495057 !important;
}

/* Estilo Tradicional Peruano */
.style-traditional .preview-content {
  background: rgba(255, 248, 220, 0.75);
  border: 5px solid #8B4513;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(139, 69, 19, 0.3);
  backdrop-filter: blur(20px);
}

.style-traditional .patriotic-main-title {
  font-family: 'Amatic SC', cursive !important;
  font-size: clamp(34px, 7vw, 50px) !important;
  font-weight: 700 !important;
  color: #8B4513 !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #8B4513 !important;
  background-clip: unset !important;
  text-shadow: 3px 3px 6px rgba(139, 69, 19, 0.3) !important;
}

.style-traditional .user-name {
  font-family: 'Fredoka One', cursive !important;
  font-weight: 400 !important;
  color: #8B4513 !important;
  text-shadow: 2px 2px 4px rgba(255, 248, 220, 0.8) !important;
}

.style-traditional .patriotic-message {
  font-family: 'Crimson Text', serif !important;
  font-weight: 600 !important;
  color: #8B4513 !important;
}

/* Estilo Minimalista Contemporáneo */
.style-minimalist .preview-content {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(200, 35, 51, 0.2);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(30px);
}

.style-minimalist .patriotic-main-title {
  font-family: 'Pacifico', cursive !important;
  font-size: clamp(26px, 5vw, 36px) !important;
  font-weight: 400 !important;
  color: #2c3e50 !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #2c3e50 !important;
  background-clip: unset !important;
  text-shadow: none !important;
}

.style-minimalist .user-name {
  font-family: 'Dancing Script', cursive !important;
  font-weight: 600 !important;
  color: #495057 !important;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7) !important;
}

.style-minimalist .patriotic-message {
  font-family: 'Playfair Display', serif !important;
  font-weight: 400 !important;
  color: #495057 !important;
}

/* Título principal SIN FONDO */
.patriotic-main-title {
  font-size: clamp(32px, 7vw, 44px);
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
  color: #c82333;
  margin-bottom: 20px;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #c82333;
  background-clip: unset;
  order: 1;
}

.user-name {
  font-size: clamp(22px, 5vw, 32px);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9);
  font-style: italic;
  letter-spacing: 1px;
  text-transform: capitalize;
  order: 2;
}

/* MENSAJE SIN RECUADRO - SOLO TEXTO LIMPIO */
.patriotic-message {
  font-size: clamp(18px, 4vw, 24px);
  font-family: 'Playfair Display', serif;
  color: #2c3e50;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9);
  font-style: italic;
  max-width: 100%;
  width: 100%;
  text-align: center;
  order: 3;
  
  /* SIN RECUADRO - SOLO TEXTO */
  background: none;
  padding: 0;
  border: none;
  backdrop-filter: none;
  box-shadow: none;
}

.peru-elements {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  order: 4;
}

.preview-city {
  font-size: clamp(16px, 3vw, 20px);
  color: #c82333;
  font-weight: 600;
  margin-top: 15px;
  font-family: 'Dancing Script', cursive;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
  order: 5;
}

.preview-date {
  font-size: clamp(14px, 2.5vw, 18px);
  color: #6c757d;
  margin-top: 10px;
  font-family: 'Cinzel', serif;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
  order: 6;
}

.fullscreen .patriotic-main-title {
  font-size: clamp(44px, 10vw, 72px);
  margin-bottom: 25px;
}

.fullscreen .user-name {
  font-size: clamp(32px, 7vw, 48px);
  margin-bottom: 25px;
  letter-spacing: 2px;
}

.fullscreen .patriotic-message {
  font-size: clamp(24px, 5vw, 32px);
  margin-bottom: 25px;
}

/* Elementos peruanos mejorados */
.peru-flag {
  display: inline-block;
  width: 70px;
  height: 49px;
  background: linear-gradient(90deg, #c82333 33%, #ffffff 33%, #ffffff 66%, #c82333 66%);
  border: 3px solid #333;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  animation: flagWave 2s ease-in-out infinite;
  transform-origin: left center;
}

@keyframes flagWave {
  0%, 100% { transform: rotate(0deg) scaleY(1); }
  25% { transform: rotate(3deg) scaleY(0.97); }
  50% { transform: rotate(0deg) scaleY(1.03); }
  75% { transform: rotate(-3deg) scaleY(0.97); }
}

.escarapela {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #c82333 30%, #ffffff 30%, #ffffff 60%, #c82333 60%);
  border-radius: 50%;
  border: 4px solid #333;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  animation: escarapelaRotate 4s linear infinite;
  position: relative;
}

@keyframes escarapelaRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.escarapela::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #c82333;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.3); }
}

.fullscreen .peru-flag {
  width: 105px;
  height: 73px;
  animation: flagWave 2s ease-in-out infinite, flagGlow 3s ease-in-out infinite alternate;
}

.fullscreen .escarapela {
  width: 90px;
  height: 90px;
  animation: escarapelaRotate 4s linear infinite, escarapelaGlow 3s ease-in-out infinite alternate;
}

@keyframes flagGlow {
  0% { box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3); }
  100% { box-shadow: 0 8px 25px rgba(200, 35, 51, 0.5), 0 0 35px rgba(200, 35, 51, 0.3); }
}

@keyframes escarapelaGlow {
  0% { box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3); }
  100% { box-shadow: 0 8px 25px rgba(200, 35, 51, 0.5), 0 0 35px rgba(200, 35, 51, 0.4); }
}

.fullscreen .escarapela::before {
  width: 18px;
  height: 18px;
}

/* Indicador de progreso hermoso */
.progress-indicator {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.progress-step {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e9ecef, #f8f9fa);
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  font-family: 'Fredoka One', cursive;
  margin: 0 20px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.progress-step.active {
  background: linear-gradient(135deg, #c82333, #a71e2a);
  color: white;
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(200, 35, 51, 0.3);
}

.progress-step.completed {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

/* Controles de vista previa */
.preview-controls {
  text-align: center;
  margin-top: 35px;
}

/* SECCIÓN DE DESCARGA SIN GIF */
.preview-download-section {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.download-title {
  font-family: 'Pacifico', cursive !important;
  font-weight: 400 !important;
  color: #c82333 !important;
  margin-bottom: 25px !important;
  font-size: 20px !important;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7) !important;
}

/* Sección de compartir SOLO URL */
.share-section {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(248, 249, 250, 0.9), rgba(233, 236, 239, 0.9));
  border-radius: 25px;
  margin: 25px 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.success-message {
  margin-bottom: 35px;
}

.success-text {
  font-size: clamp(18px, 4vw, 22px);
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 20px;
  font-family: 'Satisfy', cursive;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.success-icon {
  font-size: 40px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.share-options {
  max-width: 650px;
  margin: 0 auto;
}

.share-url-section {
  margin: 30px 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.share-label {
  font-weight: 600;
  color: #c82333;
  display: block;
  margin-bottom: 20px;
  font-family: 'Pacifico', cursive;
  font-size: 20px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
}

.share-url {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #dee2e6;
  padding: 20px;
  border-radius: 15px;
  margin: 15px 0;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  word-break: break-all;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.share-url:hover {
  border-color: #c82333;
  background: rgba(248, 249, 250, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.share-hint {
  color: #6c757d;
  font-style: italic;
  font-family: 'Dancing Script', cursive;
  font-size: 18px;
  margin-top: 10px;
  display: block;
}

.share-instruction {
  color: #495057;
  font-size: 16px;
  margin-top: 20px;
  font-family: 'Merriweather', serif;
  line-height: 1.6;
  background: rgba(40, 167, 69, 0.1);
  padding: 15px;
  border-radius: 10px;
  border-left: 4px solid #28a745;
}

.download-options {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 25px 0;
}

.download-btn {
  padding: 14px 24px;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.download-btn.png {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
}

.download-btn.jpg {
  background: linear-gradient(135deg, #28a745, #1e7e34);
  color: white;
}

.action-buttons {
  margin: 35px 0;
}

.patriotic-footer {
  margin-top: 45px;
  padding: 30px;
  background: rgba(200, 35, 51, 0.1);
  border-radius: 20px;
  border: 2px solid rgba(200, 35, 51, 0.2);
  backdrop-filter: blur(5px);
}

.footer-title {
  color: #c82333;
  font-weight: 600;
  margin: 0 0 12px 0;
  font-family: 'Fredoka One', cursive;
  font-size: 20px;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
}

.footer-text {
  color: #6c757d;
  font-size: 16px;
  margin: 0;
  font-family: 'Satisfy', cursive;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
}

/* Partículas hermosas */
.patriotic-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #c82333;
  border-radius: 50%;
  animation: floatParticle 6s linear infinite;
  box-shadow: 0 0 6px rgba(200, 35, 51, 0.5);
}

.particle:nth-child(odd) {
  background: #ffffff;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
  animation-delay: 3s;
}

@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Efectos de pantalla completa */
.fullscreen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    transparent 0%,
    rgba(200, 35, 51, 0.05) 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.05) 75%,
    transparent 100%
  );
  animation: fullscreenOverlay 10s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes fullscreenOverlay {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Responsividad optimizada */
@media (max-width: 768px) {
  .patria-workflow {
    padding: 15px;
    margin: 8px;
  }
  
  .workflow-step {
    padding: 25px;
  }
  
  .form-container {
    padding: 25px;
  }
  
  .design-styles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .style-button {
    padding: 15px 10px;
  }
  
  .style-icon {
    font-size: 24px;
  }
  
  .style-name {
    font-size: 14px;
  }
  
  .style-desc {
    font-size: 11px;
  }
  
  .preview-container {
    min-height: 450px;
    padding: 25px;
  }
  
  .preview-container.fullscreen {
    padding: 25px;
  }
  
  .preview-content {
    padding: 30px;
    min-height: 400px;
    gap: 20px;
  }
  
  .fullscreen .preview-content {
    padding: 35px 20px;
    max-width: 90%;
    min-height: 450px;
    gap: 25px;
  }
  
  .btn {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 12px auto;
  }
  
  .peru-elements {
    gap: 20px;
  }
  
  .peru-flag {
    width: 60px;
    height: 42px;
  }
  
  .escarapela {
    width: 50px;
    height: 50px;
  }
  
  .download-options {
    flex-direction: column;
    align-items: center;
  }
  
  .download-btn {
    width: 100%;
    max-width: 280px;
  }
  
  .progress-step {
    width: 60px;
    height: 60px;
    margin: 0 12px;
    font-size: 18px;
  }
  
  .share-instruction {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .design-styles-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .preview-container {
    min-height: 400px;
    padding: 20px;
  }
  
  .preview-content {
    padding: 25px;
    min-height: 350px;
    gap: 18px;
  }
  
  .peru-elements {
    gap: 15px;
  }
  
  .peru-flag {
    width: 50px;
    height: 35px;
  }
  
  .escarapela {
    width: 40px;
    height: 40px;
  }
  
  .progress-step {
    width: 50px;
    height: 50px;
    margin: 0 8px;
    font-size: 16px;
  }
}

/* Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
  .patria-workflow {
    max-width: 95%;
  }
  
  .preview-container {
    max-width: 90%;
  }
  
  .form-container {
    max-width: 550px;
  }
  
  .design-styles-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Pantallas grandes */
@media (min-width: 1200px) {
  .patria-workflow {
    max-width: 1200px;
  }
  
  .preview-container {
    max-width: 1000px;
  }
  
  .design-styles-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
}/* End custom CSS */