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

:root {
    /* Cores baseadas no logo */
    --primary-coral: #FF6B8A;
    --primary-turquoise: #4ECDC4;
    --primary-yellow: #FFD93D;
    --secondary-pink: #FF8FA3;
    --secondary-blue: #6BCCC4;
    --accent-orange: #FF9F43;
    
    /* Cores neutras */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;
    --black: #212529;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--primary-coral) 0%, var(--primary-turquoise) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary-yellow) 0%, var(--accent-orange) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(255, 107, 138, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    
    /* Tipografia */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Fredoka', cursive;
    
    /* Sombras */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-medium);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-cta {
    background: var(--gradient-secondary);
    color: var(--white);
    box-shadow: var(--shadow-medium);
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-heavy);
}

.btn-large {
    font-size: 1.1rem;
    padding: 1.2rem 2.5rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition-medium);
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    height: 50px;
    width: auto;
}

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

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-coral);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-medium);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-nav {
    background: var(--gradient-primary);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-light);
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.cta-nav::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    transition: all var(--transition-medium);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background: var(--primary-coral);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--primary-turquoise);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: var(--primary-yellow);
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    background: var(--accent-orange);
    top: 10%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

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

.hero-title {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.colored-text-full-v2 {
    color: var(--primary-coral); /* Corrigido para coral */
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-coral);
    font-size: 1.2rem;
}

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

.cta-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-style: italic;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.kit-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    transition: transform var(--transition-medium);
}

.kit-image:hover {
    transform: scale(1.02);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--light-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center; /* Centraliza o grid */
}

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

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

.benefit-card h4 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--medium-gray);
    font-size: 1rem;
}

.link-personalizacao {
    margin-top: 1rem;
    display: block;
}

/* Benefits Showcase */
.benefits-showcase {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.showcase-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.showcase-number {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.showcase-content h3 {
    margin-top: 0;
    color: var(--primary-coral);
}

.showcase-content p {
    font-size: 1rem;
    color: var(--medium-gray);
}

/* CTA Section */
.cta-section {
    background: var(--primary-turquoise);
    color: var(--white);
    padding: 5rem 0;
}

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

.cta-title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
}

.cta-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-feature i {
    color: var(--primary-yellow);
}

.cta-action {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.price-box {
    margin-bottom: 1.5rem;
    width: 100%;
}

.price-label-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-coral);
}

.price-label {
    font-size: 0.9rem;
    font-weight: 600;
}

.price-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    color: var(--dark-gray);
    font-family: var(--font-secondary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.old-price {
    font-size: 1.5rem;
    color: var(--medium-gray);
    text-decoration: line-through;
    margin-right: 1rem;
}

.currency {
    font-size: 2rem;
    margin-right: 0.5rem;
}

.amount {
    font-size: 3.5rem;
    color: var(--primary-coral);
}

.period {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--medium-gray);
    margin-left: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.badge i {
    color: var(--primary-turquoise);
}

.refund-policy {
    font-size: 0.8rem;
    color: var(--medium-gray);
    margin-top: 1rem;
    padding: 0 1rem;
}

.refund-policy i {
    color: var(--accent-orange);
    margin-right: 0.3rem;
}

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

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

.testimonial-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.stars {
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1rem;
    color: var(--dark-gray);
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.author-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--dark-gray);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--light-gray);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    filter: brightness(0) invert(1); /* Logo branco para fundo escuro */
    height: 40px;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    color: var(--primary-coral);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-column li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-column li i {
    margin-right: 0.5rem;
    color: var(--primary-turquoise);
}

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

.social-link {
    color: var(--light-gray);
    font-size: 1.5rem;
    transition: color var(--transition-fast);
}

.social-link:hover {
    color: var(--primary-coral);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--medium-gray);
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1; /* Move a imagem para cima no mobile */
        margin-bottom: 2rem;
    }

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

    .hero-features {
        justify-content: center;
        align-items: center;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .cta-features {
        align-items: center;
    }

    .benefits-showcase {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-links {
        gap: 2rem;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 0;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-bottom: 2rem;
    }

    .hero-content {
        padding-top: 6rem;
    }

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

    .benefits-showcase {
        grid-template-columns: 1fr;
    }
    
    /* CORREÇÃO DE CENTRALIZAÇÃO DO PREÇO NO MOBILE - PRIORIDADE MÁXIMA */
    .cta-action {
        /* Garante que o container do preço e CTA esteja centralizado */
        width: 100% !important;
        max-width: 400px !important; 
        margin: 0 auto !important;
        padding: 1.5rem !important;
    }

    .price-box {
        /* Garante que o bloco de preço em si esteja centralizado */
        width: 100% !important;
        margin: 0 auto !important;
    }

    .btn-cta {
        /* Garante que o botão CTA principal esteja centralizado */
        width: 100% !important;
        max-width: 350px !important;
        margin: 0 auto !important;
    }
    
    .price-value {
        /* Força o alinhamento central de todos os itens de preço */
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .price-value .period {
        margin-left: 0 !important;
        margin-top: 5px !important;
    }
    
    .old-price {
        margin-right: 0 !important;
        margin-bottom: 5px !important;
    }
    
    .price-label-group {
        justify-content: center !important;
    }
    
    .trust-badges {
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    .trust-badges {
        flex-direction: column;
        gap: 0.5rem;
    }
}
