@keyframes slide-text {
	0% {
	  transform: translateX(0);
	}
	100% {
	  transform: translateX(-100%);
	}
}

@font-face {
    font-family: 'Open Sans';
    src: url('/Fonts/OpenSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
  max-width: 100%;
  box-sizing: border-box;
}

html, body {
	font-family: 'Open Sans', sans-serif!important;
	margin: 0;
	padding: 0;
	height: 100vh;
	display: flex;
	flex-direction: column;
	background-color: #f4f4f4;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.main-container {
	display: flex;
	flex: 1;
	height: 90.1vh;
}

.download-button {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: white;
	font-size: 1.2rem;
	font-weight: bold;
	padding: 0.94rem 2.5rem;
	border-radius: 3.125rem;
	transition: transform 0.3s, box-shadow 0.3s;
}

.download-button i {
	margin-right: 0.625rem;
}

.download-button:hover {
	transform: translateY(-0.31rem);
	box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.2);
}

.download-android {
	background-color: #ee2737;
	box-shadow: 0 0.31rem 0.94rem rgb(220 61 61 / 40%);
}

.download-ios {
	background-color: #eaaa00;
	box-shadow: 0 0.31rem 0.94rem rgb(227 147 0 / 40%);
}

.highlight,
.highlight-hottie,
.highlight-star,
.highlight-top100 {
	font-weight: bold;
}
.highlight { color: #5c068c; }
.highlight-hottie { color: #EE2737; }
.highlight-star { color: #EAAA00; }
.highlight-top100 { color: #482BA8; }

.blog-content {
	width: 100%;
	max-width: 56.25rem;
	margin: 0 auto;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 3.125rem;
}

.blog-header {
	text-align: center;
}

.blog-header h1 {
	font-size: 2.5rem;
	color: #5c068c;
	margin-bottom: 0.625rem;
	font-family: 'Open Sans', sans-serif;
}

.blog-header p {
	font-size: 1rem;
	color: #666;
}

.blog-post {
	background-color: rgba(250, 250, 250, 0.95);
	border: 1px solid #e1e1e1;
	border-radius: 0.625rem;
	padding: 1.875rem;
	box-shadow: 0 0.25rem 0.375rem rgba(0, 0, 0, 0.1);
	transition: transform 0.3s, box-shadow 0.3s;
	margin-top: 40px;
}

.blog-post:hover {
	transform: translateY(-0.31rem);
	box-shadow: 0 0.5rem 0.75rem rgba(0, 0, 0, 0.2);
}

.blog-post h2 {
	font-size: 1.6rem;
	color: #424242;
	margin-bottom: 0.94rem;
}

.post-date {
	font-size: 0.95rem;
	color: #999;
}

.user-responses {
	margin-top: 1.25rem;
}

.user-responses h3 {
	font-size: 1.1rem;
	color: #4242428f;
}

.response-option {
	display: flex;
	align-items: center;
	margin-bottom: 0.94rem;
}

.response-label {
	width: 10.5rem;
	font-size: 1.05rem;
	color: #333;
	font-weight: 600;
}

.progress-container {
	flex: 1;
	background-color: #e0e0e0;
	border-radius: 1.5625rem;
	overflow: hidden;
	height: 1.875rem;
	margin-right: 0.94rem;
	position: relative;
}

.progress {
	height: 100%;
	background: linear-gradient(45deg, #5c068c, #BB29BB, #5c068c);
	background-size: 300% 300%;
	width: 0;
	transition: width 1s ease-in-out;
	border-radius: 1.5625rem 0 0 1.5625rem;
	animation:
		gradientSlide 9s ease infinite,
		glowPulse     1.5s ease-in-out infinite alternate,
		hueShift2      4s ease-in-out infinite alternate;
}

@keyframes hueShift2 {
	0%   { filter: hue-rotate(-10deg); }  
	50%  { filter: hue-rotate( 10deg); } 
	100% { filter: hue-rotate(-10deg); }
  }

.progress-text {
	position: absolute;
	top: 0;  
	bottom: 0;  
	display: flex;
	align-items: center;       
	font-weight: bold;
	pointer-events: none;     
	color: #fff;               
	transform: translateX(calc(-100% - 8px))!important;
}
  
.low-percentage {
	color: #ffffff !important;
	text-shadow: 0 0 5px rgb(94 94 94);
}

.blog-post.patrocin-post {
	position: relative;
	padding: 0;
}

.blog-post.patrocin-post img {
	width: 100%;
	height: 25rem;
	display: block;
	border-radius: 0.625rem;
	object-fit: fill;
}

.ad-label {
	position: absolute;
	top: 0.625rem;
	right: 0.625rem;
	background: rgba(0, 0, 0, 0.7);
	color: #fff;
	padding: 0.31rem 0.625rem;
	font-size: 0.7rem;
	border-radius: 0.2rem;
	text-transform: uppercase;
}

.rules-container {
	width: 100%;
	max-width: 56.25rem;
	background-color: rgba(255, 255, 255, 0.85);
	padding: 3.125rem;
	border-radius: 0.625rem;
	box-shadow: 0 0 0.625rem rgba(92, 6, 140, 0.2);
	align-self: center;
}

.rules-container h2 {
	color: #5c068c;
	margin-bottom: 0.94rem;
	padding-bottom: 0.31rem;
	font-size: 1.3rem;
}

.rules-container ul {
	list-style-type: square;
	padding-left: 1.25rem;
}

.rules-container li {
	margin-bottom: 0.625rem;
	font-size: 1rem;
	text-align: justify;
}

.cta-button {
	background: #5c068c;
	color: white;
	border: none;
	padding: 0.94rem 1.875rem;
	border-radius: 1.5625rem;
	font-size: 1.2rem;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
	margin-top: 1.25rem;
	box-shadow: 0.1875rem 0.1875rem #5c068c63;
	transition: transform 0.3s, background 0.3s;
}

.cta-button:hover {
	background-color: #ab6bcf;
	color: white;
	box-shadow: 0.1875rem 0.1875rem #5c068c;
}

.button-about {
	background: #5c068c;
	color: white;
	border: none;
	padding: 0.94rem 2.875rem;
	border-radius: 1.5625rem;
	font-size: 1.2rem;
	cursor: pointer;
	text-decoration: none;
	text-align: center;
	margin-top: 1.25rem;
	font-weight: bold;
	box-shadow: 0.1875rem 0.1875rem #5c068c63;
	transition: transform 0.3s, background 0.3s;
}

@keyframes gradientSlide {
	0%,100% { background-position: 0% 50%; }
	50%     { background-position: 100% 50%; }
}
@keyframes glowPulse {
	0%   {
		box-shadow: 0 0 1px #BB29BB, 0 0 8px #5c068c;
		text-shadow: 0 0 4px #BB29BB;
	}
	50%  {
		box-shadow: 0 0 1px #BB29BB, 0 0 12px #5c068c;
		text-shadow: 0 0 12px #BB29BB;
	}
	100% {
		box-shadow: 0 0 1px #BB29BB, 0 0 8px #5c068c;
		text-shadow: 0 0 4px #BB29BB;
	}
}
@keyframes hueShift {
	0%   { filter: hue-rotate(0deg); }
	50%  { filter: hue-rotate(45deg); }
	100% { filter: hue-rotate(0deg); }
}
  
.button-about:hover {
	background: linear-gradient(45deg, #BB29BB, #5c068c, #BB29BB, #5c068c);
	background-size: 300% 300%;

	animation:
		gradientSlide 3s ease infinite,
		glowPulse     1.5s ease-in-out infinite alternate,
		hueShift      4s ease-in-out infinite alternate;

	color: white;
	
}
  
.category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(13.75rem, 1fr));
	gap: 1.875rem;
	width: 100%;
	max-width: 56.25rem;
}

.category-grid-bottom {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(13.75rem, 1fr));
	gap: 1.875rem;
	width: 100%;
	max-width: 37.5rem;
}

.category-item {
	position: relative;
	overflow: hidden;
	border-radius: 0.9375rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

.category-item img {
	width: 100%;
	height: 14.38rem;
	object-fit: cover;
	border-radius: 0.9375rem;
	box-shadow: 2px 2px rgba(0, 0, 0, 0.219);
}

.category-item:hover {
	transform: scale(1.04);
}

.category-item:hover::after {
	background: rgba(92, 6, 140, 0.9);
}

.download-buttons {
	text-align: center;
	z-index: 2;
}

.download-buttons a {
	background: #5c068c;
	color: white;
	border: none;
	padding: 0.94rem 1.175rem;
	border-radius: 1.5625rem;
	font-size: 1.4rem;
	cursor: pointer;
	transition: transform 0.3s, background 0.3s;
	text-decoration: none;
	box-shadow: 0.1875rem 0.1875rem #5c068c63;
	width: 50%;
}

.download-buttons a:hover {
	background: linear-gradient(45deg, #BB29BB, #5c068c, #BB29BB, #5c068c);
	background-size: 300% 300%;
	animation:
		gradientSlide 3s ease infinite,
		glowPulse     1.5s ease-in-out infinite alternate,
		hueShift      4s ease-in-out infinite alternate;
	color: white;
}

@keyframes spin {
	from { transform: rotateY(0deg); }
	to   { transform: rotateY(360deg); }
}

.mobileshop {
	transform-style: preserve-3d;
    animation: spin 8s linear infinite;
	margin-right: 20px!important;
    
}

.download-buttons a {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #5c068c;
	color: white;
	border: none;
	padding: 0.94rem 1.175rem;
	border-radius: 1.5625rem;
	font-size: 1.4rem;
	cursor: pointer;
	transition: transform 0.3s, background 0.3s;
	text-decoration: none;
	box-shadow: 0.1875rem 0.1875rem #5c068c63;
	overflow: hidden;
}


.download-index-rightsection {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 1.25rem;
    position: relative;
}

@keyframes gradientAnimation {
    0% {
        background-position: 100% 50%;
    }
    100% {
        background-position: -100% 50%;
    }
}


.download-index-rightsection a:hover {
	background: linear-gradient(45deg, #BB29BB, #5c068c, #BB29BB, #5c068c);
	background-size: 300% 300%;
	animation:
		gradientSlide 3s ease infinite,
		glowPulse     1.5s ease-in-out infinite alternate,
		hueShift3      4s ease-in-out infinite alternate;
	color: white;
	font-weight: bold;
}
@keyframes hueShift3 {
	0%   { filter: hue-rotate(0deg); }
	100% { filter: hue-rotate(30deg); }
}
  

.download-index-rightsection a {
    color: white;
    border: none;
    padding: 0.64rem 4.875rem;
    border-radius: 1.0625rem;
    font-size: 1.4em;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    text-decoration: none;
    box-shadow: 0.1875rem 0.1875rem #7709b363;
    text-align: center;
    white-space: nowrap;
    background: linear-gradient(90deg, #5c068c, #bb29bb, #5c068c);
    background-size: 200% 200%;
    animation: gradientAnimation 6s ease infinite;
}

.download-index-rightsection a:hover {
    background-color: #ab6bcf !important;
    color: white;
    box-shadow: 0.1875rem 0.1875rem #360053;
	transform: scale(1.05);
}

.app-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
	margin-top: 4.75rem;
	position: relative;
}

.app-images-left {
	margin-top:-60px; 
	height:550px; 
	margin-right:-250px;
}

.app-images-right {
	height:550px;
}

.app-image {
    max-width: 100%;
    height: auto;
    margin-top: -60px;
}

.month {
	color: #A7A8AA !important;
}

.privacy-content h1,
.terms-content h1,
.policy-container h1 {
	font-size: 3rem;
	color: #5c068c;
	text-align: center;
	margin-bottom: 1.875rem;
	font-family: 'Open Sans', sans-serif;
}

.policy-container {
	width: 100%;
	max-width: 75rem;
}

.policy-container p {
	text-align: justify;
}

.privacy-content h3{
	color: #5c068c;
}

.privacy-content hr{
	border-top: 2px solid #ffffff;
}

.accordion {
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 0.3125rem;
	margin-bottom: 0.94rem;
	overflow: hidden;
}

.accordion-item {
	border-bottom: 1px solid #ddd;
}

.accordion-item:last-child {
	border-bottom: none;
}

.accordion-header {
	background-color: #ffffff7a;
	color: #5c068c;
	cursor: pointer;
	padding: 0.94rem;
	font-size: 1.1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.accordion-header:hover {
	background-color: #ab6bcf;
	color: white;
}

.accordion-header i {
	transition: transform 0.3s;
}

.accordion-header.active i {
	transform: rotate(180deg);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background-color: #ffffffd0;
	border: 1px solid #f1f1f1;
	padding: 0 0.94rem;
}

.accordion-content h4{
	color: #424242
}

.accordion-content p,
.accordion-content ul,
.accordion-content ol {
	margin: 0.94rem 0;
	font-size: 1rem;
	line-height: 1.8;
	color: #333333;
}

.accordion-content ul,
.accordion-content ol {
	margin-left: 1.25rem;
}

.accordion-content a {
	color: #5c068c;
	text-decoration: none;
}

.accordion-content a:hover {
	text-decoration: underline;
}

#anim-text {
	transition: opacity 0.5s ease-in-out;
}

.contact-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	justify-content: center;
	margin-bottom: 2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.animated-envelope {
    display: inline-block;
    animation: bounce 2.5s infinite;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 1.5rem;
}

.card {
  position: relative;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  border-left: 4px solid #8E44AD;
}

.card::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #5C068C, #8E44AD);
  border-radius: 12px;
  transform: rotate(45deg);
  transition: background 0.3s ease, transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  border-left-color: #5C068C;
}

.card:hover::after {
  background: linear-gradient(135deg, #8E44AD, #5C068C);
  transform: rotate(45deg) translate(5px, -5px);
}

.icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #8E44AD, #5C068C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
}

.card:hover .icon-wrapper {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.icon-wrapper i {
  font-size: 1.5rem;
  color: #FFFFFF;
}

.card h2 {
  font-size: 1.7rem;
  font-weight: 600;
  color: #333333;
  text-align: center;
  margin-left: 0.5rem;
  transition: color 0.3s ease;
}

.card:hover h2 {
  color: #5C068C;
}

.card p {
  font-size: 1rem;
  color: #555555;
  text-align: center;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.card:hover p {
  color: #333333;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.card ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #555555;
  transition: color 0.3s ease;
}

.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  background: #5C068C;
  border-radius: 50%;
}

.card:hover ul li {
  color: #333333;
}

.card a {
  display: inline-block;
  font-size: 1rem;
  color: #5C068C;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.card a:hover {
  color: #8E44AD;
  border-color: #8E44AD;
}

.card i, .card h2 {
  display: inline-block;
  vertical-align: middle;
}

.card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #5C068C;
  color: #ffffff;
  font-size: 1.25rem;
  border-radius: 50%;
  border: 2px solid #5C068C;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.card i:hover {
  background: #ffffff;
  color: #5C068C;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.card i:active {
  transform: scale(0.95);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.card ul li i.fas {
  width: 20px;
  height: 20px;
  font-size: 0.9rem;
  border: none;
  background: none;
  color: #8E44AD;
  box-shadow: none;
  margin-right: 0.5rem;
  transition: color 0.3s ease;
}

.card ul li i.fas:hover {
  color: #5C068C;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: #F4F1FA;
  color: #8E44AD;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.btn-icon i.fas {
  font-size: 1.25rem;
}

.btn-icon:hover {
  background: #8E44AD;
  color: #ffffff;
  border-color: #5C068C;
}


.faq-section {
	max-width: 56.25rem;
	margin: 0 auto 2.5rem;
}

.faq-section h2 {
	font-size: 2rem;
	color: #5c068c;
	margin-bottom: 1.25rem;
	text-align: center;
}

.faq-item {
	background-color: rgba(255, 255, 255, 1);
	border-radius: 0.5rem;
	box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
	margin-bottom: 0.94rem;
	padding: 0.94rem 1.25rem;
	transition: background-color 0.3s;
}

.faq-item:hover {
	background-color: #efefef;
}

.faq-question {
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	position: relative;
	padding-right: 1.56rem;
	color: #424242;
}

.faq-question::after {
	content: "\f078";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	right: 0;
	top: 0;
	font-size: 1rem;
	transition: transform 0.3s;
}

.faq-question.active::after {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s;
	font-size: 0.95rem;
	margin-top: 0.625rem;
	line-height: 1.6;
}

.faq-answer.show {
	max-height: 12.5rem;
	color: #424242;
	text-align: justify;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem 0;
  perspective: 1200px;
}

.feature {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 1rem;
  border-radius: 24px;
  background-color: #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  transform-style: preserve-3d;
  will-change: transform, box-shadow;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 2px solid #5c068c;
}

.feature:hover,
.feature:focus-within {
  transform: translateY(-12px) rotateX(3deg) rotateY(-3deg) scale(1.03);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.20);
}

.feature i {
  display: block;
  margin-bottom: 1rem;
  font-size: 3rem;
  color: #5c068c;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.6),
    0 0 16px rgba(255, 255, 255, 0.3);
  transform-style: preserve-3d;
  animation: floatIcon 3.5s ease-in-out infinite;
}

.feature h3 {
  margin: 0 0 0.75rem;
  font-size: 1.60rem;
  font-weight: 800;
  color: #5c068c;
  position: relative;
  transform: translateZ(15px);
}

.feature h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 50px;
  height: 3px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.75);
  transform: translateX(-50%);
}

.feature p {
  margin: 0.5rem 0 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #292929;
  transform: translateZ(10px);
}

.features > .feature:nth-child(3) {
  place-self: center;
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0) translateZ(20px);
  }
  50% {
    transform: translateY(-10px) translateZ(20px);
  }
}


.accordion-item:last-child .accordion-header {
	border-bottom: none;
}

.right-section {
	width: 66%;
	display: flex;
	flex-direction: column;
	padding: 2.5rem;
	overflow-y: auto;
}

.right-section .text-row {
	position: absolute;
	width: 200%;
	font-size: 4rem;
	font-weight: 800;
	color: rgba(0, 0, 0, 0.03);
	white-space: nowrap;
	animation: slide-text 30s linear infinite;
	font-family: Arial;
}

.right-section .text-row:nth-child(1) {
	top: 5%;
	left: 0%;
	animation-delay: 0s;
}

.right-section .text-row:nth-child(2) {
	top: 30%;
	left: 5%;
	animation-delay: 0s;
}

.right-section .text-row:nth-child(3) {
	top: 55%;
	left: 10%;
	animation-delay: 0s;
}

.right-section .text-row:nth-child(4) {
	top: 80%;
	left: 15%;
	animation-delay: 0s;
}

.additional-info {
	margin-top: 2.45rem;
	padding: 3.125rem 1.875rem;
	background-color: #f9f9f9;
	border-radius: 1.25rem;
	box-shadow: 0 0.9375rem 1.875rem rgba(0, 0, 0, 0.1);
	text-align: center;
	border: 0.1875rem solid white;
	color: #333;
}

.additional-info h2 {
	font-size: 2.2rem;
	font-weight: 700;
	color: #5c068c;
	margin-bottom: 2.5rem;
}

.additional-info ul {
	list-style: none;
	padding-left: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(17.5rem, 1fr));
	gap: 1.25rem;
	justify-content: center;
}

.additional-info li {
	font-size: 1.4rem;
	line-height: 1.8;
	position: relative;
	padding-left: 1.875rem;
	display: flex;
	align-items: center;
	background-color: white;
	padding: 1.25rem;
	border-radius: 0.9375rem;
	box-shadow: 0 0.375rem 0.9375rem rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.additional-info li:hover {
	transform: translateY(-0.5rem);
	box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.2);
}

.additional-info li .info-text {
	font-size: 1.1rem;
	color: #555;
	padding: 0.625rem;
}

.title-with-stamp-wrap {
	position: relative;
	display: inline-block;
}
  
.stamp {
	position: absolute;
	top: 100%;
	left: 82%;
	margin-left: 8px;
	transform: translateY(-50%) rotate(-15deg) scale(0);
	padding: 8px 16px;
	border: 3px solid #8b0000;
	border-radius: 4px;
	background: rgba(255,240,230,0.9);
	color: #8b0000;
	font-family: 'Impact', sans-serif;
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
	transform-origin: center;
	animation: stamp-drop 4s ease-out infinite;
}

@keyframes stamp-drop {
	0% {
		transform: translateY(-200%) rotate(15deg) scale(0);
		opacity: 0;
	}
	10% {
		transform: translateY(-60%) rotate(15deg) scale(1.2);
		opacity: 1;
	}
	20% {
		transform: translateY(-50%) rotate(15deg) scale(0.9);
	}
	25% {
		transform: translateY(-50%) rotate(15deg) scale(1);
	}
	100% {
		transform: translateY(-50%) rotate(15deg) scale(1);
		opacity: 1;
	}
}
  

.right-section-title-rules {
	font-size: 3rem;
	font-weight: 900;
	color: #5c068c;
	text-align: center;
	margin-bottom: 1.25rem;
	font-family: 'Open Sans', sans-serif;
}

.right-section-padding-about {
	padding: 1.875rem;
	text-align: justify;
}

.right-section-advertise-h1 {
	font-size: 3rem;
	color: #5c068c;
	font-weight: 700;
	margin-bottom: 2.5rem;
	text-align: center;
}

.right-section-advertise-p {
	font-size: 1.2rem;
	color: #666;
	line-height: 1.5;
	text-align: center;
}

.right-section2-advertise {
	padding: 0 1.875rem;
}

.right-section3-advertise {
	padding: 0 1.625rem;
	margin-top: -4.125rem;
}

.right-section-download-p-top {
	font-size: 1.5rem;
	line-height: 1.6;
	margin-bottom: 2.5rem;
	text-align: center;
	color: #555;
	margin-top: -1rem;
}

.right-section-download-p {
	font-size: 1.2rem;
	line-height: 1.6;
	margin-bottom: 2.5rem;
	text-align: center;
	color: #555;
}

.pagination {
	display: flex;
	flex-direction: row;      /* Forzamos fila */
	justify-content: center;
	align-items: center;
	gap: 0.94rem;
	white-space: nowrap;      /* Evita que se rompa en varias líneas */
	margin: 2.5rem auto;
}


.page-button {
	background-color: #5c068c;
	width:auto;
	color: white;
	padding: 0.88rem 1.5rem;
	text-decoration: none;
	border-radius: 1.875rem;
	transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
	font-size: 1rem;
	display: flex;
	align-items: center;
	gap: 0.625rem;
	box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
	position: relative;
}

.page-button::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 1.875rem;
	transition: background-color 0.3s;
}

.page-button:hover::before {
	background-color: rgba(255, 255, 255, 0.1);
}

.page-button:hover {
	background-color: #BB29BB;
	transform: translateY(-0.19rem);
	box-shadow: 0 0.375rem 0.75rem rgba(0, 0, 0, 0.15);
}

.page-button.active {
	background-color: #BB29BB;
	pointer-events: none;
	cursor: default;
	box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

.page-button.prev,
.page-button.next {
	background-color: #424242;
}

.page-button.prev:hover,
.page-button.next:hover {
	background-color: #666666;
	transform: translateY(-0.19rem);
	box-shadow: 0 0.375rem 0.75rem rgba(0, 0, 0, 0.15);
}

.privacy-content,
.terms-content {
	width: 100%;
	max-width: 56.25rem;
	margin: 0 auto;
	line-height: 1.8;
	color: #333333;
	box-sizing: border-box;
}

.privacy-content p,
.terms-content p {
	margin-bottom: 0.94rem;
	text-align: justify;
}

.privacy-content li {
	text-align: justify;
}

.policy-container-margin {
	margin:3.5rem;
}

.privacy-content strong,
.terms-content strong {
	color: #5c068c;
}

.privacy-content em,
.terms-content em {
	font-style: italic;
}

.privacy-content ul,
.privacy-content ol,
.terms-content ul,
.terms-content ol {
	margin-left: 1.875rem;
	margin-bottom: 0.94rem;
}

.privacy-content li,
.terms-content li {
	margin-bottom: 0.625rem;
}

.privacy-content a,
.terms-content a {
	color: #5c068c;
	text-decoration: none;
}

.privacy-content a:hover,
.terms-content a:hover {
	text-decoration: underline;
}

.privacy-content .important,
.terms-content .important {
	color: #d9534f;
	font-weight: bold;
}

.privacy-content .definition,
.terms-content .definition {
	font-weight: bold;
}

.terms_title {
	color: #424242!important;
}

.download-ios{
	margin-top: 20px;
}

.ad-label-ranking {
	position: absolute;
	top: 0.625rem;
	right: 0.625rem;
	background: rgba(31, 31, 31, 0.59);
	color: #fff;
	padding: 0.31rem 	0.7rem;
	font-size: 0.7rem;
	border-radius: 0.2rem;
	text-transform: uppercase;
	font-weight: bold;
	line-height: 0.9;
	font-style: italic;
	font-size:0.8rem;
}

.category-item:hover .ad-label-ranking {
    background: #000000b6;
}


.logo-ranking{
	width: 12px!important;
	height: 18px!important;
	object-fit: fill!important;
    vertical-align: middle;
}

.card-top h4{
	color: #858585;
	font-weight: 400;
	font-size: 0.9rem;
}

.features_pricing{
	margin-top: 1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
	text-align: left;
}

.features_pricing{
	font-size: 1rem;
	margin-left: -20px;
	color: #555;
}

.features_pricing li i{
	color: #5c068c;
    margin-right: 8px;
}

.features_pricing li {
	list-style: none;
}
  

.CookieBanner {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 450px;
    background: rgba(51, 51, 51, 0.95);
    color: white;
    padding: 15px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease-in-out;
	text-align: left;
}

.CookieBanner h2 {
    font-size: 15px;
    margin-bottom: 5px;
    margin-left: 10px;
}

.CookieBanner p {
    font-size: 11px;
    line-height: 1.5;
	margin-left: 10px;
	text-align: justify;
	margin-right: 10px;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 100px;
}

hr.thin {
    border: 0;
    border-top: 1px solid #888;
    margin: 0.5rem 0;
}

.acceptCookies,
.rejectCookies {
    padding: 8px 15px;
    font-size: 13px;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.acceptCookies {
    background: #28a745;
    color: white;
    width: 150px;
	font-weight: 100!important;
    border: 2px solid rgba(255, 255, 255, 0);
}

.rejectCookies {
    background: #ffffff00;
    color: white;
    font-size: 11px!important;
    font-weight: 100!important;
    margin-top: -25px;
}

.acceptCookies:hover {
    color: #28a745;
    border: 2px solid #28a745;
    background: white;
    transform: scale(1.0);
}


/* ------------------------------------------------------------- */
/* --------------------------- MEDIA --------------------------- */
/* ------------------------------------------------------------- */

@media (min-width: 1200px) and (max-width: 1400px) {
	.policy-container-margin {
	  margin:0;
	}

	.accordion-content h3 {
		font-size: 1rem!important;	
	}

	.accordion-content p, .accordion-content ul, .accordion-content ol {
		font-size: 0.9rem!important;
	}

	.privacy-content p, .privacy-content li, .terms-content p {
		font-size: 0.9rem!important;
	}

	.right-section-title-rules, .privacy-content h1, .right-section-advertise-h1, .right-s-contact h1, .right-section-padding-about h1{
		font-size:2.3rem!important;
	}

	.rules-container {
		padding: 2.125rem;
	}

	.rules-container li {
		font-size: 0.9rem!important;
	}

	.rules-container h2 {
		font-size: 1.2rem!important;
	}

	.category-grid {
		margin-bottom: 20px;
	}

	.info-card {
		width:90%;
	}

	.card {
		width: 22rem;
	}

	.card h2{
		font-size: 1.2rem;
	}

	.card p{
		font-size: 1rem;
	}

	.faq-question, .faq-answer show{
		font-size:1rem;
	}

	.app-images-left {
		height: 400px;
	}

	.app-images-right {
		height: 400px;
		margin-left: 50px;
		margin-top: -20px;
	}

	.download-index-rightsection {
		display: flex;
		justify-content: center;
		gap: 30px;
		margin-top: 1.25rem;
		position: relative;
		width: 80%;
		font-size: 14px;
	}

	.blog-content {
		gap: 2.125rem;
	}

	.blog-post h2 {
		font-size: 1.3rem;
	}

	.user-responses h3 {
		font-size: 1.1rem;
	}

	.response-label {
		font-size:1rem;
	}

	.progress{
		font-size:0.9rem!important;
	}

	.right-section-download-p-top {
		margin-bottom:1rem;
		font-size: 1.2rem;
		margin-top:-0.5rem;
	}

	.download-buttons a {
		font-size: 1.1rem;
		padding: 0.94rem 0.7rem;
	}

	.download-ios{
		margin-top: 10px;
	}

	.feature h3{
		font-size: 1.2rem;
	}
	.right-section-download-p {
		margin-bottom: 0.5rem;
	}

	.right-section-advertise-p{
		font-size: 1.1rem;
	}

	.info-card h3 {
		font-size: 1.2rem;
	}

	.info-card p, .pricing-section p {
		font-size: 1rem;
	}

	.info-card i {
		font-size: 2rem;
	}

	.additional-info h2 {
		font-size: 1.8rem;
	}

	.right-section3-advertise{
		padding: 0;
	}

	.cta-button-advertise, .button-about {
		font-size: 1.1rem;
		padding: 0.94rem 3.38rem;
	}

	.category-item {
		height:200px!important;
		width:340px!important;
	}

	.blog-post.patrocin-post img {
	height: 20rem;
	}

}


/* ---------------------------------------------------------------------------------- */
/* ------------ 1) Pantallas Extra Grandes (TVs, monitores muy amplios) ------------- */
/* ---------------------------------------------------------------------------------- */


@media (min-width: 1200px) {
	.policy-container {
		max-width: 1200px;
	}
	.category-grid,
	.blog-content,
	.rules-container,
	.privacy-content, 
	.terms-content {
		max-width: 1000px;
	}
	.cta-button-about {
		font-size: 1.1rem;
		padding: 0.75rem 1.5rem;
	  }
	  .download-index-rightsection {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-top: 1.25rem;
        position: relative;
        width: 80%;
    }
	.rules-container {
		max-width: 1000px;
	}

	.rules-container li {
		font-size: 1rem;
	}
	.blog-header h1 {
		font-size: 3rem;
	}
	.features {
		gap: 15px;
	}
	.faq-section h2 {
		font-size: 1.8rem;
	}
	.category-grid, .category-grid-bottom {
		max-width: 1000px!important;
	}

	.category-item {
		height: 250px;
	}
	.policy-container h1 {
		font-size: 3rem;
	}

	.accordion-header {
		font-size: 1rem;
		padding: 12px;
	}

	.accordion-content p,
	.accordion-content ul,
	.accordion-content ol {
		font-size: 1rem;
		margin: 12px 0;
	}
}


/* ---------------------------------------------------------------------------------- */
/* ---------- 2) Pantallas Medianas (Tablets, laptops pequeñas y medianas) ---------- */
/* ---------------------------------------------------------------------------------- */


@media (max-width: 1199px) and (min-width: 768px) {
	.main-container {
		flex-direction: row;
	}
	.right-section {
		width: 60%;
	}
	.blog-header h1 {
		font-size: 2.2rem;
	}
	.blog-post h2 {
		font-size: 1.4rem;
	}
	.cta-button,
	.button-about,
	.download-button,
	.cta-button-advertise {
		font-size: 1.1rem;
	}
	.cta-button-about {
		font-size: 1.1rem;
		padding: 0.75rem 1.5rem;
	}
	.download-index-rightsection {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
    }
}


/* ---------------------------------------------------------------------------------- */
/* ---- 3) Pantallas Pequeñas (Tablets pequeñas, iPads, móviles en horizontal)  ----- */
/* ---------------------------------------------------------------------------------- */


@media (max-width: 767px) {
	.main-container {
		flex-direction: column;
		height: auto;
	}
	.right-section {
		width: 100%;
	}
	.right-section {
		padding: 1rem;
	}
	.blog-header h1 {
		font-size: 2rem;
	}
	.blog-post h2 {
		font-size: 1.3rem;
	}
	.cta-button-advertise{
		font-size: 1rem;
	}
	.cta-button,
	.button-about,
	.download-button {
		font-size: 1rem;
		padding: 0.75rem 1.9rem;
	}
	.profile-grid {
		grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
	}
	.right-section .text-row {
		font-size: 2rem;
	}
	.info-card {
		width: 100%;
	}
	
	.right-section3-advertise {
		padding: 0 0rem;
		margin-top: -3.125rem;
	}
	.right-section-advertise-p {
		font-size: 1rem;
	}
	.cta-button-about {
		font-size: 1rem;
		padding: 0.625rem 1.25rem;
	}
	.download-index-rightsection {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

	.right-section-padding-about {
		padding: 2rem 0.5rem;
	}

	.rules-container h2 {
		font-size: 1.5rem;
	}

	.rules-container li {
		font-size: 0.95rem;
	}
	.blog-post.patrocin-post img {
		height: 300px;
	}
	.ad-label {
		font-size: 0.65rem;
		padding: 4px 8px;
	}
	.blog-header h1 {
		font-size: 1.8rem;
	}
	.blog-post h2 {
		font-size: 1.4rem;
	}
	.response-label {
		width: 80px;
		font-size: 0.9rem;
	}
	.progress-container {
		height: 25px;
	}
	.progress {
		font-size: 0.9rem;
		padding-right: 8px;
	}
	.page-button {
		padding: 10px 18px;
		font-size: 0.9rem;
	}
	.features {
        gap: 15px;
    }
	.feature h3 {
		font-size: 1.2rem;
	}

	.feature p {
		font-size: 0.9rem;
	}
	.info-card h3 { 
		font-size: 1.6rem; 
	}
    .info-card p { 
		font-size: 1rem; 
	}
    .ad-options {
        grid-template-columns: 1fr;
    }
	.additional-info {
		padding: 40px 20px;
	}

	.additional-info h2 {
		font-size: 2.2rem;
	}

	.additional-info li {
		font-size: 1.2rem;
		padding: 15px;
	}
	.faq-section h2 {
		font-size: 1.5rem;
	}
	.contact-cards {
		flex-direction: column;
		align-items: center;
	}
	.card {
		width: 100%;
		max-width: 400px;
	}
	.category-grid, .category-grid-bottom {
		gap: 15px;
		max-width: 100%;
	}

	.category-item img {
		height: 180px;
	}

	.stamp {
		position: absolute;
		top: 120%;
		left: 82%;
		margin-left: 8px;
		transform: translateY(-50%) rotate(-15deg) scale(0);
		padding: 2px 4px;
		border: 3px solid #8b0000;
		border-radius: 4px;
		background: rgba(255,240,230,0.9);
		color: #8b0000;
		font-family: 'Impact', sans-serif;
		font-size: 12px;
		text-transform: uppercase;
		letter-spacing: 1px;
		box-shadow: 0 2px 4px rgba(0,0,0,0.2);
		transform-origin: center;
		animation: stamp-drop 5s ease-out infinite;
	}

	.policy-container {
		padding: 15px;
	}

	.policy-container h1 {
		font-size: 2rem;
	}

	.accordion-header {
		font-size: 1rem;
		padding: 10px;
	}

	.accordion-content p,
	.accordion-content ul,
	.accordion-content ol {
		font-size: 0.95rem;
		margin: 10px 0;
	}
	.profile-card img {
		width: 80px;
		height: 80px;
	}

	.profile-card h3 {
		font-size: 0.9rem;
	}

	.profile-card p {
		font-size: 0.8rem;
	}

	.progress-text {
		position: absolute;
		top: 0;  
		bottom: 0;  
		display: flex;
		align-items: center; 
		font-size: 0.6rem;      
		font-weight: bold;
		pointer-events: none;     
		color: #fff;               
		transform: translateX(calc(-100% - 2px))!important;
	}
	.CookieBanner h2 {
		font-size: 12px;
		margin-bottom: 5px;
		margin-left: 10px;
	}

	.CookieBanner p {
		font-size: 10px;
		margin-bottom: 5px;
		margin-left: 10px;
	}
	.acceptCookies {
		font-size: 13px;
	}

	.rejectCookies {
		font-size: 10px!important;
	}
}


/* ---------------------------------------------------------------------------------- */
/* -------------- 4) Pantallas Extra Pequeñas (Móviles muy pequeños) ---------------- */
/* ---------------------------------------------------------------------------------- */


@media (max-width: 480px) {
	.blog-header h1 {
		font-size: 1.8rem;
	}
	.blog-header p,
	.blog-post p,
	.cta-button,
	.button-about,
	.download-button {
		font-size: 0.9rem;
	}
	.download-buttons a {
		font-size: 1.2em;
		padding: 0.75rem 1.5rem;
		width: 90%;
	}
	.cta-button-about {
		font-size: 0.9rem;
		padding: 0.5rem 1rem;
	}
	.download-index-rightsection {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .download-index-rightsection a {
        width: auto;
        font-size: 1.2rem; 
        padding: 0.75rem 1.5rem;
    }
	.app-images-left {
		height: 380px; 
	}
	
	.app-images-right {
		height: 380px;
	}
	.policy-container-margin {
		margin: 0rem;
	}
	.rules-container {
		padding: 1rem;
	}

	.rules-container h2 {
		font-size: 1.2rem;
	}

	.rules-container li {
		font-size: 0.9rem;
	}
	.blog-post.patrocin-post img {
		height: 150px;
	}
	.ad-label {
		font-size: 0.6rem;
		padding: 3px 6px;
	}
	.page-button {
		padding: 8px 16px;
		font-size: 0.8rem;
	}
	.blog-header h1 {
		font-size: 1.5rem;
	}
	.blog-post h2 {
		font-size: 1.1rem;
	}
	.blog-post h3 {
		font-size: 0.8rem;
	}
	.blog-post {
		padding: 1.2rem;
	}
	.response-label {
		width: 90px!important;
	}
	.response-label {
		font-size: 0.6rem;
	}
	.progress-container {
		height: 20px;
	}
	.progress {
		font-size: 0.8rem;
		padding-right: 5px;
	}
	.pagination {
		margin-top: 30px;
	}
	.features {
        gap: 8px;
    }

	.feature h3 {
		font-size: 1rem;
	}

	.feature p {
		font-size: 0.8rem;
	}
	.faq-section h2 {
		font-size: 1.3rem;
	}

	.faq-question {
		font-size: 1rem;
	}

	.faq-answer {
		font-size: 0.9rem;
	}
	.contact-cards {
		gap: 15px;
	}
	.card {
		width: 100%;
		max-width: none;
	}
	.category-grid, .category-grid-bottom {
		gap: 10px;
		max-width: 100%;
	}

	.category-item img {
		height: 250px;
	}

	.category-item::after {
		font-size: 0.9rem;
		padding: 6px 0;
	}
	.policy-container {
		padding: 5px;
	}
	.profile-grid {
		grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	}

	.profile-card img {
		width: 120px;
		height: 120px;
	}

	.profile-card h3 {
		font-size: 0.8rem;
	}

	.profile-card p {
		font-size: 0.8rem;
	}
	.waving-text span {
		font-size: 1.3rem!important;
	}
}
