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

@font-face {
  font-family: 'Agrandir';
  src: url('Agrandir-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
    font-family: 'Eastman Grotesque';
    src: url('EastmanGrotesque-Bold.woff2') format('woff2'),
         url('EastmanGrotesque-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Estado normal */
.header .logo {
    color: #ffffff; /* cor inicial */
    transition: color 0.3s ease;
	text-align: center;
}

/* Quando o header recebe .scrolled */
.header.scrolled .logo {
    color: #000000; /* nova cor ao scrollar */
}

/* Estado normal */
.header .nav-link {
    color: #ffffff; /* cor inicial */
    transition: color 0.3s ease;
}

/* Quando o header recebe .scrolled */
.header.scrolled .nav-link {
    color: #000000; /* nova cor ao scrollar */
}


:root {
    /* Cores principais */
    --color-black: #0a0a0a;
    --color-white: #fafafa;
    --color-emerald: #10b981;
    --color-emerald-dark: #059669;
    --color-gold: #fbbf24;
    --color-gray-100: #f5f5f5;
    --color-gray-200: #e5e5e5;
    --color-gray-300: #d4d4d4;
    --color-gray-700: #404040;
    --color-gray-800: #262626;
	--gray: #888899;
    --white: #ffffff;
	--muted: rgba(231, 238, 255, .75);
    --line: rgba(255, 255, 255, .08);
    
    /* Tipografia */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Sombras */
    --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 8px 24px rgba(0, 0, 0, 0.15);
	  
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(233, 127, 19, 0.4);
    --shadow-purple: 0 8px 30px rgba(117, 34, 126, 0.3);
    
    /* Transições */
    --transition: all 0.3s ease;
	
	--gradient-primary: linear-gradient(135deg, #75227e 0%, #702dfa 100%);
	--primary-purple: #7c3bedf7;
	
	--font-title: 'Poppins', sans-serif;
	--font-text:'Poppins', sans-serif;
}

body {
    font-family: var(--font-title);
    color: var(--color-black);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 1rem 0;
}

.header.scrolled {
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
}

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

.logo {
    font-family: var(--font-text);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gray-700);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--color-gray-700);
    text-decoration: none;
    font-weight: 500;
	font-size: 20px;
    transition: var(--transition);
	font-family: var(--font-title);
}

.nav-link:hover {
    color: var(--color-gray-700);
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
	font-family: var(--font-title);
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: #004aad;
    color: white;
}

.btn-primary-final {
    background: #fd7812;
    color: white;
}

.btn-primary:hover {
    background: #004aad;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fd7812;
    border: 2px solid #fd7812;
}

.btn-secondary:hover {
    background: #fd7812;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #7c3bedf7;
    border: 2px solid #7c3bedf7;
}

.btn-outline:hover {
    background: #7c3bedf7;
    color: white;
}

.btn-accent {
    background: linear-gradient(90deg, #fed7aa 0, #fd7812 45%, #ea580c 100%);
    color: #fff;
}

.cta-apple {
    text-align: center;
    margin: 12px auto 8px;
    max-width: 560px;
    padding: 0 8px;
}

.preco-card-payments {
    margin: 12px auto 4px;
    text-align: center;
}

.preco-card-payments {
    margin: 12px auto 4px;
    text-align: center;
}

.cta-apple-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: linear-gradient(90deg, #fed7aa 0, #fd7812 45%, #ea580c 100%);
    color: #0b0d12;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: .2px;
    font-size: clamp(16px, 3.8vw, 20px);
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .32), 0 12px 28px rgba(245, 158, 11, .24);
	transition: transform .16s ease, filter .16s ease, box-shadow .16s ease;
}

.preco-card-urgency {
    margin: 10px auto 2px;
    max-width: 560px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(245, 158, 11, .12);
    border: 1px solid rgba(245, 158, 11, .32);
    text-align: center;
    font-size: 12px;
    color: rgba(252, 211, 77, .96);
}
	
.cta-apple-sub {
    margin: 8px 0 0;
    font-size: clamp(12px, 2.8vw, 14px);
    color: var(--muted);
}

.btn-accent:hover {
    background: #fd7812;
    transform: scale(1.05);
}

.btn-lg {
    padding: 20px;
    font-size: 18px;
}

.btn-icon {
    font-size: 1.25rem;
}

/* Video Section */
.video-section {
    background: var(--color-white);
}

.video-content {
    max-width: 56rem;
    margin: 0 auto;
}

.section-title {
    font-family:var(--font-text);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #0f172a;
}

.section-subtitle {
    text-align: center;
    color: var(--color-gray-700);
    font-size: 20px;
    margin-bottom: 2rem;
	font-family: var(--font-title);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-strong);
    border: 1px solid var(--color-gray-200);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Hero Section */
.hero {
    background: #1d1d1f;
}

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

.degrade-txt{
    background: linear-gradient(90deg, #fed7aa 0, #fd7812 45%, #ea580c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title {
    font-family: var(--font-text);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
	text-align: center;
	color:white;
}

.hero-subtitle {
    font-size: 1.25rem;
	color:white;
	text-align:center;
    margin-bottom: 2rem;
    line-height: 1.8;
	font-family: var(--font-title);
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 1rem;
	margin-top: 30px;
	margin-bottom: 30px;
}

.social-proof {
    padding-top: 2rem;
    border-top: 1px solid var(--color-gray-200);
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
	color:#ffc105;
    margin-bottom: 0.5rem;
}

.stars {
    color: var(--color-gold);
    font-size: 1.25rem;
}

.rating-text {
    font-weight: 600;
    color: var(--color-gray-700);
}

.users-count {
    color: var(--color-gray-700);
    font-size: 0.875rem;
}

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

.hero-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: var(--shadow-strong);
}

/* Benefits Section */
.benefits {
    padding: 6rem 0;
    background: var(--color-gray-100);
}

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

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

.benefit-card {
    background: black;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

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

.benefit-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 0.75rem;
	color:white;
	font-family:var(--font-text);
}

.benefit-description {
    color: white;
    line-height: 1.7;
	font-family: var(--font-title);
}

/* Gallery Section */
.gallery {
}

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

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

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.image-container {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.image-label {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgb(0 0 0 / 23%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-title {
    font-size: 1.25rem;
    font-weight: 600;
	color:#004aad;
    margin-bottom: 0.5rem;
}

.gallery-description {
	color:#270c58;
}

.gallery-footer {
    text-align: center;
    margin-top: 3rem;
	margin-bottom: 10px;
    font-size: 1.125rem;
	font-weight: bold;
	padding: 10px;
    border-radius: 20px;
    background: linear-gradient(to right, hsl(221deg 83% 53% / 67%), hsl(262deg 83% 58% / 97%), hsl(158deg 64% 52%));
    color: #fff;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
    padding: var(--section-padding);
    background: var(--gray-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

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

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background:#fd7812;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.testimonial-info strong {
    display: block;
    color: #004aad;
}

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

.author-name {
    font-weight: 600;
    color: var(--color-black);
}

.author-role {
    font-size: 0.875rem;
    color: var(--color-gray-700);
}

/* Pricing Section */
.pricing {
    background: black;
	font-family: var(--font-title);
	font-size:18spx;
}

.launch-badge {
    display: inline-block;
    background: #fd7812;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    margin-top: 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
	border-radius: 20px;
    border: 1px solid var(--line);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
    margin-bottom: 4rem;
}

.pricing-card {
    background: radial-gradient(120% 120% at 100% 0, rgba(245, 158, 11, .06) 0, rgba(0, 0, 0, 0) 36%),
	linear-gradient(180deg, #0b0d12, #0a0e16);
    border: 2px solid var(--line);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, hsl(221deg 83% 53% / 67%), hsl(262deg 83% 58% / 97%), hsl(158deg 64% 52%));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.plan-name {
    font-size: 1.75rem;
    font-weight: 700;
	color:#7c3bedf7;
    margin-bottom: 0.5rem;
}

.plan-description {
	color:#270c58;
    margin-bottom: 1.5rem;
}

.plan-price {
    margin-bottom: 2rem;
	margin-top: 35px;
}

.price-old {
    display: block;
    text-decoration: line-through;
    color: var(--color-gray-700);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.price-current {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: #ff751f;
}

.price-current::before {
    content: 'R$ ';
    font-size: 1.5rem;
}

.hero-logo {
    display: block;
    margin: 0 auto 1.5rem auto; /* centraliza e dá espaço embaixo */
    width: 350px;
    height: auto; /* evita distorção */
}


.plan-features {
    list-style: none;
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 10px;
    margin: 16px auto 18px;
    display: grid;
    gap: 10px;
    max-width: 560px;
    color: #e7eeff;
    font-size: clamp(14px, 3.4vw, 18px);
    line-height: 0.35;
}

.plan-features li {
    padding: 0.75rem 0;
    color: white;
	display: flex;
    gap: 10px;
    align-items: flex-start;
}

.guarantee {
    text-align: center;
    padding: 2rem;
    background: white;
	border: 1px solid #7c3bedf7;
    border-radius: 1rem;
}

.guarantee h3 {
    font-size: 1.5rem;
	color: #ff751f;
    margin-bottom: 0.5rem;
}

.guarantee p {
	color: #270c58;
}
/* FAQ Section */
.faq {
    background: var(--color-gray-100);
	margin-bottom: 50px;
}

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

.faq-item {
    background: white;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
	color: #1d1d1f;
    background: #f8f8fa;
    border: 1px solid #e5e5ea;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
	font-family: var(--font-title);
}

.faq-question:hover {
    color: #1d1d1f;
    background: #f8f8fa;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
	font-family: var(--font-title);
}

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
	margin-top: 5px;
    color:var(--color-gray-700);
    line-height: 1.7;
}

/* Final CTA */
.final-cta {
    padding: 6rem 0;
    background: black;
    color: white;
    position: relative;
    overflow: hidden;
}

.faixa-venda {
	height: 100px;
	padding: 10px 0;
    background: black;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap; /* importante pro mobile */
}

.cta-flex h2 {
  margin: 0;
  color: #fff;
  font-size: 2rem;
  font-family:var(--font-title);
}

.cta-flex .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.final-cta::before,
.final-cta::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(60px);
}

.final-cta::before {
    width: 16rem;
    height: 16rem;
    top: 0;
    left: 0;
}

.final-cta::after {
    width: 24rem;
    height: 24rem;
    bottom: 0;
    right: 0;
}

.final-cta-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.final-cta-title {
    font-family: var(--font-text);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.final-cta-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
	font-family: var(--font-title);
}

.font-numeros-titulo{
	font-family: var(--font-title);
}

.urgency-banner {
    display: inline-flex;
	font-family: var(--font-title);
    align-items: center;
    background: #004aad;
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-top: 3rem;
    font-weight: 600;
}

.urgency-icon {
    font-size: 1.25rem;
    color: var(--color-gold);
}

.payment-info {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.payment-methods-label {
    font-size: 0.875rem;
    opacity: 0.75;
    margin-bottom: 0.5rem;
}

.g7-section {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Segoe UI, Roboto, system-ui, sans-serif;
    padding: 18px 16px 24px;
}

.g7-card {
    background: #111315;
    border-radius: 22px;
    border: 1px solid #1f2933;
    padding: 18px 18px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #f9fafb;
}

.g7-icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.g7-eyebrow {
    margin: 0 0 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: #60a5ff;
}

.g7-title {
    margin: 0 0 6px;
	font-family: var(--font-text);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.02em;
    color: #white;
}

.g7-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: #d1d5db;
	font-family: var(--font-title);
}

.g7-content {
    flex: 1 1 auto;
    text-align: left;
}

.g7-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.g7-icon img{
    width: 100px;
    height: auto;
    display: block;
    object-fit: contain;
}

.payment-methods {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.secure-badge {
    font-size: 0.875rem;
    opacity: 0.75;
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: var(--color-gray-100);
    text-align: center;
    color: var(--color-gray-700);
    border-top: 1px solid #1dc9d121
}

.footer-contact {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
	
	/* Final CTA */
.faixa-venda-final {
	height: 150px;
}
.faixa-venda {
	height: 150px;
}

	.cta-flex {
    flex-direction: column; /* empilha */
    text-align: center;
  }

  .cta-flex h2 {
    font-size: 1.4rem;
  }
  
    .nav {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .gallery-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta-title {
        font-size: 2rem;
    }
    
    .final-cta-subtitle {
        font-size: 1.125rem;
    }
}

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

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

.bg-accent {
    background: linear-gradient(90deg, #fed7aa 0, #fd7812 45%, #ea580c 100%);
    color: #fff;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.justify-center {
    justify-content: center;
}

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

.w-14 {
    width: 3.5rem;
}

.h-14 {
    height: 3.5rem;
}

.flex {
    display: flex;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.aspas{
	color:#7c3bedf7;
}

.bf-whatsapp-help {
	font-family:-apple-system,BlinkMacSystemFont,"SF Pro Text","SF Pro Display",
	system-ui,Inter,Roboto,Arial,sans-serif;
	padding:28px 16px
}

.bf-wh-wrap{
	max-width:920px;
	margin:0 auto;
	border-radius:24px;
	padding:22px 24px;
	background:#0f1115;
	border:1px solid #004aad;
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:20px
}
	
.bf-wh-header{
	display:flex;
	align-items:flex-start;
	gap:14px
}

.bf-wh-icon{
	width:38px;
	height:38px;
	border-radius:999px;
	background:#679762;
	display:flex;
	align-items:center;
	justify-content:center;
	font-size:18px;
	flex-shrink:0;
	color:#fff
}
	
.bf-wh-title{    
	font-family: var(--font-text);
	margin:0;
	font-size:20px;
	font-weight:800;
	letter-spacing:-.015em;
	color:#f9fafb
}

.bf-wh-sub{
	margin:6px 0 0;
	font-size:15px;
	line-height:1.6;
	color:#cbd5e1;    
	font-family: var(--font-title);
}

.bf-wh-text{
	flex:1;
}

.bf-wh-actions{
	display:flex;
	gap:10px;
	flex-shrink:0
}

.bf-wh-btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:10px 18px;
	border-radius:999px;
	font-size:13px;
	font-weight:700;
	text-decoration:none;
	white-space:nowrap;
	transition:all .18s ease;
	border:1px solid transparent
}

.bf-wh-btn--sales{
	background:#679762;
	color:#f9fafb;
	border-color:#577f53
}

.bf-wh-btn--sales:hover{
	background:#fd7812;
	transform:translateY(-1px)
}

.bf-wh-btn--support{
	background:#1a1d23;
	color:#e5e7eb;
	border-color:#2a2f3a
}

.bf-wh-btn--support:hover{
	background:#232836;
	transform:translateY(-1px)
}

.bf-wh-btn:focus-visible{
	outline:2px solid #a4c79d;
	outline-offset:2px
}

@media (max-width:640px){
	.bf-wh-wrap{
		flex-direction:column;
		align-items:stretch
		}
	.bf-wh-actions{
		flex-direction:column
	}
	.bf-wh-btn{
		width:100%
	}
}
	
.presets-section {
  background: #f5f5f7;
  padding: 60px 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont;
}

.presets-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .presets-grid {
    grid-template-columns: 1fr;
  }
}

.preset-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
 font-family: var(--font-title);
}

.eyebrow {
  color: #004aad;
  font-weight: 800;
  font-size: 15px;
}

.preset-card h2 {
  margin: 8px 0;
  color:#1d1d1f;
  font-family:var(--font-text);
}

.badge {
  border: 1px solid #d1d1d6;
  border-radius: 999px;
  color:#6e6e73;
  font-weight: 800;
  padding: 8px 16px;
  font-size: 16px;
  margin: 6px auto 10px;
}

.preset-card p {
  color: #6e6e73;
  font-size: 18px;
  margin-bottom: 12px;
}

/* ===== COMPARADOR ===== */
.bf-compare {
  --pos: 50%;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}

.compare {
  position: relative;
}

.handle {
  position: absolute;
  top: 0;
  bottom: 0;
}

.bf-compare img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before {
  width: var(--pos);
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}


.handle {
  position: absolute;
  left: var(--pos);
  top: 0;
  bottom: 0;
  width: 2px;
  background: #fff;
  transform: translateX(-50%);
  z-index: 3;
}

.dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(0,0,0,.5);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  cursor: grab;
}

.label {
  position: absolute;
  top: 10px;
  background: rgba(0,0,0,.6);
  color: #fff;
  padding: 5px 10px;
  font-size: 11px;
  border-radius: 14px;
}

.label.left { left: 10px; }
.label.right { right: 10px; }

.hint {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 6px 10px;
  border-radius: 14px;
  font-size: 11px;
}

.preco-card-header {
    text-align: center;
}

.preco-card-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #0b0d12;
    background: linear-gradient(90deg, #fed7aa 0, #fd7812 45%, #ea580c 100%);
    border-radius: 999px;
    padding: 6px 10px;
    margin-bottom: 10px;
}

.preco-card-lead {
    color: var(--muted);
    font-weight: 600;
    font-size: clamp(14px, 2.9vw, 16px);
    margin: 2px 0 6px;
}

.preco-card-price {
    margin: 2px 0 6px;
    font-weight: 900;
    letter-spacing: -.02em;
    font-size: clamp(60px, 13vw, 108px);
    line-height: .95;
    text-shadow: 0 12px 34px rgba(0, 0, 0, .45);
    background: linear-gradient(180deg, #fff, #f1f5ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.preco-card-strike {
    color: #fff;
    opacity: .92;
    text-decoration: line-through;
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: .14em .5em;
}

.preco-card-currency {
    font-size: .22em;
    vertical-align: top;
    margin-right: .12em;
    opacity: 1.00;
}

.bf-footer {
  background: #0b0b0b;
  color: #e6e6e6;
  font-family: system-ui, -apple-system, Segoe UI, Inter, Roboto, Arial, sans-serif;
  padding: 28px 16px;
}

.bf-footer__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}


.bf-footer__copy {
    margin: 0 0 14px;
    font-size: clamp(18px, 2.8vw, 24px);
    line-height: 1.2;
    letter-spacing: .2px;
}

.bf-footer__links {
    display: grid;
    gap: 8px;
    justify-content: center;
    margin-bottom: 14px;
}


.bf-footer__link {
    display: inline-block;
    color: #f2f2f2;
    font-weight: 800;
    font-size: clamp(20px, 3.2vw, 28px);
    text-decoration: none;
    line-height: 1.1;
    border-bottom: 4px solid transparent;
    transition: border-color .2s ease, color .2s ease;
}

/* Base: desktop já funciona */

/* Tablet */
@media (max-width: 992px) {
  .pricing-grid {
    display: flex;
    justify-content: center;
    padding: 0 16px;
  }

  .pricing-card {
    width: 100%;
    max-width: 420px;
  }

  .preco-card-price {
    font-size: 48px;
  }

  .preco-card-lead {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .pricing {
    padding: 32px 0;
  }

  .pricing-grid {
    padding: 0 12px;
  }

  .pricing-card {
    width: 100%;
    border-radius: 16px;
  }

  .preco-card-header {
    padding: 20px 16px;
    text-align: center;
  }

  .preco-card-price {
    font-size: 40px;
    line-height: 1;
  }

  .preco-card-currency {
    font-size: 18px;
  }

  .preco-card-lead {
    font-size: 14px;
  }

  .plan-features {
    padding: 0 16px;
  }

  .plan-features li {
    font-size: 14px;
  }

  .cta-apple {
    padding: 0 16px;
  }

  .cta-apple-btn {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 16px;
    padding: 14px;
  }

  .cta-apple-sub {
    font-size: 13px;
    text-align: center;
  }

  .preco-card-payments img {
    width: 100%;
    height: auto;
  }

  .preco-card-urgency {
    padding: 12px;
    font-size: 13px;
    text-align: center;
  }
}

@media (max-width: 992px) {
  .bf-footer {
    max-width: 100%;
    padding: 24px 20px;
  }

  .bf-footer__wrap {
    flex-direction: column;
    text-align: center;
  }
}
