/* Estilos Gerais */
:root {
    --primary-color: #ff6b98;
    --secondary-color: #8a4fff;
    --accent-color: #ffca28;
    --text-color: #333333;
    --light-text: #ffffff;
    --dark-bg: #2c2c54;
    --light-bg: #f9f7ff;
    --gray-bg: #f5f5f5;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

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

section {
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
    box-shadow: 0 4px 15px rgba(255, 107, 152, 0.3);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(138, 79, 255, 0.4);
}

.btn-lg {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.logo img {
    width: 160px;   /* ajuste aqui para o tamanho desejado */
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 600;
}

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

.cta-button-small {
    display: none;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fff6fa 0%, #f0e7ff 100%);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    color: var(--dark-bg);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-image {
    flex: 1;
    position: relative;
}

.urgency-badge {
    background-color: var(--accent-color);
    color: var(--dark-bg);
    padding: 10px 15px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(255, 202, 40, 0.3);
}

.urgency-badge i {
    margin-right: 8px;
}

/* Benefícios */
.benefits {
    background-color: var(--light-bg);
}

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

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);

}

.benefit-card h3 {
    margin-bottom: 1rem;
    text-align: center;
}

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

/* Centralizar ícones dos benefícios */
.benefit-icon {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
}

.benefit-card:nth-child(2) .benefit-icon {
    background-color: var(--secondary-color);
}
.benefit-card:nth-child(3) .benefit-icon {
    background-color: #00bcd4;
}
.benefit-card:nth-child(4) .benefit-icon {
    background-color: #4caf50;
}

/* Subtítulo dos benefícios */
.benefit-subtitle {
    display: block;
    text-align: left;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ff6b98; /* Rosa da paleta do projeto */
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Ajuste para listas dos benefícios */
.benefit-card ul {
    padding-left: 1.2em;
}
.benefit-card ul li {
    margin-bottom: 0.4em;
}

/* Como Funciona */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    position: relative;
    padding: 30px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step:nth-child(2) .step-number {
    background-color: var(--secondary-color);
}

.step:nth-child(3) .step-number {
    background-color: var(--accent-color);
    color: var(--dark-bg);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.step:nth-child(2) .step-icon {
    color: var(--secondary-color);
}

.step:nth-child(3) .step-icon {
    color: var(--accent-color);
}

/* Exemplos */
.examples {
    background-color: var(--gray-bg);
}

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

.example-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.before-image, .after-image {
    width: 45%;
    position: relative;
}

.image-label {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.after-image .image-label {
    background-color: var(--secondary-color);
}

.arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.example-text {
    padding: 20px;
    border-top: 1px solid #eee;
}

.example-text h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* Depoimentos */
.testimonials {
    background-color: var(--dark-bg);
    color: var(--light-text);
}

.testimonials h2 {
    color: var(--light-text);
}

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

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.testimonial-stars {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary-color);
}

.author-info h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.author-info span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.testimonial-counter {
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
    text-align: center;
}

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

.counter-text {
    font-size: 1rem;
    opacity: 0.9;
}

/* FAQ */
.faq {
    background-color: var(--light-bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-answer {
    margin: 2%;
    padding: 0 20px 20px;
    display: none;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Formulário */
.form-section {
    background: linear-gradient(135deg, #fff6fa 0%, #f0e7ff 100%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
}

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

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--gray-bg);
    padding: 12px 15px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.file-upload-button:hover {
    background-color: #e0e0e0;
}

.file-name {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #666;
}

.form-security {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 30px 0;
    padding: 15px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
}

.form-security i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.form-security p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.form-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.price-tag {
    display: flex;
    align-items: baseline;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.price-decimal {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.price-info {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    color: #666;
}

.form-note {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
}

/* Garantias */
.guarantees {
    background-color: white;
}

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

.guarantee-card {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    background-color: var(--light-bg);
    transition: var(--transition);
}

.guarantee-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.guarantee-card:nth-child(2) .guarantee-icon {
    background-color: var(--secondary-color);
}

.guarantee-card:nth-child(3) .guarantee-icon {
    background-color: var(--accent-color);
    color: var(--dark-bg);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 60px 0 30px;
}

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


.footer-logo img {
    width: 160px;   /* ajuste aqui para o tamanho desejado */
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.footer-logo p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer h4 {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-links a {
    color: var(--light-text);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    opacity: 0.8;
}

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Responsividade */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .cta-button-small {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .benefits-grid,
    .steps,
    .examples-grid,
    .testimonials-slider,
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-counter {
        flex-direction: column;
        gap: 30px;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .form-price {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .btn-lg {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .example-images {
        flex-direction: column;
        gap: 20px;
    }
    
    .before-image, .after-image {
        width: 80%;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    
}
