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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Variáveis CSS */
:root {
    --primary: #3b4db8;
    --primary-foreground: #ffffff;
    --secondary: #8b5cf6;
    --secondary-foreground: #ffffff;
    --accent: #f59e0b;
    --accent-foreground: #ffffff;
    --background: #ffffff;
    --foreground: #1a1a1a;
    --card: #ffffff;
    --card-foreground: #1a1a1a;
    --muted: #f8fafc;
    --muted-foreground: #64748b;
    --border: #e2e8f0;
    --radius: 0.75rem;
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-glow: 0 10px 30px -10px rgba(59, 77, 184, 0.3), 0 0 40px rgba(139, 92, 246, 0.2);
    --gradient-hero: linear-gradient(135deg, #3b4db8, #8b5cf6);
    --gradient-subtle: linear-gradient(180deg, #f8fafc, #ffffff);
}

/* Utilitários */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.hidden-mobile {
    display: none;
}

@media (min-width: 640px) {
    .hidden-mobile {
        display: inline;
    }
    .container {
        padding: 0 2rem;
    }
}

/* Tipografia */
.text-accent {
    color: var(--accent);
}

/* Botões */
.btn-cta {
    display: inline-block;
    background: var(--gradient-hero);
    color: var(--primary-foreground);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.btn-hero {
    background: linear-gradient(135deg, #f97316, #f59e0b); /* degradê laranja */
}

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

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .btn-xl {
        padding: 1.5rem 3rem;
        font-size: 1.25rem;
    }
}

/* Animações */
.animate-pulse-scale {
    animation: pulseScale 2s ease-in-out infinite;
}

@keyframes pulseScale {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cards */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-glow);
}

.card-content {
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .card-content {
        padding: 2rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    background: var(--gradient-hero);
    padding: 2rem 0;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-section {
        padding: 5rem 0;
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (min-width: 640px) {
    .hero-description {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.75rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 0.875rem;
        margin-top: 1rem;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2));
    pointer-events: none;
}

/* Social Proof Section */
.social-proof-section {
    padding: 2rem 0;
    background: var(--card);
}

@media (min-width: 768px) {
    .social-proof-section {
        padding: 3rem 0;
    }
}

.stars-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .stars-container {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
}

.star {
    color: var(--accent);
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .star {
        font-size: 2rem;
    }
}

.social-proof-text {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .social-proof-text {
        font-size: 0.875rem;
    }
}

/* Objeções Section */
.objections-section {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .objections-section {
        padding: 5rem 0;
    }
}

.objections-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

@media (min-width: 640px) {
    .objections-title {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    .objections-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .objections-title {
        font-size: 1.875rem;
    }
}

.objections-card {
    margin-bottom: 2rem;
    border: 2px solid rgba(59, 77, 184, 0.1);
}

@media (min-width: 768px) {
    .objections-card {
        margin-bottom: 3rem;
    }
}

.objections-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

@media (min-width: 768px) {
    .objections-subtitle {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

.objections-list {
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .objections-list {
        margin-bottom: 2rem;
    }
}

.objection-item {
    font-size: 0.875rem;
    color: rgba(26, 26, 26, 0.8);
    padding-left: 0.75rem;
    border-left: 2px solid var(--accent);
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .objection-item {
        font-size: 1rem;
        padding-left: 1rem;
        border-left-width: 4px;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .objection-item {
        font-size: 1.125rem;
    }
}

.objections-response {
    padding: 1rem 1.5rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 0.5rem;
    border-left: 2px solid var(--accent);
}

@media (min-width: 768px) {
    .objections-response {
        padding: 1.5rem;
        border-left-width: 4px;
    }
}

.response-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--foreground);
}

@media (min-width: 768px) {
    .response-text {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .response-text {
        font-size: 1.25rem;
    }
}

/* Myths Section */
.myths-section {
    padding: 3rem 0;
    background: var(--gradient-subtle);
}

@media (min-width: 768px) {
    .myths-section {
        padding: 5rem 0;
    }
}

.myths-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary);
    line-height: 1.3;
}

@media (min-width: 640px) {
    .myths-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .myths-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .myths-title {
        font-size: 2.5rem;
    }
}

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

@media (min-width: 640px) {
    .myths-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
}

.myth-card {
    background: var(--card);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(59, 77, 184, 0.1);
    transition: all 0.3s ease;
}

.myth-card:hover {
    box-shadow: var(--shadow-glow);
}

@media (min-width: 768px) {
    .myth-card {
        padding: 1.5rem;
    }
}

.myth-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--accent);
}

@media (min-width: 768px) {
    .myth-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}

.myth-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

@media (min-width: 768px) {
    .myth-card-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
}

.myth-card-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .myth-card-text {
        font-size: 1rem;
    }
}

/* Target Section */
.target-section {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .target-section {
        padding: 5rem 0;
    }
}

.target-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary);
}

@media (min-width: 640px) {
    .target-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .target-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .target-title {
        font-size: 2.5rem;
    }
}

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

@media (min-width: 640px) {
    .target-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .target-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.target-card {
    background: var(--card);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.target-card:hover {
    border-color: var(--secondary);
}

@media (min-width: 768px) {
    .target-card {
        padding: 1.5rem;
        gap: 0.75rem;
    }
}

.target-icon {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

@media (min-width: 768px) {
    .target-icon {
        font-size: 1.5rem;
        margin-top: 0.25rem;
    }
}

.target-text {
    font-size: 0.875rem;
    color: var(--foreground);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .target-text {
        font-size: 1rem;
    }
}

/* Offer Section */
.offer-section {
    padding: 3rem 0;
    background: var(--card);
}

@media (min-width: 768px) {
    .offer-section {
        padding: 5rem 0;
    }
}

.offer-header {
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .offer-header {
        margin-bottom: 3rem;
    }
}

.offer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
    line-height: 1.3;
}

@media (min-width: 640px) {
    .offer-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .offer-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .offer-title {
        font-size: 2.5rem;
    }
}

.offer-subtitle {
    font-size: 1rem;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .offer-subtitle {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .offer-subtitle {
        font-size: 1.25rem;
    }
}

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

@media (min-width: 640px) {
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
}

.offer-card {
    background: var(--card);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(59, 77, 184, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.offer-card:hover {
    box-shadow: var(--shadow-glow);
}

@media (min-width: 768px) {
    .offer-card {
        padding: 1.5rem;
        gap: 1rem;
    }
}

.offer-icon {
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    background: var(--gradient-hero);
    color: var(--primary-foreground);
    flex-shrink: 0;
    font-size: 1.5rem;
}

@media (min-width: 768px) {
    .offer-icon {
        padding: 0.75rem;
        font-size: 2rem;
    }
}

.offer-content {
    flex: 1;
}

.offer-card-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--primary);
}

@media (min-width: 768px) {
    .offer-card-title {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
}

.offer-card-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .offer-card-desc {
        font-size: 1rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 3rem 0;
    background: rgba(248, 250, 252, 0.3);
}

@media (min-width: 768px) {
    .testimonials-section {
        padding: 5rem 0;
    }
}

.testimonials-header {
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .testimonials-header {
        margin-bottom: 3rem;
    }
}

.testimonials-label {
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .testimonials-label {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .testimonials-label {
        font-size: 1.25rem;
    }
}

.testimonials-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

@media (min-width: 640px) {
    .testimonials-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .testimonials-title {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .testimonials-title {
        font-size: 2.5rem;
    }
}

.testimonials-subtitle {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .testimonials-subtitle {
        font-size: 1rem;
        margin-top: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .testimonials-subtitle {
        font-size: 1.25rem;
    }
}

.testimonials-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--card);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(59, 77, 184, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-glow);
}

@media (min-width: 768px) {
    .testimonial-card {
        padding: 1.5rem;
    }
}

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

@media (min-width: 768px) {
    .testimonial-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
}

.testimonial-avatar img {
  width: 45px;         /* ajuste conforme o tamanho que quiser */
  height: 45px;
  border-radius: 50%;  /* deixa a imagem redonda */
  object-fit: cover;   /* evita distorção */
}

@media (min-width: 768px) {
    .testimonial-avatar {
        width: 3rem;
        height: 3rem;
    }
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--primary);
}

@media (min-width: 768px) {
    .testimonial-name {
        font-size: 1rem;
    }
}

.testimonial-stars {
    display: flex;
    gap: 0.125rem;
}

@media (min-width: 768px) {
    .testimonial-stars {
        gap: 0.25rem;
    }
}

.testimonial-stars .star {
    font-size: 0.75rem;
    color: var(--accent);
}

@media (min-width: 768px) {
    .testimonial-stars .star {
        font-size: 1rem;
    }
}

.testimonial-text {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
    white-space: pre-line;
}

@media (min-width: 768px) {
    .testimonial-text {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }
}

.testimonial-highlight {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .testimonial-highlight {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 3rem 0;
    background: var(--gradient-hero);
}

@media (min-width: 768px) {
    .pricing-section {
        padding: 5rem 0;
    }
}

.pricing-header {
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .pricing-header {
        margin-bottom: 3rem;
    }
}

.pricing-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-foreground);
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 640px) {
    .pricing-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .pricing-title {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .pricing-title {
        font-size: 2.5rem;
    }
}

.pricing-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-glow);
    max-width: 32rem;
    margin: 0 auto;
}

.pricing-content {
    padding: 2rem;
}

@media (min-width: 768px) {
    .pricing-content {
        padding: 3rem;
    }
}

.pricing-header-card {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

@media (min-width: 768px) {
    .pricing-card-title {
        font-size: 1.875rem;
    }
}

.pricing-value {
    margin-bottom: 1rem;
}

.pricing-old {
    display: block;
    font-size: 1rem;
    color: var(--muted-foreground);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.pricing-new {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

@media (min-width: 768px) {
    .pricing-new {
        font-size: 2.5rem;
    }
}

.pricing-installments {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

/* Creator Section */
.creator-section {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .creator-section {
        padding: 5rem 0;
    }
}

.creator-header {
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .creator-header {
        margin-bottom: 3rem;
    }
}

.creator-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

@media (min-width: 768px) {
    .creator-title {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .creator-title {
        font-size: 2.5rem;
    }
}

.creator-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .creator-card {
        margin-bottom: 3rem;
    }
}

.creator-content {
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .creator-content {
        padding: 2rem;
    }
}

.creator-text {
    font-size: 1rem;
    color: var(--foreground);
    margin-bottom: 1rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .creator-text {
        font-size: 1.125rem;
    }
}

.creator-highlight {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .creator-highlight {
        font-size: 1.125rem;
    }
}

/* Guarantee Section */
.guarantee-section {
    padding: 3rem 0;
    background: var(--card);
}

@media (min-width: 768px) {
    .guarantee-section {
        padding: 5rem 0;
    }
}

.guarantee-header {
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .guarantee-header {
        margin-bottom: 3rem;
    }
}

.guarantee-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

@media (min-width: 640px) {
    .guarantee-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .guarantee-title {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .guarantee-title {
        font-size: 2.5rem;
    }
}

.guarantee-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(59, 77, 184, 0.1);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .guarantee-card {
        margin-bottom: 3rem;
    }
}

.guarantee-content {
    padding: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .guarantee-content {
        padding: 2rem;
    }
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .guarantee-icon {
        font-size: 4rem;
        margin-bottom: 1.5rem;
    }
}

.guarantee-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .guarantee-subtitle {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

.guarantee-text {
    font-size: 1rem;
    color: var(--foreground);
    margin-bottom: 1rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .guarantee-text {
        font-size: 1.125rem;
    }
}

.guarantee-support {
    font-size: 1rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .guarantee-support {
        font-size: 1.125rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .faq-section {
        padding: 5rem 0;
    }
}

.faq-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .faq-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .faq-title {
        font-size: 2.5rem;
    }
}

.faq-accordion {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    background: var(--card);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(59, 77, 184, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    color: var(--accent);
}

@media (min-width: 768px) {
    .faq-question {
        font-size: 1.125rem;
        padding: 1.25rem 1.5rem;
    }
}

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

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .faq-answer p {
        font-size: 1rem;
        padding: 0 1.5rem 1.25rem;
    }
}

/* Final CTA Section */
.final-cta-section {
    padding: 3rem 0;
    background: var(--gradient-hero);
}

@media (min-width: 768px) {
    .final-cta-section {
        padding: 5rem 0;
    }
}

.final-cta-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-foreground);
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 640px) {
    .final-cta-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .final-cta-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .final-cta-title {
        font-size: 2.5rem;
    }
}

.final-cta-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (min-width: 640px) {
    .final-cta-subtitle {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .final-cta-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .final-cta-subtitle {
        font-size: 1.25rem;
    }
}

.final-cta-guarantee {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.75rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .final-cta-guarantee {
        font-size: 0.875rem;
        margin-top: 1rem;
    }
}

/* Footer */
.footer {
    padding: 1.5rem 0;
    background: var(--card);
    border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
    .footer {
        padding: 2rem 0;
    }
}

.footer-text {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

@media (min-width: 768px) {
    .footer-text {
        font-size: 0.875rem;
    }
}

/* Responsividade adicional */
@media (max-width: 639px) {
    .btn-cta {
        width: 100%;
    }
}

/* Smooth scrolling para navegação */
html {
    scroll-behavior: smooth;
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Ajuste do tamanho do "ou R$ 27,00 à vista" */
.pricing-value .pricing-installments {
  font-size: 1.125rem; /* ~18px - maior que o padrão (0.875rem) */
  line-height: 1.35;
}

@media (min-width: 768px) {
  .pricing-value .pricing-installments { font-size: 1.25rem !important; }
    font-size: 1.25rem; /* ~20px - ainda menor que .pricing-new (2.0/2.5rem) */
  }
}
/* === SLIDER RESPONSIVO COM TOUCH === */
.testimonials-slider {
  background: #fff;
  padding: 3rem 0;
  text-align: center;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
  touch-action: pan-y;
}

.carousel img {
  flex: 0 0 100%;
  width: 100%;
  height: auto;
  border-radius: 12px;
  user-select: none;
  pointer-events: none;
}

/* Botões de navegação */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 26px;
  padding: 6px 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  transition: background 0.3s ease;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.prev { left: 10px; }
.next { right: 10px; }

/* Efeito de fade nas bordas */
.slider-wrapper::before,
.slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 12%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
}

.slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #fff 25%, transparent);
}

.slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #fff 25%, transparent);
}

/* Responsivo */
@media (max-width: 480px) {
  .slider-wrapper {
    max-width: 90%;
  }
}

/* === CORREÇÃO DE BORDAS BRANCAS LATERAIS === */

/* Garante que o body ocupe toda a largura */
html, body {
  width: 100%;
  overflow-x: hidden;
  background-color: #ffffff;
}

/* Remove qualquer margem lateral global */
body {
  margin: 0;
  padding: 0;
}

/* Garante que o fundo colorido ocupe toda a largura da tela */
.hero-section,
.pricing-section,
.final-cta-section,
.footer,
.testimonials-slider {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
}

/* Ajuste do degradê do fundo */
.hero-section,
.pricing-section,
.final-cta-section {
  background: linear-gradient(135deg, #3b4db8, #8b5cf6);
}

/* Footer com mesmo padrão */
.footer {
  background: linear-gradient(135deg, #3b4db8, #8b5cf6);
  color: #fff;
}

