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

:root {
    --primary-color: #FF6B35;
    --secondary-color: #F7931E;
    --dark-color: #2C3E50;
    --light-color: #ECF0F1;
    --text-color: #333;
    --white: #FFFFFF;
    --success-color: #27AE60;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 24px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

.hero p {
    font-size: 24px;
    margin-bottom: 32px;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    margin-top: 32px;
}

.about {
    padding: 80px 24px;
    background-color: var(--light-color);
}

.about h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--dark-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-text p {
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.about-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.services {
    padding: 80px 24px;
}

.services h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--dark-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 24px;
    margin: 16px;
    color: var(--primary-color);
}

.service-card p {
    margin: 0 16px 16px;
    color: var(--text-color);
}

.cta {
    background: linear-gradient(135deg, var(--dark-color) 0%, #34495E 100%);
    color: var(--white);
    padding: 80px 24px;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

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

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 48px 24px 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section h3 {
    margin-bottom: 16px;
    color: var(--primary-color);
}

.footer-section p {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 64px 24px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.loyalty-content {
    padding: 80px 24px;
}

.loyalty-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

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

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

.loyalty-text p {
    font-size: 18px;
    line-height: 1.8;
}

.benefits-section {
    margin-bottom: 64px;
}

.benefits-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 32px;
    color: var(--dark-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 16px;
}

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

.benefit-card p {
    font-size: 14px;
    color: var(--text-color);
}

.how-to-join {
    margin-bottom: 64px;
}

.how-to-join h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 32px;
    color: var(--dark-color);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step {
    text-align: center;
}

.step img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step p {
    font-size: 16px;
    line-height: 1.6;
}

.promotion-section {
    margin-bottom: 64px;
}

.promotion-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 32px;
    color: var(--dark-color);
}

.promotion-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    background: var(--light-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.promotion-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promotion-details {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promotion-details h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.promotion-details p {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.promotion-note {
    font-size: 14px;
    font-style: italic;
    color: #666;
    margin-top: 16px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 48px;
    border-radius: 12px;
    text-align: center;
}

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

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

.legal-content {
    padding: 80px 24px;
    background-color: var(--light-color);
}

.legal-box {
    background: var(--white);
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.legal-box h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.legal-box p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-box ul {
    margin-left: 24px;
    margin-bottom: 12px;
}

.legal-box ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-section {
    padding: 80px 24px;
}

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

.contact-info h2,
.contact-form h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.info-card {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 16px;
}

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

.info-card p {
    font-size: 16px;
    line-height: 1.6;
}

.info-card a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--primary-color);
}

.whatsapp-button {
    margin-top: 24px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #25D366;
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-whatsapp:hover {
    background-color: #1EBE57;
    transform: scale(1.05);
}

.contact-form {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.map-section {
    margin-top: 64px;
}

.map-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 32px;
    color: var(--dark-color);
}

.map-container {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
}

.map-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 16px;
    }

    nav ul {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }

    .about-content,
    .loyalty-intro,
    .promotion-card,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .benefits-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .about-images {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 16px;
    }

    h2 {
        font-size: 24px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 16px;
    }
}
