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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

header {
    background-color: #fff;
    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: 15px 20px;
}

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

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #C77C82;
}

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

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #C77C82;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8EC 100%);
}

.hero-content {
    padding: 0 20px;
}

.hero h1 {
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #1fa855;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.servicos {
    padding: 80px 0;
    background-color: #fff;
}

.servicos h2 {
    text-align: center;
    font-size: 40px;
    color: #333;
    margin-bottom: 50px;
}

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

.servico-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.servico-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.servico-card h3 {
    padding: 20px 20px 10px;
    font-size: 24px;
    color: #C77C82;
}

.servico-card p {
    padding: 0 20px 20px;
    color: #666;
}

.fidelidade-destaque {
    background: linear-gradient(135deg, #C77C82 0%, #E8B4B8 100%);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.fidelidade-destaque h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.fidelidade-destaque p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn-secondary {
    display: inline-block;
    background-color: #fff;
    color: #C77C82;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contato {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contato h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #333;
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contato-info h3 {
    color: #C77C82;
    font-size: 28px;
    margin-bottom: 20px;
}

.contato-info p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.btn-whatsapp-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 20px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-large:hover {
    background-color: #1fa855;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.contato-form h3 {
    color: #C77C82;
    font-size: 28px;
    margin-bottom: 20px;
}

.contato-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contato-form input,
.contato-form textarea {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contato-form input:focus,
.contato-form textarea:focus {
    outline: none;
    border-color: #C77C82;
}

.btn-primary {
    background-color: #C77C82;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #b06870;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(199, 124, 130, 0.3);
}

footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-info h4 {
    color: #E8B4B8;
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-info p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #ccc;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #E8B4B8;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 14px;
}

.page-hero {
    background: linear-gradient(135deg, #C77C82 0%, #E8B4B8 100%);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

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

.fidelidade-content {
    padding: 80px 0;
}

.fidelidade-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.fidelidade-intro img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.fidelidade-text h2 {
    color: #C77C82;
    font-size: 36px;
    margin-bottom: 20px;
}

.fidelidade-text p {
    color: #666;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.fidelidade-beneficios {
    margin-bottom: 80px;
}

.fidelidade-beneficios h2 {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 50px;
}

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

.beneficio-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.beneficio-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C77C82 0%, #E8B4B8 100%);
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.beneficio-card h3 {
    color: #333;
    font-size: 22px;
    margin-bottom: 15px;
}

.beneficio-card p {
    color: #666;
    line-height: 1.6;
}

.fidelidade-premios {
    margin-bottom: 80px;
}

.fidelidade-premios h2 {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 50px;
}

.premios-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.premio-item {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: #fff;
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.premio-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.premio-pontos {
    background: linear-gradient(135deg, #C77C82 0%, #E8B4B8 100%);
    color: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    white-space: nowrap;
}

.premio-desc h4 {
    color: #333;
    font-size: 20px;
    margin-bottom: 5px;
}

.premio-desc p {
    color: #666;
    font-size: 16px;
}

.fidelidade-vantagens {
    margin-bottom: 80px;
}

.fidelidade-vantagens h2 {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 50px;
}

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

.vantagem-item {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.vantagem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.vantagem-item h3 {
    padding: 20px 20px 10px;
    color: #C77C82;
    font-size: 20px;
}

.vantagem-item p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
}

.fidelidade-cta {
    background: linear-gradient(135deg, #FFF5F7 0%, #FFE8EC 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 60px;
}

.fidelidade-cta h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.fidelidade-cta p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.fidelidade-regras {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.fidelidade-regras h3 {
    color: #C77C82;
    font-size: 28px;
    margin-bottom: 20px;
}

.fidelidade-regras ul {
    list-style-position: inside;
    color: #666;
    line-height: 2;
}

.fidelidade-regras ul li {
    margin-bottom: 10px;
}

.fidelidade-regras a {
    color: #C77C82;
    text-decoration: none;
}

.fidelidade-regras a:hover {
    text-decoration: underline;
}

.legal-content {
    padding: 60px 0;
    background-color: #fff;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    color: #C77C82;
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-text h2:first-of-type {
    margin-top: 0;
}

.legal-text h3 {
    color: #333;
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-text ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-text ul li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-text strong {
    color: #333;
}

.legal-back {
    text-align: center;
    margin-top: 60px;
}

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

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

    .hero {
        grid-template-columns: 1fr;
        padding: 40px 0;
    }

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

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

    .hero-image img {
        height: 300px;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
    }

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

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

    .fidelidade-intro {
        grid-template-columns: 1fr;
    }

    .fidelidade-intro img {
        height: 300px;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
    }

    .premio-item {
        flex-direction: column;
        text-align: center;
    }

    .vantagens-grid {
        grid-template-columns: 1fr;
    }

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