:root {
--color-red:  #100ecd;
--color-red-dark: #b53d1d;
--color-yellow: #f9d233;
--color-green: #07b95d;
--color-yellow-light: #f9d233;
--color-white: #ffffff;
--color-text: #333333;
--color-text2: #ececec;
--color-text-light: #666666;
--color-bg: #f8f9fa;
--color-border: #e0e0e0;
--font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
--transition: all 0.3s ease;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: var(--font-main);
color: var(--color-text);
background-color: var(--color-white);
line-height: 1.6;
}
a {
text-decoration: none;
color: inherit;
}
.container {
width: 100%;
max-width: 1140px;
margin: 0 auto;
padding: 0 15px;
}
.section-padding {
padding: 60px 0;
}
.mt-2 { margin-top: 20px; }
.text-red { color: var(--color-red); }
.text-white { color: var(--color-white); }
.text-center { text-align: center; }
.shadow { box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.site-header {
background: var(--color-white);
box-shadow: 0 2px 10px rgba(0,0,0,0.05);
position: sticky;
top: 0;
z-index: 1000;
}
.header-inner {
display: flex;
justify-content: space-between;
align-items: center;
height: 80px;
}
.nav-list {
display: flex;
list-style: none;
gap: 25px;
}
.nav-link {
font-weight: 600;
font-size: 15px;
color: var(--color-text);
transition: var(--transition);
}
.nav-link:hover {
color: var(--color-red);
}
.dropdown {
position: relative;
}
.dropdown-menu {
display: none;
position: absolute;
top: 100%;
left: 0;
background: var(--color-white);
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
list-style: none;
min-width: 200px;
border-radius: 4px;
overflow: hidden;
}
.dropdown-menu li a {
display: block;
padding: 12px 20px;
border-bottom: 1px solid var(--color-border);
transition: var(--transition);
}
.dropdown-menu li a:hover {
background: var(--color-bg);
color: var(--color-red);
}
.dropdown.active .dropdown-menu {
display: block;
}
.mobile-toggle {
display: none;
background: none;
border: none;
font-size: 28px;
color: var(--color-red);
cursor: pointer;
}
.curved-red-hero {
background-color: var(--color-red);
color: var(--color-white);
padding: 60px 0 100px;
position: relative;
clip-path: ellipse(150% 100% at 50% 0%);
}
.curved-red-hero2 {
background-color: var(--color-yellow);
color: var(--color-white);
padding: 60px 0 100px;
position: relative;
clip-path: ellipse(150% 100% at 50% 0%);
}
.curved-red-hero3 {
background-color: var(--color-yellow);
color: var(--color-white);
padding: 100px 0;
position: relative;
clip-path: ellipse(80% 50% at 50% 50%);
}
.curved-red-hero4 {
background-color: var(--color-red);
color: var(--color-white);
padding: 100px 0;
position: relative;
clip-path: ellipse(80% 50% at 50% 50%);
}
.hero-grid {
display: grid;
grid-template-columns: 1.2fr 0.8fr;
gap: 40px;
align-items: center;
}
.hero-text h1 {
font-size: 2.5rem;
margin-bottom: 20px;
line-height: 1.2;
}
.hero-text p {
font-size: 1.1rem;
margin-bottom: 15px;
opacity: 0.95;
}
.partners {
display: flex;
gap: 15px;
margin-top: 30px;
}
.partner-placeholder {
background: rgba(255,255,255,0.2);
padding: 5px 10px;
border-radius: 4px;
font-size: 0.8rem;
font-weight: bold;
}
.coupon {
background: var(--color-white);
border-radius: 8px;
padding: 30px;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
color: var(--color-text);
}
.coupon2 {
background: var(--color-yellow);
border-radius: 8px;
padding: 30px;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
color: var(--color-text);
}
.coupon-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
border-bottom: 1px solid var(--color-border);
padding-bottom: 15px;
}
.stars {
color: var(--color-yellow);
font-size: 1.2rem;
}
.coupon h3 {
font-size: 1.8rem;
margin-bottom: 20px;
line-height: 1.3;
}
.btn {
display: inline-block;
padding: 12px 25px;
border-radius: 5px;
font-weight: bold;
text-align: center;
cursor: pointer;
transition: var(--transition);
}
.btn-secondary {
background-color: var(--color-green);
color: var(--color-text2);
width: 100%;
}
.btn-secondary:hover {
background-color: #e0a800;
}
.terms {
display: block;
font-size: 0.75rem;
color: var(--color-text-light);
text-align: center;
margin-top: 15px;
}
.bg-yellow { background-color: var(--color-yellow); }
.bg-red { background-color: var(--color-red); }
.bg-red-dark { background-color: var(--color-red-dark); }
.heading-2 {
font-size: 2rem;
margin-bottom: 25px;
color: var(--color-text);
}
.grid-2 {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
}
.article-media {
display: flex;
gap: 20px;
margin-bottom: 30px;
background: var(--color-bg);
border-radius: 8px;
overflow: hidden;
border: 1px solid var(--color-border);
}
.article-img {
flex: 0 0 250px;
}
.article-body {
padding: 20px;
display: flex;
flex-direction: column;
justify-content: center;
}
.article-body h3 {
color: var(--color-red);
margin-bottom: 10px;
}
.article-info {
font-size: 0.85rem;
color: var(--color-text-light);
margin-bottom: 10px;
}
.faq-container {
max-width: 800px;
margin: 0 auto;
}
.accordion {
margin-bottom: 10px;
border: 1px solid var(--color-border);
border-radius: 5px;
overflow: hidden;
}
.accordion-btn {
width: 100%;
text-align: left;
padding: 18px 20px;
background: var(--color-bg);
border: none;
font-size: 1.1rem;
font-weight: bold;
color: var(--color-text);
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
transition: var(--transition);
}
.accordion-btn:hover {
background: #e9ecef;
}
.accordion-content {
max-height: 0;
overflow: hidden;
background: var(--color-white);
transition: max-height 0.3s ease-out;
}
.accordion-content p {
padding: 20px;
border-top: 1px solid var(--color-border);
}
.site-footer {
background: #222;
color: #ccc;
padding: 40px 0;
text-align: center;
border-top: 5px solid var(--color-red);
}
@media (max-width: 992px) {
.hero-grid, .grid-2 {
grid-template-columns: 1fr;
}
.curved-red-hero {
clip-path: ellipse(200% 100% at 50% 0%);
}
.article-media {
flex-direction: column;
}
.article-img {
flex: auto;
height: 200px;
}
}
@media (max-width: 768px) {
.nav-list {
display: none;
flex-direction: column;
position: absolute;
top: 80px;
left: 0;
width: 100%;
background: var(--color-white);
padding: 20px;
box-shadow: 0 10px 10px rgba(0,0,0,0.1);
gap: 15px;
}
.nav-list.active {
display: flex;
}
.mobile-toggle {
display: block;
}
.dropdown-menu {
position: static;
box-shadow: none;
border-left: 2px solid var(--color-red);
margin-left: 10px;
margin-top: 10px;
}
}
.grid-4 {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 20px;
margin-top: 30px;
}
.grid-4 .gallery-img {
width: 100%;
height: 200px;
border-radius: 8px;
transition: transform 0.3s ease;
}
.grid-4 .gallery-img:hover {
transform: translateY(-5px);
}
.bingo-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
gap: 8px;
margin-top: 20px;
}
.grid-cell {
aspect-ratio: 1;
display: flex;
align-items: center;
justify-content: center;
border-radius: 8px;
font-weight: bold;
cursor: pointer;
transition: all 0.2s;
font-size: 0.9rem;
background: #e0e0e0;
color: #333;
}
.grid-cell:hover {
transform: scale(1.15);
z-index: 2;
box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.cell-sold { background: var(--color-red); color: white; }
.cell-paid { background: #00b894; color: white; box-shadow: 0 0 10px rgba(0, 184, 148, 0.4); }
.modal-overlay {
position: fixed; top: 0; left: 0; width: 100%; height: 100%;
background: rgba(0,0,0,0.8); backdrop-filter: blur(5px);
z-index: 9999; display: none;
justify-content: center; align-items: center;
opacity: 0; transition: opacity 0.3s;
}
.modal-overlay.active { opacity: 1; }
.modal-content {
background: white; padding: 30px; border-radius: 12px;
width: 90%; max-width: 400px; text-align: center;
transform: translateY(20px); transition: transform 0.3s;
position: relative; box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.modal-overlay.active .modal-content { transform: translateY(0); }
.modal-close {
position: absolute; top: 15px; right: 15px; background: none;
border: none; font-size: 1.8rem; cursor: pointer; color: #333;
}
.whatsapp-container {
position: fixed;
bottom: 30px;
right: 30px;
display: flex;
align-items: center;
text-decoration: none;
z-index: 10000;
transition: transform 0.3s ease;
}
.whatsapp-container:hover {
transform: scale(1.05);
}
.whatsapp-label {
background: white;
color: #333;
padding: 8px 15px;
border-radius: 20px 5px 5px 20px;
margin-right: -10px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
font-weight: bold;
font-size: 14px;
border: 1px solid #eee;
pointer-events: none;
}
.whatsapp-button {
width: 60px;
height: 60px;
background-color: #25d366;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
position: relative;
}
.whatsapp-icon {
width: 32px;
height: 32px;
fill: white;
}
.pulse-ring {
position: absolute;
width: 100%;
height: 100%;
background-color: #25d366;
border-radius: 50%;
z-index: -1;
animation: pulse-effect 2s infinite;
}
@keyframes pulse-effect {
0% { transform: scale(1); opacity: 0.7; }
100% { transform: scale(1.6); opacity: 0; }
}
@media (max-width: 600px) {
.whatsapp-label { display: none; }
.whatsapp-container { bottom: 20px; right: 20px; }
}