/* Base Styles */
:root {
    --primary-color: #1e3a8a;
    --primary-light: #2563eb;
    --secondary-color: #94a3b8;
    --accent-color: #f59e0b;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --border-radius: 8px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #f8fafc;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-light);
    color: var(--light-color);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-whatsapp {
    background-color: #25d366;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
}

/* Header Styles */
header {
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.logo-text {
    color: var(--light-color);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
}

.company-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

nav ul li a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.pexels.com/photos/4489733/pexels-photo-4489733.jpeg?auto=compress&cs=tinysrgb&w=1260');
    background-size: cover;
    background-position: center;
    color: var(--light-color);
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 80px 0;
    text-align: center;
}

.features h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--dark-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.feature-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--dark-color);
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: #f1f5f9;
}

.products h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.category {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.category:hover {
    transform: scale(1.03);
}

.category img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.category:hover img {
    filter: brightness(80%);
}

.category h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(30, 58, 138, 0.8);
    color: var(--light-color);
    padding: 15px;
    margin: 0;
    text-align: center;
    font-size: 18px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--light-color);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Loyalty Preview Section */
.loyalty-preview {
    padding: 80px 0;
    background-color: var(--light-color);
}

.loyalty-preview .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.loyalty-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.loyalty-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.loyalty-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
    height: auto;
}

/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo .logo {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-light);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--light-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    margin-bottom: 15px;
}

.contact-info li i {
    margin-right: 10px;
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.company-info p {
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
}

/* Page Banner */
.page-banner {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 60px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* Loyalty Program Page */
.loyalty-program {
    padding: 80px 0;
}

.program-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.program-intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.program-intro p {
    font-size: 18px;
}

.program-steps {
    max-width: 800px;
    margin: 0 auto 60px;
}

.step {
    display: flex;
    margin-bottom: 40px;
}

.step-icon {
    flex: 0 0 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 25px;
}

.step-icon i {
    font-size: 30px;
    color: var(--light-color);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.benefits {
    margin-bottom: 60px;
}

.benefits h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.levels h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.levels-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.level {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.level:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.level-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.level-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.level-icon.bronze {
    background-color: #cd7f32;
}

.level-icon.silver {
    background-color: #c0c0c0;
}

.level-icon.gold {
    background-color: #ffd700;
}

.level-icon i {
    color: var(--light-color);
    font-size: 20px;
}

.level h3 {
    font-size: 24px;
    color: var(--dark-color);
}

.level ul {
    margin-bottom: 20px;
}

.level ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.level ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success-color);
}

.level-requirement {
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin-top: 20px;
}

.signup-cta {
    text-align: center;
    max-width: 800px;
    margin: 60px auto 0;
    background-color: #f1f5f9;
    padding: 40px;
    border-radius: var(--border-radius);
}

.signup-cta h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.signup-cta p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Terms & Privacy Pages */
.terms-content, .privacy-content {
    padding: 60px 0;
}

.terms-section, .privacy-section {
    max-width: 800px;
    margin: 0 auto;
}

.terms-section h2, .privacy-section h2 {
    color: var(--primary-color);
    font-size: 24px;
    margin: 30px 0 15px;
}

.terms-section p, .privacy-section p {
    margin-bottom: 15px;
}

.privacy-section ul {
    margin: 0 0 20px 20px;
    list-style: disc;
}

.privacy-section ul li {
    margin-bottom: 10px;
}

.last-update {
    max-width: 800px;
    margin: 40px auto;
    font-style: italic;
    color: var(--secondary-color);
}

.terms-cta, .privacy-cta {
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
    background-color: #f1f5f9;
    padding: 30px;
    border-radius: var(--border-radius);
}

.terms-cta p, .privacy-cta p {
    margin-bottom: 20px;
    font-size: 18px;
}

/* Contact Page */
.contact-content {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-item .icon {
    flex: 0 0 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.info-item .icon i {
    color: var(--light-color);
    font-size: 20px;
}

.info-item .details {
    flex: 1;
}

.info-item .details h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.info-item .details p {
    color: var(--dark-color);
}

.whatsapp-cta {
    margin-top: 30px;
}

.contact-form {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.contact-form h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-check input {
    margin-right: 10px;
}

.map-section {
    margin-bottom: 60px;
}

.map-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-section {
    margin-bottom: 40px;
}

.faq-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.faq-item {
    margin-bottom: 15px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #f1f5f9;
}

.faq-question h3 {
    font-size: 18px;
    margin: 0;
}

.toggle-icon {
    font-size: 20px;
    font-weight: 700;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-question.active {
    background-color: #f1f5f9;
}

.faq-answer p {
    padding-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .container {
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .loyalty-preview .container {
        grid-template-columns: 1fr;
    }
    
    .loyalty-content {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo-container {
        margin-bottom: 20px;
    }
    
    nav {
        width: 100%;
    }
    
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 20px 0;
    }
    
    nav ul.show {
        display: flex;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    
    .feature-grid,
    .benefits-grid,
    .levels-container {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        margin-bottom: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 30px;
    }
    
    .features h2,
    .products h2,
    .benefits h2,
    .levels h2 {
        font-size: 28px;
    }
    
    .product-categories {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .map-container iframe {
        height: 350px;
    }
}