@font-face{
	font-family:Sansation_Regular;
	src:url(../../../fonts/Sansation_Regular.ttf);
}
@font-face{
	font-family:Rubik-Regular;
	src:url(../../../fonts/Rubik-Regular.ttf);
}
@font-face{
	font-family:Droid_Sans_Mono_Dotted_for_Powerline;
	src:url(../../../fonts/Droid_Sans_Mono_Dotted_for_Powerline.ttf);
}

@font-face{
	font-family:RobotoCondensed-Regular;
	src:url(../../../fonts/RobotoCondensed-Regular.ttf);
}

@font-face{
	font-family:OpenSans-Regular;
	src:url(../../../fonts/OpenSans-Regular.ttf);
}

@font-face{
	font-family:OpenSans-Light;
	src:url(../../../fonts/OpenSans-Light.ttf);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple: #7c3aed;
  --purple-dark: #5b21b6;
  --purple-deeper: #3b0764;
  --purple-light: #a78bfa;
  --purple-pale: #ede9fe;
  --black: #0a0a0a;
  --black-soft: #111111;
  --gray-900: #1a1a1a;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --whatsapp: #25d366;
  --font: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(124,58,237,0.12);
  --shadow-lg: 0 8px 48px rgba(124,58,237,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

table { border-collapse: collapse; width: 100%; }
td, th { vertical-align: top; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124,58,237,0.35); }
  50%       { box-shadow: 0 0 0 12px rgba(124,58,237,0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.fade-up { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; transform: translateY(28px); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124,58,237,0.25);
  transition: all 0.3s ease;
}
.nav-table { max-width: 1200px; margin: 0 auto; }
.nav-table td { padding: 0; }
.nav-brand {
  padding: 16px 24px;
  font-size: 1.4rem; font-weight: 800;
  background: linear-gradient(135deg, var(--purple-light), var(--white));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  white-space: nowrap;
}
.nav-links { padding: 16px 24px; text-align: right; }
.nav-links a {
  color: rgba(255,255,255,0.75); font-size: 0.9rem; font-weight: 500;
  margin-left: 28px; transition: color 0.2s;
  display: inline-block;
}
.nav-links a:hover { color: var(--purple-light); }
.nav-cta {
  background: var(--purple) !important;
  color: var(--white) !important;
  padding: 8px 20px; border-radius: 20px;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--purple-dark) !important; transform: translateY(-1px); }
.nav-hamburger { display: none; padding: 16px 24px; text-align: right; }
.hamburger-btn {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px;
  align-items: flex-end; padding: 4px;
}
.hamburger-btn span {
  display: block; height: 2px; background: var(--white);
  transition: all 0.3s; border-radius: 2px;
}
.hamburger-btn span:nth-child(1) { width: 24px; }
.hamburger-btn span:nth-child(2) { width: 18px; }
.hamburger-btn span:nth-child(3) { width: 24px; }
.mobile-menu {
  display: none; background: var(--black-soft);
  border-top: 1px solid rgba(124,58,237,0.2);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 14px 24px;
  color: rgba(255,255,255,0.8); font-size: 0.95rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu a:hover { color: var(--purple-light); padding-left: 32px; }

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 40%, #1e0040 100%);
  background-size: 400% 400%;
  animation: gradient-shift 8s ease infinite;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding-top: 80px;
}
.hero-bg-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.18; pointer-events: none;
}
.orb-1 { width: 600px; height: 600px; background: var(--purple); top: -200px; right: -200px; }
.orb-2 { width: 400px; height: 400px; background: var(--purple-dark); bottom: -100px; left: -100px; }
.hero-container { max-width: 1200px; margin: 0 auto; width: 100%; padding: 60px 24px; }
.hero-text-cell { width: 55%; padding-right: 40px; }
.hero-visual-cell { width: 45%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,58,237,0.2); border: 1px solid rgba(124,58,237,0.4);
  color: var(--purple-light); padding: 6px 16px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; margin-bottom: 24px;
  animation: fadeUp 0.6s ease 0.1s both;
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px; background: var(--purple-light);
  border-radius: 50%; animation: pulse-glow 2s infinite;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900; color: var(--white);
  line-height: 1.1; margin-bottom: 20px;
  animation: fadeUp 0.6s ease 0.2s both;
}
.hero-title span {
  background: linear-gradient(135deg, var(--purple-light), #c084fc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.65);
  line-height: 1.7; margin-bottom: 36px;
  animation: fadeUp 0.6s ease 0.3s both;
}
.hero-actions { animation: fadeUp 0.6s ease 0.4s both; }
.btn-primary {
  display: inline-block;
  background: var(--purple);
  color: var(--white); font-weight: 700; font-size: 1rem;
  padding: 14px 32px; border-radius: 8px;
  transition: all 0.2s; border: 2px solid var(--purple);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--purple-dark); border-color: var(--purple-dark);
  transform: translateY(-2px); box-shadow: var(--shadow-lg);
}
.btn-outline {
  display: inline-block;
  background: transparent; color: var(--white);
  font-weight: 600; font-size: 1rem;
  padding: 14px 32px; border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.2s; cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--purple-light); color: var(--purple-light);
  transform: translateY(-2px);
}
.hero-visual {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 20px; overflow: hidden;
  animation: fadeUp 0.6s ease 0.5s both, float 4s ease-in-out 1s infinite;
  box-shadow: var(--shadow-lg);
}
.hero-visual-header { background: rgba(124,58,237,0.2); padding: 14px 20px; }
.dots { display: flex; gap: 6px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #f87171; }
.dot-yellow { background: #fbbf24; }
.dot-green { background: #34d399; }
.hero-visual-body { padding: 20px; }
.mock-search {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(124,58,237,0.3);
  border-radius: 8px; padding: 10px 16px;
  color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.mock-products-table td { padding: 6px; }
.mock-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: 10px; padding: 12px;
  transition: transform 0.2s;
}
.mock-card:hover { transform: scale(1.02); }
.mock-img {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(91,33,182,0.5));
  border-radius: 6px; margin-bottom: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.mock-name { color: rgba(255,255,255,0.85); font-size: 0.75rem; font-weight: 600; margin-bottom: 4px; }
.mock-price { color: var(--purple-light); font-size: 0.8rem; font-weight: 700; }
.mock-wap {
  background: var(--whatsapp); color: var(--white);
  border: none; border-radius: 6px; padding: 6px 10px;
  font-size: 0.7rem; font-weight: 600; cursor: pointer;
  width: 100%; margin-top: 8px;
}

/* ===== STATS ===== */
#stats { background: var(--black); padding: 60px 24px; }
.stats-container { max-width: 1200px; margin: 0 auto; }
.stats-table td {
  text-align: center; padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stats-table td:last-child { border-right: none; }
.stat-number {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  background: linear-gradient(135deg, var(--purple-light), #c084fc);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  display: block; line-height: 1;
}
.stat-label {
  color: rgba(255,255,255,0.55); font-size: 0.85rem; font-weight: 500;
  margin-top: 6px; display: block;
}

/* ===== SECTION BASE ===== */
.section { padding: 80px 24px; }
.section-container { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: var(--purple-pale); color: var(--purple-dark);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 4px 14px; border-radius: 20px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800;
  color: var(--black); line-height: 1.2; margin-bottom: 16px;
}
.section-title span { color: var(--purple); }
.section-subtitle {
  font-size: 1.05rem; color: var(--gray-500); max-width: 560px; line-height: 1.7;
}
.section-header { margin-bottom: 48px; }

/* ===== FEATURES ===== */
#features { background: var(--white); }
.features-table td { padding: 12px; width: 33.33%; vertical-align: top; }
.feature-card {
  background: var(--gray-100); border-radius: var(--radius);
  padding: 28px 24px; height: 100%;
  border: 1px solid transparent;
  transition: all 0.25s;
}
.feature-card:hover {
  background: var(--white); border-color: var(--purple-pale);
  box-shadow: var(--shadow); transform: translateY(-3px);
}
.feature-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--purple-pale); color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px;
}
.feature-title { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.feature-desc { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; }

/* ===== ADMIN PREVIEW ===== */
#admin { background: var(--black); overflow: hidden; }
.admin-text-cell { width: 45%; padding-right: 50px; }
.admin-visual-cell { width: 55%; }
.admin-title { color: var(--white); }
.admin-subtitle { color: rgba(255,255,255,0.6); }
.admin-checklist { list-style: none; margin-top: 24px; }
.admin-checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,0.75); font-size: 0.9rem;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.admin-checklist li::before {
  content: 'âœ“'; background: var(--purple); color: var(--white);
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.admin-mock {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 16px; overflow: hidden;
}
.admin-mock-top {
  background: rgba(124,58,237,0.15);
  border-bottom: 1px solid rgba(124,58,237,0.2);
  padding: 14px 20px;
}
.admin-mock-layout td { vertical-align: top; }
.admin-sidebar {
  width: 180px; background: rgba(0,0,0,0.3);
  padding: 20px 14px; min-height: 280px;
}
.admin-sidebar-item {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 12px; border-radius: 8px;
  color: rgba(255,255,255,0.55); font-size: 0.78rem;
  margin-bottom: 4px; cursor: pointer; transition: all 0.2s;
}
.admin-sidebar-item:hover, .admin-sidebar-item.active {
  background: rgba(124,58,237,0.3); color: var(--white);
}
.admin-content { padding: 20px; flex: 1; }
.admin-stat-row td { padding: 5px; }
.admin-stat {
  background: rgba(124,58,237,0.15); border: 1px solid rgba(124,58,237,0.2);
  border-radius: 10px; padding: 14px 12px; text-align: center;
}
.admin-stat-n { color: var(--purple-light); font-size: 1.3rem; font-weight: 800; }
.admin-stat-l { color: rgba(255,255,255,0.5); font-size: 0.72rem; margin-top: 3px; }
.admin-section-label {
  color: rgba(255,255,255,0.4); font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.07em; font-weight: 600; margin-bottom: 10px; margin-top: 14px;
}
.admin-product-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 8px;
  background: rgba(255,255,255,0.04); margin-bottom: 6px;
}
.admin-product-thumb {
  width: 32px; height: 32px; border-radius: 6px;
  background: linear-gradient(135deg, rgba(124,58,237,0.5), rgba(196,131,252,0.4));
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0;
}
.admin-product-info { flex: 1; }
.admin-product-name { color: rgba(255,255,255,0.8); font-size: 0.75rem; font-weight: 600; }
.admin-product-meta { color: rgba(255,255,255,0.4); font-size: 0.68rem; }
.admin-status { font-size: 0.68rem; font-weight: 700; padding: 2px 8px; border-radius: 4px; }
.status-active { background: rgba(52,211,153,0.2); color: #34d399; }
.status-inactive { background: rgba(248,113,113,0.15); color: #f87171; }

/* ===== CTA ===== */
#cta {
  background: linear-gradient(135deg, var(--purple-deeper), var(--purple-dark), var(--purple));
  padding: 90px 24px; text-align: center;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  color: var(--white); margin-bottom: 16px; line-height: 1.2;
}
.cta-sub { color: rgba(255,255,255,0.7); font-size: 1.1rem; margin-bottom: 36px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-white {
  background: var(--white); color: var(--purple-dark);
  padding: 14px 36px; border-radius: 8px; font-weight: 800; font-size: 1rem;
  display: inline-block; transition: all 0.2s;
}
.btn-white:hover { background: var(--gray-100); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn-outline-white {
  background: transparent; color: var(--white);
  padding: 14px 36px; border-radius: 8px; font-weight: 700; font-size: 1rem;
  display: inline-block; border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.2s;
}
.btn-outline-white:hover { border-color: var(--white); transform: translateY(-2px); }

/* ===== FOOTER ===== */
#footer { background: var(--black); border-top: 1px solid rgba(255,255,255,0.06); padding: 48px 24px 28px; }
.footer-table { max-width: 1200px; margin: 0 auto; }
.footer-brand-cell { width: 35%; padding-right: 40px; }
.footer-brand-name {
  font-size: 1.3rem; font-weight: 800;
  background: linear-gradient(135deg, var(--purple-light), var(--white));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 10px;
}
.footer-desc { color: rgba(255,255,255,0.4); font-size: 0.85rem; line-height: 1.6; }
.footer-col { padding: 0 20px; }
.footer-col-title { color: var(--white); font-size: 0.85rem; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col a { display: block; color: rgba(255,255,255,0.45); font-size: 0.83rem; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: var(--purple-light); }
.footer-bottom { max-width: 1200px; margin: 32px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom-table td { vertical-align: middle; }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.footer-links { text-align: right; }
.footer-links a { color: rgba(255,255,255,0.35); font-size: 0.8rem; margin-left: 20px; transition: color 0.2s; }
.footer-links a:hover { color: var(--purple-light); }

/* ===== SCROLL TO TOP ===== */
#scroll-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--purple); color: var(--white); border: none;
  cursor: pointer; font-size: 1.1rem; font-family: var(--font);
  display: none; align-items: center; justify-content: center;
  box-shadow: var(--shadow); transition: all 0.2s;
  animation: pulse-glow 3s infinite;
}
#scroll-top.show { display: flex; }
#scroll-top:hover { background: var(--purple-dark); transform: translateY(-2px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-table { display: block; }
  .hero-text-cell, .hero-visual-cell { display: block; width: 100%; padding: 0; }
  .hero-visual-cell { margin-top: 40px; }
  .features-table { display: block; }
  .features-table tbody, .features-table tr { display: block; }
  .features-table td { display: block; width: 100%; padding: 8px 0; }
  .admin-table { display: block; }
  .admin-text-cell, .admin-visual-cell { display: block; width: 100%; padding: 0; }
  .admin-text-cell { margin-bottom: 32px; }
  .footer-table { display: block; }
  .footer-table tbody, .footer-table tr { display: block; }
  .footer-table td { display: block; width: 100%; padding: 0 0 24px; }
  .footer-brand-cell { padding-right: 0; }
  .footer-bottom-table { display: block; }
  .footer-bottom-table td { display: block; text-align: left !important; }
  .footer-links { text-align: left !important; margin-top: 8px; }
  .footer-links a:first-child { margin-left: 0; }
  .stats-table { display: block; }
  .stats-table tbody, .stats-table tr { display: block; }
  .stats-table td { display: block; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-hamburger { display: table-cell; }
  .btn-primary, .btn-outline { display: block; text-align: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-white, .btn-outline-white { display: block; text-align: center; width: 100%; max-width: 300px; }
}

form {
	font-family: RobotoCondensed-Regular;
	font-size: 18px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #000;
	text-decoration: none;
	margin: 0px;
	padding: 10px;
	height: auto;
	width: 100%;
	border: thin none #000;
	box-sizing:border-box;
	display:inline-block;
}

label{
	font-family: RobotoCondensed-Regular;
	font-size: 16px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #000;
	text-decoration: none;
	padding: 0px;
	height: auto;
	width: auto;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	display: inline-block;
	box-sizing: border-box;
}

label.required::before {
	content: "*";
	color: red;
	margin-right: 3px;
}

input, textarea, select {
	font-family: OpenSans-Regular;
	font-size: 18px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #000;
	text-decoration: none;
	background-color: #E5E5E5;
	padding: 12px;
	height: auto;
	width: 98%;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	border: thin solid #CCC;
	display: inline-block;
	box-sizing: border-box;
	border-radius: 5px;
}

input::placeholder,
textarea::placeholder {
	color: #888;
	opacity: 1;
	font-family: RobotoCondensed-Regular;
	font-size: 18px;
}

input:focus, textarea:focus, select:focus {
	outline: none;
	border-color: #FF8114;
	box-shadow: 0px 0px 5px 5px #FFDCBD;
	animation: parpadeo 0.5s infinite alternate; /* ðŸ‘ˆ aquÃ­ estÃ¡ la magia */
}

/* Animación */
@keyframes parpadeo {
	0% {
		box-shadow: 0px 0px 0px 0px #FFDCBD;
	}
	100% {
		box-shadow: 0px 0px 10px 5px #FFDCBD;
	}
}

.button1{
	font-family: RobotoCondensed-Regular;
	font-size: 16px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #FFF;
	text-decoration: none;
	background-color: #7C3AED;
	text-align: center;
	padding: 10px;
	height: auto;
	width: auto;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	border: thin solid #7C3AED;
	cursor: pointer;
	box-sizing:border-box;
	display:inline-block;
	border-radius:5px;
}

.button2{
	font-family: RobotoCondensed-Regular;
	font-size: 16px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	color: #000000;
	text-decoration: none;
	background-color: #CCC;
	text-align: center;
	padding: 10px;
	height: auto;
	width: auto;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	border: thin solid #CCC;
	cursor: pointer;
	box-sizing:border-box;
	display:inline-block;
	border-radius:5px;
}

#modalCatalogo{
	background:rgba(15,11,56,.75);
	backdrop-filter:blur(6px);
	-webkit-backdrop-filter:blur(6px);
	margin:0;
	padding:20px;
	width:100%;
	height:100%;
	position:fixed;
	left:0;
	top:0;
	right:0;
	bottom:0;
	z-index:1;
	display:none;
	box-sizing:border-box;
}

#modalCatalogo #windowCatalogo{
	font-family:Arial, Helvetica, sans-serif;
	font-size:14px;
	color:#333;
	background:#FFF;
	width:100%;
	max-width:700px;
	max-height:90vh;
	padding:35px;
	position:relative;
	margin:auto;
	top:50%;
	transform:translateY(-50%);
	border-radius:20px;
	box-shadow:0 20px 60px rgba(0,0,0,.30);
	overflow-y:auto;
	box-sizing:border-box;
	animation:showWindow .30s ease;
}

#modalCatalogo #windowCatalogo::-webkit-scrollbar{
	width:8px;
}

#modalCatalogo #windowCatalogo::-webkit-scrollbar-thumb{
	background:#CCC;
	border-radius:10px;
}

#modalCatalogo #windowCatalogo #closeCatalogo{
	position:absolute;
	top:15px;
	right:15px;
	width:38px;
	height:38px;
	line-height:38px;
	text-align:center;
	background:#DC3545;
	color:#FFF;
	font-size:20px;
	font-weight:bold;
	cursor:pointer;
	border-radius:50%;
	transition:.3s;
	box-shadow:0 5px 15px rgba(220,53,69,.30);
}

#modalCatalogo #windowCatalogo #closeCatalogo:hover{
	transform:rotate(90deg) scale(1.08);
	background:#c82333;
}

@keyframes fadeModal{

	from{
		opacity:0;
	}

	to{
		opacity:1;
	}

}

@keyframes showWindow{

	from{
		opacity:0;
		transform:translateY(-45%) scale(.95);
	}

	to{
		opacity:1;
		transform:translateY(-50%) scale(1);
	}

}

@media(max-width:768px){

	#modalCatalogo{
		padding:15px;
	}

	#modalCatalogo #windowCatalogo{
		width:100%;
		padding:25px 20px;
		border-radius:15px;
	}

}