/* Design Tokens & CSS Custom Properties */
:root {
    --roxo: #59298f;
    --roxo-escuro: #3d1a66;
    --roxo-suave: #f4eefa;
    --amarelo: #ffcb05;
    --texto: #1f1b2e;
    --muted: #6b6577;
    --linha: #e9e4f2;
    --white: #ffffff;
    
    /* Gradients */
    --gradiente: linear-gradient(135deg, #59298f 0%, #3d1a66 100%);
    --gradiente-light: linear-gradient(135deg, #ffffff 0%, #f4eefa 100%);
    --gradiente-card: linear-gradient(145deg, #ffffff 0%, #faf8fd 100%);
    
    /* Shadows */
    --shadow-soft: 0 12px 30px rgba(61, 26, 102, 0.06);
    --shadow-premium: 0 20px 50px rgba(89, 41, 143, 0.12);
    --shadow-cta: 0 8px 25px rgba(255, 203, 5, 0.35);
    
    /* Radius */
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 12px;
    --radius-sm: 8px;
    
    /* Fonts */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Manrope', sans-serif;
}

/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--roxo-escuro);
    font-weight: 800;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Container Utility */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Sections */
section {
    padding: 100px 0;
}

section.alt-bg {
    background: var(--gradiente-light);
}

section.dark-bg {
    background: var(--gradiente);
    color: var(--white);
}

section.dark-bg h2, section.dark-bg h3 {
    color: var(--white);
}

/* Header & Navigation */
header.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--linha);
    z-index: 1000;
    transition: background 0.3s ease;
}

header.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--roxo);
    letter-spacing: -1px;
}

.logo-text span {
    color: var(--roxo-escuro);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-link {
    font-weight: 600;
    font-size: 15px;
    color: var(--texto);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--roxo);
    transition: width 0.3s ease;
}

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

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

/* Dropdown Menu */
.nav-item.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    border: 1px solid var(--linha);
    border-radius: var(--radius-md);
    padding: 12px;
    min-width: 240px;
    box-shadow: var(--shadow-premium);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
}

.dropdown-link i {
    color: var(--roxo);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.dropdown-link:hover {
    background-color: var(--roxo-suave);
    color: var(--roxo-escuro);
}

/* Header CTAs */
.header-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn:active {
    transform: scale(0.96);
}

.btn-primary {
    background-color: var(--amarelo);
    color: var(--roxo-escuro);
    box-shadow: var(--shadow-cta);
}

.btn-primary:hover {
    background-color: #f0be00;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 203, 5, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--roxo);
    color: var(--roxo);
}

.btn-secondary:hover {
    background-color: var(--roxo);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-link {
    font-weight: 600;
    color: var(--texto);
    font-size: 15px;
}

.btn-link:hover {
    color: var(--roxo);
}

.btn-whatsapp {
    background-color: #25d366;
    color: var(--white);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background-color: #1ebd5b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--roxo-escuro);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    padding-top: 160px;
    padding-bottom: 80px;
    background: var(--gradiente-light);
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    background-color: var(--roxo-suave);
    color: var(--roxo-escuro);
    font-weight: 700;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 54px;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.hero-title span {
    background: var(--gradiente);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 36px;
    max-width: 550px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

/* Hero Mockup */
.hero-mockup-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mockup-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(89, 41, 143, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.hero-mockup {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-premium);
    transition: transform 0.5s ease;
}

.hero-mockup:hover {
    transform: translateY(-8px) rotate(-1deg);
}

/* Social Proof Banner */
.social-proof-bar {
    border-top: 1px solid var(--linha);
    border-bottom: 1px solid var(--linha);
    background: var(--white);
    padding: 30px 0;
}

.proof-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--roxo-escuro);
    font-size: 16px;
}

.proof-item i {
    font-size: 24px;
    color: var(--roxo);
}

/* Segment Selector (Niche Selector) */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 17px;
    color: var(--muted);
}

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

.niche-card {
    background: var(--gradiente-card);
    border: 1px solid var(--linha);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.niche-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-premium);
    border-color: var(--roxo-suave);
}

.niche-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--roxo-suave);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--roxo);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.niche-card:hover .niche-icon-wrapper {
    background-color: var(--roxo);
    color: var(--white);
    transform: scale(1.1);
}

.niche-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.niche-card p {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.niche-card .btn-card {
    font-weight: 700;
    color: var(--roxo);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.niche-card:hover .btn-card {
    color: var(--roxo-escuro);
}

.niche-card .btn-card i {
    transition: transform 0.3s ease;
}

.niche-card:hover .btn-card i {
    transform: translateX(4px);
}

/* Why Oppuz (Pilares) */
.pilares-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pilar-card {
    text-align: center;
    padding: 20px;
}

.pilar-card i {
    font-size: 40px;
    color: var(--roxo);
    margin-bottom: 20px;
}

.pilar-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.pilar-card p {
    color: var(--muted);
    font-size: 15px;
}

/* Pain & Solution (Dores e Beneficios) */
.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pain-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.pain-item {
    background: var(--white);
    border: 1px solid var(--linha);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    display: flex;
    gap: 20px;
}

.pain-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #ffeaea;
    color: #e33e3e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.pain-item-content h4 {
    font-size: 17px;
    margin-bottom: 6px;
    color: #a62a2a;
}

.pain-item-content p {
    font-size: 14px;
    color: var(--muted);
}

.benefit-item {
    background: var(--gradiente-card);
    border: 1.5px solid var(--roxo-suave);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-premium);
    display: flex;
    gap: 20px;
}

.benefit-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--roxo-suave);
    color: var(--roxo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.benefit-item-content h4 {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--roxo-escuro);
}

.benefit-item-content p {
    font-size: 15px;
    color: var(--texto);
}

/* Feature Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--linha);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-premium);
    border-color: var(--roxo-suave);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: var(--roxo-suave);
    color: var(--roxo);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 14px;
    color: var(--muted);
}

/* Differentials (Alternated Blocks) */
.diff-container {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.diff-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.diff-block:nth-child(even) .diff-text {
    order: 2;
}

.diff-block:nth-child(even) .diff-img {
    order: 1;
}

.diff-badge {
    display: inline-block;
    color: var(--roxo);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.diff-block h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.diff-block p {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 24px;
}

.diff-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.diff-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 15px;
}

.diff-list li i {
    color: #25d366;
    font-size: 18px;
}

.diff-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.diff-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.diff-img-wrapper:hover .diff-img {
    transform: scale(1.05);
}

/* How It Works Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--roxo);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 20px rgba(89, 41, 143, 0.3);
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--muted);
    font-size: 15px;
}

/* Pricing Section Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

.pricing-toggle span {
    font-weight: 700;
    font-size: 16px;
}

.pricing-toggle .discount-badge {
    background-color: var(--roxo-suave);
    color: var(--roxo-escuro);
    font-size: 12px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    border: 1px solid var(--roxo);
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--roxo);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Pricing Grid & Carousel Wrapper */
.pricing-grid-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.pricing-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 30px;
    align-items: stretch;
    padding: 20px 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.pricing-grid::-webkit-scrollbar {
    display: none;
}

.pricing-card {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--linha);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-soft);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.pricing-card.popular {
    border: 2px solid var(--roxo);
    box-shadow: var(--shadow-premium);
}

.pricing-card.popular .popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradiente);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--linha);
    box-shadow: var(--shadow-premium);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--roxo);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--roxo);
    color: var(--white);
    border-color: var(--roxo);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: -25px;
}

.carousel-btn-next {
    right: -25px;
}

.plan-name {
    font-size: 20px;
    margin-bottom: 8px;
}

.plan-desc {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 24px;
}

.plan-price-wrapper {
    margin-bottom: 30px;
}

.plan-currency {
    font-size: 18px;
    font-weight: 700;
    color: var(--roxo-escuro);
    vertical-align: super;
}

.plan-price {
    font-size: 44px;
    font-weight: 800;
    color: var(--roxo-escuro);
    font-family: var(--font-heading);
}

.plan-period {
    font-size: 15px;
    color: var(--muted);
}

.pricing-card .btn {
    width: 100%;
    margin-bottom: 30px;
}

.plan-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
}

.plan-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.plan-features-list li i {
    color: var(--roxo);
    font-size: 16px;
}

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--linha);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.faq-header {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
}

.faq-header h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--roxo-escuro);
}

.faq-icon {
    font-size: 16px;
    color: var(--roxo);
    transition: transform 0.3s ease;
}

.faq-item.active {
    border-color: var(--roxo-suave);
    box-shadow: var(--shadow-premium);
}

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

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

.faq-content {
    padding: 0 24px 24px;
    font-size: 15px;
    color: var(--muted);
}


/* Final CTA Section */
.cta-banner {
    border-radius: var(--radius-xl);
    padding: 80px 40px;
    text-align: center;
    box-shadow: var(--shadow-premium);
    color: var(--white);
}

.cta-banner h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: var(--white) !important;
}

.cta-banner p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 36px;
    opacity: 0.9;
    color: var(--white) !important;
}

.cta-banner .btn-primary {
    padding: 16px 40px;
    font-size: 16px;
}

/* Footer styling */
footer.main-footer {
    background-color: #120e1a;
    color: #a39eb0;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 0.9fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-about h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 22px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
}

.social-icon:hover {
    background-color: var(--roxo);
    transform: translateY(-3px);
}

.footer-links-col h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    font-size: 14px;
}

.footer-links-list a:hover {
    color: var(--white);
    padding-left: 4px;
}

.store-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.store-badge-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

/* Legal Pages Styling (Termos e Privacidade) */
.legal-container {
    max-width: 800px;
    margin: 140px auto 80px;
    padding: 0 24px;
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-header h1 {
    font-size: 36px;
    margin-bottom: 12px;
}

.legal-header p {
    color: var(--muted);
    font-size: 15px;
}

.legal-content {
    background: var(--white);
    border: 1px solid var(--linha);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-soft);
}

.legal-content h2 {
    font-size: 22px;
    margin-top: 36px;
    margin-bottom: 16px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p, .legal-content ul {
    font-size: 15px;
    color: var(--texto);
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-content ul {
    padding-left: 20px;
    list-style-type: disc;
}

.legal-content li {
    margin-bottom: 8px;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }
    .niche-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-card {
        flex: 0 0 calc(50% - 15px);
    }
    .carousel-btn-prev {
        left: -15px;
    }
    .carousel-btn-next {
        right: -15px;
    }
    .pricing-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 24px;
        gap: 24px;
        overflow-y: auto;
        border-top: 1px solid var(--linha);
        transition: left 0.4s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-item.dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--roxo-suave);
        padding-left: 12px;
        transform: none;
        margin-top: 10px;
        width: 100%;
    }
    
    .header-ctas {
        display: none; /* In mobile we could move inside nav menu if needed */
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-desc {
        margin: 0 auto 36px;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .niche-grid {
        grid-template-columns: 1fr;
    }
    
    .pilares-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pain-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .diff-block {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .diff-block:nth-child(even) .diff-text {
        order: 1;
    }
    
    .diff-block:nth-child(even) .diff-img {
        order: 2;
    }
    
    .diff-list {
        align-items: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card {
        flex: 0 0 100%;
    }
    .carousel-btn {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .legal-content {
        padding: 24px;
    }
    
    .cta-banner {
        padding: 40px 20px;
        border-radius: var(--radius-lg);
    }
    
    .cta-banner h2 {
        font-size: 24px !important;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .cta-banner p {
        font-size: 15px !important;
        margin-bottom: 24px;
    }
}
