/* Estilos para transmitir luxo e confiança */

:root {
    --color-primary: #1e6f5c;
    --color-primary-dark: #164e3f;
    --color-primary-light: #e0f0eb;
    --color-accent: #c8a97e;
    --color-accent-dark: #b39165;
    --color-accent-light: #f5f0e6;
    --color-text: #333333;
    --color-text-light: #555555;
    --color-background: #ffffff;
    --color-background-light: #f9f9f9;
    --color-border: #e0e0e0;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-background);
}

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

/* Header/Hero Section */
.hero {
    background: linear-gradient(to right, #f9f9f9, #ffffff);
    padding: 60px 0;
    border-bottom: 1px solid var(--color-border);
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-text-light);
    margin-bottom: 30px;
    line-height: 1.5;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(to right, var(--color-primary), var(--color-primary-dark));
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 10px rgba(30, 111, 92, 0.2);
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: linear-gradient(to right, var(--color-primary-dark), var(--color-primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(30, 111, 92, 0.3);
}

/* Sections */
section {
    padding: 70px 0;
    border-bottom: 1px solid var(--color-border);
}

section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--color-accent);
}

/* Storytelling Section */
.storytelling {
    background-color: var(--color-background-light);
}

.story {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    font-style: italic;
}

.story p {
    margin-bottom: 20px;
}

/* Customer Counter */
.customer-counter {
    background-color: var(--color-primary-light);
    padding: 50px 0;
    text-align: center;
}

.customer-counter h3 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 20px;
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.counter-text {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

/* Benefits Section */
.benefit-items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.benefit-item {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: flex-start;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

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

.benefit-item .icon i {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.benefit-item .text h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--color-text);
    font-weight: 600;
}

.benefit-item .text p {
    margin: 0;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Price and Guarantee */
.price-guarantee-combo {
    max-width: 600px;
    margin: 50px auto 0;
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-border);
}

.price-tag {
    margin-bottom: 20px;
}

.price-tag .original {
    display: block;
    font-size: 1.1rem;
    color: var(--color-text-light);
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price-tag .current {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.price-tag .installment {
    display: block;
    font-size: 1rem;
    color: var(--color-text-light);
}

.mini-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mini-guarantee i {
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-right: 10px;
}

.mini-guarantee p {
    margin: 0;
    font-size: 1rem;
    color: var(--color-text-light);
}

.mini-guarantee strong {
    color: var(--color-text);
}

/* Testimonials */
.testimonials {
    background-color: var(--color-background-light);
}

.testimonial-items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-item {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: flex-start;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.testimonial-item .photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
    background-color: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.testimonial-item .content .quote {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-item .content .author {
    margin: 0;
    font-size: 1rem;
    color: var(--color-text-light);
    font-weight: 600;
}

/* Expert Opinions */
.expert-opinions-section {
    background-color: white;
}

.expert-opinion {
    max-width: 800px;
    margin: 0 auto 40px;
    background-color: var(--color-background-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: flex-start;
}

.expert-opinion:last-child {
    margin-bottom: 0;
}

.expert-opinion:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.expert-opinion .photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 25px;
    flex-shrink: 0;
    background-color: var(--color-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.expert-opinion .content .quote {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.7;
    font-style: italic;
}

.expert-opinion .content .author {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: var(--color-text);
    font-weight: 600;
}

.expert-opinion .content .credentials {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Guarantee Section */
.guarantee {
    background-color: var(--color-background-light);
}

.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
}

.guarantee-box .seal {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--color-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 30px;
    flex-shrink: 0;
}

.guarantee-box .seal i {
    font-size: 2.5rem;
    color: var(--color-accent);
}

.guarantee-box .content h2 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.8rem;
    color: var(--color-text);
    font-weight: 600;
    text-align: left;
    padding-bottom: 0;
}

.guarantee-box .content h2::after {
    display: none;
}

.guarantee-box .content p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* FAQ Section */
.faq {
    background-color: white;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 20px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 20px;
}

.faq-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item .question {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 15px;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
}

.faq-item .question::before {
    content: 'Q:';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.faq-item .answer {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.7;
    padding-left: 30px;
    position: relative;
}

.faq-item .answer::before {
    content: 'A:';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent);
    font-weight: 700;
}

.faq-item .answer a {
    color: var(--color-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.faq-item .answer a:hover {
    color: var(--color-primary-dark);
    border-bottom-color: var(--color-primary-dark);
}

/* Last Call Section */
.last-call {
    background-color: var(--color-background-light);
    text-align: center;
}

.last-call h2 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta {
    margin-top: 40px;
}

.cta-large {
    font-size: 1.3rem;
    padding: 18px 40px;
}

/* Footer */
footer {
    background-color: var(--color-background-light);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--color-border);
}

.security-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.security-badges .badge {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.security-badges .badge i {
    margin-right: 8px;
    color: var(--color-primary);
}

.copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .guarantee-box .seal {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .guarantee-box .content h2 {
        text-align: center;
    }
    
    .expert-opinion {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .expert-opinion .photo {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 1.1rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 12px 25px;
    }
    
    .benefit-item, .testimonial-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .benefit-item .icon, .testimonial-item .photo {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
