:root {
    --black: #0a0a0a;
    --black-light: #1a1a1a;
    --black-lighter: #2a2a2a;
    --gold: #c9a227;
    --gold-light: #d4b44a;
    --gold-dark: #a68520;
    --silver: #c0c0c0;
    --silver-light: #e0e0e0;
    --silver-dark: #a0a0a0;
    --white: #ffffff;
    --white-off: #f5f5f5;
    --gray: #888888;
    --success: #2ecc71;
}

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

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

.container {
    width: 100%;
    padding: 0 40px;
}

section {
    min-height: 100vh;
    width: 100vw;
    scroll-snap-align: start;
    overflow: hidden;
}

section > .container {
    width: 100%;
    height: 100%;
    padding: 80px 40px;
}

section.hero > .container,
section.autoridade > .container,
section.problema > .container,
section.depoimentos > .container,
section.cta > .container {
    padding: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section.beneficios > .container {
    padding: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section.planos > .container {
    padding: 0;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1, h2, h3, h4 {
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--silver);
}

.btn-secondary:hover {
    background: var(--silver);
    color: var(--black);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--black);
}

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

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 50px;
    text-align: center;
}

.badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-fixed {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.logo-fixed img {
    height: 50px;
    width: auto;
}

.header {
    display: none;
}

.hero {
    background: linear-gradient(90deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 0.3) 100%),
                url('bg_hero.JPG') left center / cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-grid {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0 40px;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-visual {
    display: none;
}

.phone-mockup {
    display: none;
}

.hero-title {
    font-size: 3rem;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--silver);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--silver-light);
    font-size: 1rem;
}

.bullet-icon {
    width: 24px;
    height: 24px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bullet-icon svg {
    width: 14px;
    height: 14px;
    stroke: var(--black);
    stroke-width: 3;
}

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

.phone-mockup {
    width: 280px;
    height: 550px;
    background: linear-gradient(145deg, var(--black-lighter) 0%, var(--black) 100%);
    border-radius: 40px;
    padding: 12px;
    border: 3px solid var(--gold);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(201, 162, 39, 0.2);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 25px;
    background: var(--black);
    border-radius: 15px;
}

.phone-screen {
    background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%);
    border-radius: 30px;
    height: 100%;
    padding: 50px 15px 20px;
    display: flex;
    flex-direction: column;
}

.app-header {
    text-align: center;
    margin-bottom: 25px;
}

.app-logo {
    color: var(--gold);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.app-logo-img {
    height: 30px;
    width: auto;
    margin-bottom: 8px;
}

.app-welcome {
    color: var(--silver);
    font-size: 0.75rem;
}

.app-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.app-card {
    background: var(--black-lighter);
    border-radius: 12px;
    padding: 14px;
    border: 1px solid rgba(201, 162, 39, 0.2);
}

.app-card.highlight {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
}

.app-card.highlight .app-card-title,
.app-card.highlight .app-card-value {
    color: var(--black);
}

.app-card-title {
    color: var(--silver);
    font-size: 0.7rem;
    margin-bottom: 5px;
}

.app-card-value {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
}

.app-card-value.success {
    color: var(--success);
}

.problema {
    background: var(--white-off);
    width: 100vw;
}

.problema .container {
    width: 100%;
    max-width: 100%;
    padding: 80px 40px;
}

.problema-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.problema-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.problema-title {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 30px;
}

.problema-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problema-text {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
}

.problema-text strong {
    color: var(--black);
    font-weight: 600;
}

.problema-text.autoria {
    font-weight: 500;
    color: var(--black-light);
}

.problema-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    perspective: 1000px;
}

.ibge-image {
    transform: rotateY(-15deg) rotateX(5deg);
    transform-style: preserve-3d;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.ibge-image img {
    width: 100%;
    max-width: 450px;
    display: block;
}

.problema-right .btn {
    transform: rotateY(-15deg) rotateX(5deg);
}

.problema .container {
    width: 95vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.problema-headline {
    text-align: center;
    margin-bottom: 50px;
}

.problema-title {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 15px;
}

.problema-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.6;
}

.problema-blocks {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.block-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    color: var(--black);
    margin-bottom: 20px;
    font-weight: 600;
}

.block-title svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    flex-shrink: 0;
}

.problema-dores {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    border-left: 4px solid #e74c3c;
}

.problema-dores .block-title svg {
    stroke: #e74c3c;
}

.dores-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.dores-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    color: var(--black-light);
    line-height: 1.5;
}

.dore-icon {
    width: 22px;
    height: 22px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dore-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--white);
    stroke-width: 3;
}

.problema-realidade .block-title svg {
    stroke: #e67e22;
}

.realidade-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.realidade-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #e67e22;
}

.realidade-card h4 {
    font-size: 1rem;
    color: var(--black);
    margin-bottom: 12px;
    font-weight: 600;
}

.realidade-card ul {
    list-style: none;
}

.realidade-card li {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.realidade-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #e67e22;
    font-weight: bold;
}

.problema-consequencia {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(230, 126, 34, 0.1) 100%);
    border-radius: 16px;
    padding: 30px;
    border-left: 4px solid #c0392b;
}

.problema-consequencia .block-title {
    color: #c0392b;
}

.problema-consequencia .block-title svg {
    stroke: #c0392b;
}

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

.consequencia-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    color: var(--black-light);
    font-weight: 500;
}

.consequencia-list li svg {
    width: 20px;
    height: 20px;
    stroke: #c0392b;
    flex-shrink: 0;
}

.problema-virada {
    text-align: center;
    padding: 20px;
}

.virada-text {
    font-size: 1.35rem;
    color: var(--black);
    font-weight: 600;
}

.problema-solucao {
    background: var(--white);
    border-radius: 16px;
    padding: 30px;
    border-left: 4px solid #27ae60;
}

.problema-solucao .block-title svg {
    stroke: #27ae60;
}

.solucao-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.solucao-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--black-light);
}

.solucao-list li svg {
    width: 20px;
    height: 20px;
    stroke: #27ae60;
    flex-shrink: 0;
}

.problema-cta {
    align-self: center;
    margin-top: 10px;
}

.planos {
    background: var(--white-off);
    width: 100vw;
}

.planos .container {
    width: 100%;
    max-width: 100%;
    padding: 80px 40px;
}

.planos-grid {
    display: flex !important;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.plano-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(201, 162, 39, 0.25);
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 400px;
    max-width: 100%;
}

.plano-card.azul {
    border-color: #3498db;
    box-shadow: 0 15px 50px rgba(52, 152, 219, 0.25);
}

.plano-card.azul:hover {
    box-shadow: 0 20px 60px rgba(52, 152, 219, 0.35);
}

.plano-card.azul .plano-beneficios .check {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.plano-card.azul .plano-corpo .btn {
    background: #3498db;
    border-color: #3498db;
}

.btn-azul {
    background: #3498db;
    color: var(--white);
    border-color: #3498db;
}

.btn-azul:hover {
    background: #2980b9;
    border-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
    color: var(--white);
}

.btn-azul.btn-outline {
    background: transparent;
    color: #3498db;
    border-color: #3498db;
}

.btn-azul.btn-outline:hover {
    background: #3498db;
    color: var(--white);
}

.btn-prata {
    background: linear-gradient(135deg, #c0c0c0 0%, #a0a0a0 100%);
    border-color: #a0a0a0;
    color: #333;
}

.btn-prata:hover {
    background: linear-gradient(135deg, #d0d0d0 0%, #b0b0b0 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(192, 192, 192, 0.5);
    color: #333;
}

.plano-card.prata {
    border-color: #c0c0c0;
    box-shadow: 0 15px 50px rgba(192, 192, 192, 0.4);
    background: linear-gradient(145deg, #ffffff 0%, #f8f8f8 100%);
}

.plano-card.prata:hover {
    box-shadow: 0 20px 60px rgba(192, 192, 192, 0.5);
}

.plano-card.prata .plano-selo {
    background: linear-gradient(135deg, #e8e8e8 0%, #a8a8a8 50%, #d0d0d0 100%);
    color: #333;
    text-shadow: 0 1px 0 rgba(255,255,255,0.8);
    border: 1px solid #bbb;
}

.plano-card.prata .plano-header {
    background: linear-gradient(180deg, rgba(192, 192, 192, 0.15) 0%, transparent 100%);
    border-bottom: 2px solid #c0c0c0;
}

.plano-card.prata .plano-beneficios .check {
    background: linear-gradient(135deg, #c0c0c0 0%, #a0a0a0 100%);
}

.plano-card.prata .plano-corpo .btn {
    background: linear-gradient(135deg, #c0c0c0 0%, #a0a0a0 100%);
    border-color: #a0a0a0;
    color: #333;
}

.plano-card.prata .plano-corpo .btn:hover {
    background: linear-gradient(135deg, #d0d0d0 0%, #b0b0b0 100%);
}

.plano-card.dourado {
    border-color: #c9a227;
    box-shadow: 0 15px 50px rgba(201, 162, 39, 0.4);
    background: linear-gradient(145deg, #ffffff 0%, #fefcf5 100%);
}

.plano-card.dourado:hover {
    box-shadow: 0 20px 60px rgba(201, 162, 39, 0.5);
}

.plano-card.dourado .plano-selo {
    background: linear-gradient(135deg, #d4b44a 0%, #a68520 50%, #d4b44a 100%);
    color: #1a1a1a;
    text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}

.plano-card.dourado .plano-header {
    background: linear-gradient(180deg, rgba(201, 162, 39, 0.15) 0%, transparent 100%);
    border-bottom: 2px solid #c9a227;
}

.plano-card.dourado .plano-beneficios .check {
    background: linear-gradient(135deg, #c9a227 0%, #a68520 100%);
}

.plano-card.dourado .plano-corpo .btn {
    background: linear-gradient(135deg, #c9a227 0%, #a68520 100%);
    border-color: #c9a227;
}

.plano-card.dourado .plano-corpo .btn:hover {
    background: linear-gradient(135deg, #d4b44a 0%, #b8942a 100%);
}

.plano-card.bronze {
    border-color: #cd7f32;
    box-shadow: 0 15px 50px rgba(205, 127, 50, 0.4);
    background: linear-gradient(145deg, #ffffff 0%, #fdf5f0 100%);
}

.plano-card.bronze:hover {
    box-shadow: 0 20px 60px rgba(205, 127, 50, 0.5);
}

.plano-card.bronze .plano-selo {
    background: linear-gradient(135deg, #cd7f32 0%, #a0522d 50%, #cd7f32 100%);
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.plano-card.bronze .plano-header {
    background: linear-gradient(180deg, rgba(205, 127, 50, 0.1) 0%, transparent 100%);
    border-bottom: 2px solid #cd7f32;
}

.plano-card.bronze .plano-beneficios .check {
    background: linear-gradient(135deg, #cd7f32 0%, #a0522d 100%);
}

.plano-card.bronze .plano-corpo .btn {
    background: linear-gradient(135deg, #cd7f32 0%, #a0522d 100%);
    border-color: #cd7f32;
}

.plano-card.bronze .plano-corpo .btn:hover {
    background: linear-gradient(135deg, #b87330 0%, #8b4513 100%);
}

.plano-card.prata {
    border-color: #c0c0c0;
    box-shadow: 0 15px 50px rgba(192, 192, 192, 0.4);
    background: linear-gradient(145deg, #ffffff 0%, #f8f8f8 100%);
}

.plano-card.prata:hover {
    box-shadow: 0 20px 60px rgba(192, 192, 192, 0.5);
}

.plano-card.prata .plano-selo {
    background: linear-gradient(135deg, #e8e8e8 0%, #a8a8a8 50%, #d0d0d0 100%);
    color: #333;
    text-shadow: 0 1px 0 rgba(255,255,255,0.8);
    border: 1px solid #bbb;
}

.plano-card.prata .plano-header {
    background: linear-gradient(180deg, rgba(192, 192, 192, 0.15) 0%, transparent 100%);
    border-bottom: 2px solid #c0c0c0;
}

.plano-card.prata .plano-beneficios .check {
    background: linear-gradient(135deg, #c0c0c0 0%, #a0a0a0 100%);
}

.plano-card.prata .plano-corpo .btn {
    background: linear-gradient(135deg, #c0c0c0 0%, #a0a0a0 100%);
    border-color: #a0a0a0;
    color: #333;
}

.plano-card.prata .plano-corpo .btn:hover {
    background: linear-gradient(135deg, #d0d0d0 0%, #b0b0b0 100%);
}

.plano-card.dourado {
    border-color: #c9a227;
    box-shadow: 0 15px 50px rgba(201, 162, 39, 0.4);
    background: linear-gradient(145deg, #ffffff 0%, #fefcf5 100%);
}

.plano-card.dourado:hover {
    box-shadow: 0 20px 60px rgba(201, 162, 39, 0.5);
}

.plano-card.dourado .plano-selo {
    background: linear-gradient(135deg, #d4b44a 0%, #a68520 50%, #d4b44a 100%);
    color: #1a1a1a;
    text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}

.plano-card.dourado .plano-header {
    background: linear-gradient(180deg, rgba(201, 162, 39, 0.15) 0%, transparent 100%);
    border-bottom: 2px solid #c9a227;
}

.plano-card.dourado .plano-beneficios .check {
    background: linear-gradient(135deg, #c9a227 0%, #a68520 100%);
}

.plano-card.dourado .plano-corpo .btn {
    background: linear-gradient(135deg, #c9a227 0%, #a68520 100%);
    border-color: #c9a227;
}

.plano-card.dourado .plano-corpo .btn:hover {
    background: linear-gradient(135deg, #d4b44a 0%, #b8942a 100%);
}

.plano-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(201, 162, 39, 0.35);
}

.plano-header {
    padding: 30px 25px 20px;
    text-align: center;
    border-bottom: 1px solid var(--silver-light);
}

.plano-corpo {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.plano-corpo .btn {
    margin-top: auto;
}

.plano-selo {
    background: var(--gold);
    color: var(--black);
    text-align: center;
    padding: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plano-nome {
    font-size: 1.5rem;
    color: var(--black);
    margin-bottom: 8px;
}

.plano-subtexto {
    color: var(--gray);
    font-size: 0.95rem;
}

.plano-beneficios {
    list-style: none;
    margin-bottom: 25px;
    flex: 1;
}

.plano-beneficios li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--white-off);
    color: var(--black-light);
    font-size: 0.9rem;
}

.plano-beneficios li:last-child {
    border-bottom: none;
}

.plano-beneficios .check {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.plano-beneficios .check svg {
    width: 12px;
    height: 12px;
    stroke: var(--black);
    stroke-width: 3;
}

.plano-card .btn {
    width: 100%;
}

.plano-card.destaque .plano-header {
    background: linear-gradient(180deg, rgba(201, 162, 39, 0.08) 0%, transparent 100%);
}

.beneficios {
    background: var(--white);
    padding: 120px 0;
}

.beneficios .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.beneficios-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    text-align: center;
}

.beneficios-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 80px;
    text-align: center;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 80px;
    width: 100%;
    max-width: 900px;
}

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

.beneficio-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.beneficio-item:hover h3 {
    color: var(--gold);
}

.beneficio-item p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
}

.autoridade {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    position: relative;
    overflow: hidden;
}

.autoridade::before,
.autoridade::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.particula {
    position: absolute;
    bottom: -50px;
    opacity: 0;
    animation: subirParticula linear infinite;
}

.particula svg {
    width: 20px;
    height: 20px;
    fill: var(--gold);
}

@keyframes subirParticula {
    0% {
        opacity: 0;
        transform: translateY(0) rotate(0deg);
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) rotate(360deg);
    }
}

.particula:nth-child(1) { left: 5%; animation-duration: 8s; animation-delay: 0s; }
.particula:nth-child(2) { left: 15%; animation-duration: 10s; animation-delay: 2s; }
.particula:nth-child(3) { left: 25%; animation-duration: 7s; animation-delay: 4s; }
.particula:nth-child(4) { left: 35%; animation-duration: 9s; animation-delay: 1s; }
.particula:nth-child(5) { left: 45%; animation-duration: 11s; animation-delay: 3s; }
.particula:nth-child(6) { left: 55%; animation-duration: 8s; animation-delay: 5s; }
.particula:nth-child(7) { left: 65%; animation-duration: 10s; animation-delay: 0.5s; }
.particula:nth-child(8) { left: 75%; animation-duration: 7s; animation-delay: 2.5s; }
.particula:nth-child(9) { left: 85%; animation-duration: 9s; animation-delay: 4.5s; }
.particula:nth-child(10) { left: 95%; animation-duration: 12s; animation-delay: 1.5s; }
.particula:nth-child(11) { left: 10%; animation-duration: 8s; animation-delay: 6s; }
.particula:nth-child(12) { left: 30%; animation-duration: 10s; animation-delay: 3.5s; }
.particula:nth-child(13) { left: 50%; animation-duration: 7s; animation-delay: 5.5s; }
.particula:nth-child(14) { left: 70%; animation-duration: 9s; animation-delay: 7s; }
.particula:nth-child(15) { left: 90%; animation-duration: 11s; animation-delay: 2s; }

.autoridade-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.autoridade-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.autoridade-image-wrapper {
    margin-bottom: 20px;
}

.autoridade-image {
    width: 200px;
    height: auto;
}

.autoridade-badge-wrapper {
    margin-bottom: 20px;
}

.autoridade-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.autoridade-texto {
    color: var(--silver);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 50px;
}

.autoridade-info {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.autoridade-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.autoridade-numero {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

.autoridade-label {
    color: var(--silver);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.depoimentos {
    background: var(--white-off);
}

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

.depoimento-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--silver-light);
}

.depoimento-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.depoimento-stars svg {
    fill: var(--gold);
}

.depoimento-texto {
    color: var(--black-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.depoimento-autor {
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 600;
}

.cta {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
}

.cta > .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-subtitle {
    color: var(--silver);
    font-size: 1.25rem;
    margin-bottom: 40px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.scroll-down {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(201, 162, 39, 0.4);
}

.scroll-down:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(201, 162, 39, 0.5);
}

.scroll-down svg {
    width: 24px;
    height: 24px;
    stroke: var(--black);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(8px);
    }
    60% {
        transform: translateY(4px);
    }
}

.footer {
    background: var(--black);
    padding: 80px 0 30px;
}

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

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    color: var(--silver);
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.footer-years {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-nav h4,
.footer-contact h4,
.footer-address h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav ul,
.footer-contact ul {
    list-style: none;
}

.footer-nav li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: var(--silver);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-contact li {
    color: var(--silver);
    font-size: 0.9rem;
}

.footer-address p {
    color: var(--silver);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.8rem;
}

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

.animate {
    opacity: 0;
}

.animate.visible {
    animation: fadeInUp 0.6s ease forwards;
}

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

    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .hero-visual {
        display: none;
    }

    .planos-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .autoridade-info {
        gap: 30px;
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .hero-visual {
        display: none;
    }

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

    .passos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .planos-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .autoridade-info {
        gap: 30px;
    }

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

@media (max-width: 768px) {
    html {
        scroll-snap-type: y mandatory;
    }

    body {
        overflow-x: hidden;
        width: 100vw;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }

    section {
        min-height: 100vh;
        width: 100vw;
        scroll-snap-align: start;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 60px 0;
    }

    section > .container {
        width: 100vw;
        max-width: 100vw;
        padding: 80px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    section.hero,
    section.autoridade,
    section.problema,
    section.depoimentos,
    section.cta {
        padding: 0;
    }

    section.hero > .container,
    section.autoridade > .container,
    section.problema > .container,
    section.depoimentos > .container,
    section.cta > .container,
    section.beneficios > .container {
        padding: 80px 20px;
        width: 100vw;
        height: 100%;
        max-width: 100vw;
    }

    .hero {
        background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.85)),
                    url('bg_hero.JPG') center center / cover no-repeat;
        min-height: 100vh;
    }

    .hero-content {
        max-width: 100%;
        padding: 0;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 300px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .hero-bullets {
        align-items: center;
        gap: 10px;
    }

    .hero-bullets li {
        font-size: 0.85rem;
    }

    .bullet-icon {
        width: 20px;
        height: 20px;
    }

    .logo-fixed img {
        height: 40px;
    }

    .autoridade {
        min-height: 100vh;
    }

    .autoridade-content {
        padding: 0 20px;
    }

    .autoridade-image {
        width: 150px;
        margin-bottom: 15px;
    }

    .autoridade-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .autoridade-texto {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .autoridade-info {
        flex-direction: column;
        gap: 25px;
    }

    .autoridade-item {
        gap: 5px;
    }

    .autoridade-numero {
        font-size: 2rem;
    }

    .autoridade-label {
        font-size: 0.75rem;
    }

    .problema {
        min-height: 100vh;
    }

    .problema-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        width: 100%;
    }

    .problema-left {
        order: 1;
    }

    .problema-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .problema-content {
        gap: 15px;
    }

    .problema-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .problema-right {
        order: 2;
        gap: 20px;
    }

    .ibge-image {
        transform: none;
        box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
    }

    .ibge-image img {
        max-width: 200px;
    }

    .problema-right .btn {
        transform: none;
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .planos {
        min-height: 100vh;
        padding: 60px 0;
    }

    .planos > .container {
        padding: 60px 20px;
        width: 100%;
        min-height: 100vh;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 40px;
    }

    .planos-grid {
        display: flex !important;
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }

    .plano-card {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .beneficios {
        min-height: 100vh;
    }

    .beneficios > .container {
        padding: 60px 20px;
        width: 100%;
        min-height: 100vh;
    }

    .beneficios-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .beneficios-subtitle {
        font-size: 0.9rem;
        margin-bottom: 40px;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
    }

    .beneficio-item h3 {
        font-size: 1.1rem;
    }

    .beneficio-item p {
        font-size: 0.9rem;
    }

    .depoimentos {
        min-height: 100vh;
    }

    .depoimentos > .container {
        padding: 60px 20px;
        width: 100%;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }

    .depoimento-card {
        padding: 25px 20px;
    }

    .depoimento-texto {
        font-size: 0.95rem;
    }

    .cta {
        min-height: 100vh;
    }

    .cta > .container {
        padding: 60px 20px;
        width: 100%;
    }

    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .cta-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .cta-btns .btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 20px;
    }

    .footer {
        padding: 60px 20px 30px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

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

    .footer-logo {
        height: 40px;
        margin: 0 auto 15px;
    }

    .footer-tagline,
    .footer-years {
        font-size: 0.85rem;
    }

    .footer-nav h4,
    .footer-contact h4,
    .footer-address h4 {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    .footer-nav li,
    .footer-contact li,
    .footer-address p {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .footer-nav a:hover {
        color: var(--gold);
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }

    .scroll-down {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .scroll-down svg {
        width: 20px;
        height: 20px;
    }

    .particula svg {
        width: 15px;
        height: 15px;
    }

    .problema-destaque {
        font-size: 1rem;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-btns .btn {
        max-width: 100%;
    }

    .autoridade-image {
        width: 120px;
    }

    .problema-title {
        font-size: 1.25rem;
    }

    .problema-text {
        font-size: 0.85rem;
    }

    .ibge-image img {
        max-width: 150px;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .plano-card {
        max-width: 100%;
    }

    .beneficios-title {
        font-size: 1.25rem;
    }

    .beneficios-subtitle {
        font-size: 0.85rem;
    }

    .cta-title {
        font-size: 1.25rem;
    }

    .cta-btns .btn {
        max-width: 100%;
    }
}

    body {
        overflow-x: hidden;
    }

    section {
        min-height: 100vh;
        width: 100vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 60px 20px;
    }

    .container {
        padding: 0 20px;
    }

    section > .container {
        width: 100%;
        max-width: 100%;
        padding: 60px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    section.hero,
    section.autoridade,
    section.problema,
    section.depoimentos,
    section.cta {
        padding: 0;
    }

    section.hero > .container,
    section.autoridade > .container,
    section.problema > .container,
    section.depoimentos > .container,
    section.cta > .container {
        padding: 80px 20px;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--black);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-bottom: 1px solid var(--gold);
        z-index: 1001;
    }

    .nav.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        min-height: 100vh;
        background-size: cover;
        background-position: center;
    }

    .hero-grid {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 300px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .hero-bullets {
        align-items: center;
        gap: 10px;
    }

    .hero-bullets li {
        font-size: 0.85rem;
    }

    .bullet-icon {
        width: 20px;
        height: 20px;
    }

    .logo-fixed img {
        height: 40px;
    }

    .autoridade {
        min-height: 100vh;
    }

    .autoridade-content {
        padding: 0 20px;
    }

    .autoridade-image {
        width: 150px;
        margin-bottom: 15px;
    }

    .autoridade-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .autoridade-texto {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .autoridade-info {
        flex-direction: column;
        gap: 25px;
    }

    .autoridade-item {
        gap: 5px;
    }

    .autoridade-numero {
        font-size: 2rem;
    }

    .autoridade-label {
        font-size: 0.75rem;
    }

    .problema {
        min-height: 100vh;
    }

    .problema-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        width: 100%;
    }

    .problema-left {
        order: 1;
    }

    .problema-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .problema-content {
        gap: 15px;
    }

    .problema-text {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .problema-right {
        order: 2;
        gap: 20px;
    }

    .ibge-image {
        transform: none;
        box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
    }

    .ibge-image img {
        max-width: 200px;
    }

    .problema-right .btn {
        transform: none;
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .planos {
        min-height: 100vh;
        padding: 60px 0;
    }

    .planos > .container {
        padding: 60px 20px;
        width: 100%;
        min-height: auto;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 40px;
    }

    .planos-grid {
        display: flex !important;
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }

    .plano-card {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .beneficios {
        min-height: 100vh;
    }

    .beneficios > .container {
        padding: 60px 20px;
        width: 100%;
        min-height: 100vh;
    }

    .beneficios-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .beneficios-subtitle {
        font-size: 0.9rem;
        margin-bottom: 40px;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
    }

    .beneficio-item h3 {
        font-size: 1.1rem;
    }

    .beneficio-item p {
        font-size: 0.9rem;
    }

    .depoimentos {
        min-height: 100vh;
    }

    .depoimentos > .container {
        padding: 60px 20px;
        width: 100%;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        width: 100%;
    }

    .depoimento-card {
        padding: 25px 20px;
    }

    .depoimento-texto {
        font-size: 0.95rem;
    }

    .cta {
        min-height: 100vh;
    }

    .cta > .container {
        padding: 60px 20px;
        width: 100%;
    }

    .cta-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .cta-subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .cta-btns .btn {
        width: 100%;
        max-width: 300px;
        padding: 14px 20px;
    }

    .footer {
        padding: 60px 20px 30px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

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

    .footer-logo {
        height: 40px;
        margin: 0 auto 15px;
    }

    .footer-tagline,
    .footer-years {
        font-size: 0.85rem;
    }

    .footer-nav h4,
    .footer-contact h4,
    .footer-address h4 {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }

    .footer-nav li,
    .footer-contact li,
    .footer-address p {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .footer-nav a:hover {
        color: var(--gold);
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }

    .scroll-down {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .scroll-down svg {
        width: 20px;
        height: 20px;
    }

    .particula svg {
        width: 15px;
        height: 15px;
    }

    .problema-destaque {
        font-size: 1rem;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-btns .btn {
        max-width: 100%;
    }

    .autoridade-image {
        width: 120px;
    }

    .problema-title {
        font-size: 1.25rem;
    }

    .problema-text {
        font-size: 0.85rem;
    }

    .ibge-image img {
        max-width: 150px;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .plano-card {
        max-width: 100%;
    }

    .beneficios-title {
        font-size: 1.25rem;
    }

    .beneficios-subtitle {
        font-size: 0.85rem;
    }

    .cta-title {
        font-size: 1.25rem;
    }

    .cta-btns .btn {
        max-width: 100%;
    }
}
