<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
*  Vida Sana Natural - CSS Styles
*  Colors:
*  - Background gradient: #5633FF to #FFB347
*  - Accent color: #00F5C3
*  - Text colors: #1C1C1C and #FFFFFF
*  Fonts:
*  - Headings: Montserrat Bold
*  - Body: Open Sans Regular
*/

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #1C1C1C;
    line-height: 1.6;
    background: linear-gradient(135deg, #5633FF 0%, #FFB347 100%);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #5633FF;
    transition: color 0.3s ease;
}

a:hover {
    color: #00F5C3;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

section {
    padding: 4rem 0;
    position: relative;
}

section:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.95);
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
    margin: 2rem 0;
}

section:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.85);
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
    margin: 2rem 0;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #00F5C3;
    color: #1C1C1C;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 245, 195, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #5633FF;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(86, 51, 255, 0.4);
}

.btn-cookie {
    padding: 0.5rem 1.5rem;
    background-color: #00F5C3;
    color: #1C1C1C;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie:hover {
    background-color: #5633FF;
    color: #FFFFFF;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-list li {
    margin-left: 2rem;
}

.nav-list a {
    color: #1C1C1C;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #5633FF;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #1C1C1C;
    transition: all 0.3s ease;
}
.thanks-section {
    height: 60vh;
    display: flex;
    align-items: center;
}
.policy-section {
    margin-top: 160px !important;
}
.thanks-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    background-image: url('../img/jECJVG.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(86, 51, 255, 0.8) 0%, rgba(255, 179, 71, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #FFFFFF;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.company-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: rgba(86, 51, 255, 0.1);
    border-radius: 10px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    position: relative;
}

.service-card:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url('../img/h75L0Q.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
}

.service-card:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url('../img/IU6lyN.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
}

.service-card:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url('../img/GW3wTZ.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.7;
}

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

.service-content {
    padding: 2rem;
    padding-top: 170px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.price {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.5rem 1.5rem;
    background-color: #00F5C3;
    color: #1C1C1C;
    font-weight: 700;
    font-size: 1.5rem;
    border-radius: 50px;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-placeholder {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 245, 195, 0.2);
    border-radius: 50%;
}

/* Testimonials Section */
.testimonial-slider {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.5s ease;
}

.testimonial-slide:nth-child(1) {
    position: relative;
    opacity: 1;
}

.testimonial-content {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.author-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
}

.author-location {
    font-size: 0.9rem;
    color: #666;
}

/* Form Section */
.form-section {
    background-color: rgba(255, 255, 255, 0.95);
}

.order-form, .contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #5633FF;
    outline: none;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
}

.required {
    color: #FF3356;
}

/* FAQ Section */
.faq-item {
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: hidden;
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: block;
    padding: 1rem;
    background-color: #FFFFFF;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-toggle:checked + .faq-question {
    border-radius: 5px 5px 0 0;
}

.faq-toggle:checked + .faq-question::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: #FFFFFF;
    transition: max-height 0.3s ease;
    border-radius: 0 0 5px 5px;
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 500px;
    padding: 1rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Trust Section */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-card {
    text-align: center;
    padding: 2rem;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.map-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
.site-footer {
    background-color: rgba(28, 28, 28, 0.95);
    color: #FFFFFF;
    padding: 4rem 0 2rem;
    margin-top: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-logo-img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-description {
    margin-bottom: 1.5rem;
}

.footer-title {
    margin-bottom: 1.5rem;
    color: #00F5C3;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #FFFFFF;
    transition: color 0.3s ease;
}

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

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: #00F5C3;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(28, 28, 28, 0.95);
    color: #FFFFFF;
    padding: 1rem 0;
    z-index: 9999;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cookie-content p {
    margin-right: 2rem;
}

.cookie-content a {
    color: #00F5C3;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }
    
    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: #FFFFFF;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .menu-toggle:checked ~ .nav-list {
        max-height: 500px;
    }
    
    .nav-list li {
        margin: 0;
        text-align: center;
    }
    
    .nav-list a {
        display: block;
        padding: 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    section:nth-child(odd),
    section:nth-child(even) {
        clip-path: none;
        margin: 1rem 0;
    }
    
    .service-card,
    .benefit-card,
    .trust-card {
        padding: 1.5rem;
    }
} </pre></body></html>