/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Cores do Kit */
:root {
    --azul-brilhante: #4A90E2;
    --verde-vibrante: #50E3C2;
    --amarelo-sol: #F8E71C;
    --rosa-chiclete: #F5A623;
    --roxo-magico: #9013FE;
    --branco: #FFFFFF;
    --cinza-suave: #D8D8D8;
    --cinza-escuro: #333333;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--azul-brilhante), var(--verde-vibrante));
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo h1 {
    font-family: 'Quicksand', sans-serif;
    color: var(--branco);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--branco);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.cta-button {
    background: var(--amarelo-sol);
    color: var(--cinza-escuro);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--rosa-chiclete), var(--roxo-magico));
    padding: 120px 0 80px;
    color: var(--branco);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.feature i {
    color: var(--amarelo-sol);
}

.hero-cta {
    text-align: center;
}

.cta-button-large {
    background: var(--amarelo-sol);
    color: var(--cinza-escuro);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s;
    margin-bottom: 1rem;
}

.cta-button-large:hover {
    transform: translateY(-3px);
}

.price {
    font-size: 1.1rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--amarelo-sol);
}

.hero-img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Problema Section */
.problema {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--azul-brilhante);
}

.problemas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problema-item {
    background: var(--branco);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.problema-item:hover {
    transform: translateY(-5px);
}

.problema-item i {
    font-size: 3rem;
    color: var(--rosa-chiclete);
    margin-bottom: 1rem;
}

.problema-item h3 {
    font-family: 'Quicksand', sans-serif;
    color: var(--azul-brilhante);
    margin-bottom: 1rem;
}

.problema-conclusion {
    text-align: center;
    background: var(--azul-brilhante);
    color: var(--branco);
    padding: 2rem;
    border-radius: 15px;
    font-size: 1.2rem;
}

/* Sobre Section */
.sobre {
    padding: 80px 0;
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.sobre-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.sobre-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sobre-feature i {
    color: var(--verde-vibrante);
    font-size: 1.2rem;
}

.sobre-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Conteúdo Section */
.conteudo {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--verde-vibrante), var(--azul-brilhante));
    color: var(--branco);
}

.conteudo .section-title {
    color: var(--branco);
}

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

.conteudo-item {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.conteudo-icon {
    margin-bottom: 1rem;
}

.conteudo-icon img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
}

.conteudo-item h3 {
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.conteudo-item ul {
    list-style: none;
    margin-bottom: 1rem;
}

.conteudo-item li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.conteudo-item li:before {
    content: "✨";
    position: absolute;
    left: 0;
}

/* Benefícios Section */
.beneficios {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.beneficio-categoria h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    color: var(--azul-brilhante);
    margin-bottom: 1.5rem;
    text-align: center;
}

.beneficio-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    background: var(--branco);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.beneficio-item i {
    font-size: 2rem;
    color: var(--verde-vibrante);
    flex-shrink: 0;
}

.beneficio-item h4 {
    font-family: 'Quicksand', sans-serif;
    color: var(--azul-brilhante);
    margin-bottom: 0.5rem;
}

/* Depoimentos Section */
.depoimentos {
    padding: 80px 0;
}

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

.depoimento {
    background: var(--branco);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid var(--amarelo-sol);
}

.depoimento-content {
    margin-bottom: 1.5rem;
}

.depoimento-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
}

.depoimento-author strong {
    color: var(--azul-brilhante);
    font-family: 'Quicksand', sans-serif;
}

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

/* Garantia Section */
.garantia {
    padding: 60px 0;
    background: var(--amarelo-sol);
}

.garantia-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
}

.garantia-icon i {
    font-size: 4rem;
    color: var(--azul-brilhante);
}

.garantia-text h2 {
    font-family: 'Quicksand', sans-serif;
    color: var(--azul-brilhante);
    margin-bottom: 1rem;
}

.garantia-text p {
    font-size: 1.1rem;
    color: var(--cinza-escuro);
}

/* CTA Final Section */
.cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--roxo-magico), var(--azul-brilhante));
    color: var(--branco);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.oferta {
    margin-bottom: 3rem;
}

.preco-original {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.preco-promocional {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.preco-promocional strong {
    font-size: 3rem;
    color: var(--amarelo-sol);
    font-family: 'Quicksand', sans-serif;
}

.desconto {
    background: var(--amarelo-sol);
    color: var(--cinza-escuro);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    font-weight: 700;
}

.cta-button-final {
    background: var(--amarelo-sol);
    color: var(--cinza-escuro);
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s;
    margin-bottom: 2rem;
}

.cta-button-final:hover {
    transform: translateY(-3px);
}

.cta-button-final i {
    margin-right: 0.5rem;
}

.garantias-finais {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.garantia-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.garantia-item i {
    color: var(--amarelo-sol);
}

/* Footer */
.footer {
    background: var(--cinza-escuro);
    color: var(--branco);
    padding: 40px 0 20px;
}

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

.footer-info h3 {
    font-family: 'Quicksand', sans-serif;
    color: var(--amarelo-sol);
    margin-bottom: 1rem;
}

.footer-contact h4 {
    color: var(--verde-vibrante);
    margin-bottom: 1rem;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: var(--branco);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--amarelo-sol);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    opacity: 0.7;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
    }
    
    .sobre-features {
        grid-template-columns: 1fr;
    }
    
    .garantia-content {
        flex-direction: column;
    }
    
    .garantias-finais {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

