/* Reset e Variáveis */
:root {
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #ffffff;
    --text-light: #e0e0e0;
    --text-muted: #999999;
    --blue-dark: #0a1520;
    --blue-medium: #1a2332;
    --blue-light: #2a3a4f;
    --blue-accent: #3d5a80;
    --gold-accent: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #b8941f;
    --gradient-primary: linear-gradient(135deg, #0a1520 0%, #1a2332 50%, #0a1520 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --gradient-gold-hover: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    --glow-blue: rgba(61, 90, 128, 0.3);
    --glow-gold: rgba(212, 175, 55, 0.2);
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.25);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
    --shadow-card-hover: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Reduced to avoid gap on larger screens */
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: var(--accent-color);
    line-height: 1.6;
    overflow-x: hidden;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* ... animated background ... */

.lp-shell {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    height: 100%;
    width: 100%;
}

/* ... header ... */

.lp-main {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
}



/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.10), transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(61, 90, 128, 0.16), transparent 55%),
        linear-gradient(rgba(10, 16, 32, 0.78), rgba(10, 16, 32, 0.78)),
        url('assets/bg.png?v=2025-11-06-2359');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000000;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(61, 90, 128, 0.6) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: 7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(42, 58, 79, 0.5) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(50px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Coming Soon Section (Legacy name, now Hero) */
.lp-hero {
    position: relative;
    /* Ensure hero can contain absolute elements */
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Behind content */
    pointer-events: auto;
    /* Allow mouse interaction */
}

.coming-soon {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding: 20px 0;
}

.logo-container {
    margin-bottom: 50px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo-glow {
    display: none;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.logo-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

@keyframes logo-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.content {
    margin-bottom: 50px;
    animation: fade-in-up 0.6s ease-out;
    text-align: center;
    width: 100%;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    animation: badge-shine 3s ease-in-out infinite;
    text-align: center;
}

@keyframes badge-shine {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    }
}

.coming-soon-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--accent-color);
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.title-line {
    display: block;
    opacity: 0;
    animation: fade-in-up 0.5s ease-out forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.1s;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.3s;
}

.title-line.highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.coming-soon-subtitle {
    font-size: 1.3rem;
    font-family: 'Times New Roman', Times, serif;
    color: var(--text-light);
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0;
    animation: fade-in-up 0.55s ease-out 0.4s forwards;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
}

.features-preview {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
    opacity: 0;
    animation: fade-in-up 0.55s ease-out 0.5s forwards;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 150px;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.feature-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
}

/* Contact Card */
.contact-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 30px 25px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    animation: fade-in-up 0.55s ease-out 0.6s forwards;
    margin: 0 auto;
    max-width: 600px;
    width: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.15);
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(61, 90, 128, 0.3));
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover .card-glow {
    opacity: 1;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--accent-color);
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: row;
    gap: 15px;
    max-width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
    flex: 1 1 auto;
    min-width: 220px;
    max-width: 320px;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
}

.contact-icon {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    color: var(--gold-accent);
    flex-shrink: 0;
}

.contact-item a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    word-break: keep-all;
    white-space: nowrap;
    flex: 1;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-item a:hover {
    color: var(--gold-accent);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: mouse-scroll 2s ease-in-out infinite;
}

@keyframes mouse-scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(12px);
    }
}

/* Responsividade */
@media (max-width: 1200px) {
    .container {
        padding: 30px 20px;
    }

    .logo-image {
        max-width: 350px;
    }

    .coming-soon-title {
        font-size: 3rem;
    }

    .logo-container {
        margin-bottom: 40px;
    }

    .content {
        margin-bottom: 40px;
    }
}

@media (max-width: 1024px) {
    .logo-image {
        max-width: 320px;
    }

    .coming-soon-title {
        font-size: 2.5rem;
    }

    .coming-soon-subtitle {
        font-size: 1.15rem;
        margin-bottom: 35px;
    }

    .contact-card {
        padding: 25px 20px;
        max-width: 450px;
    }

    .contact-details {
        flex-direction: column;
    }

    .contact-item {
        max-width: 100%;
    }

    .contact-card h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 25px 15px;
    }

    .logo-image {
        max-width: 280px;
    }

    .logo-container {
        margin-bottom: 35px;
    }

    .coming-soon-title {
        font-size: 2rem;
        gap: 6px;
        margin-bottom: 20px;
    }

    .coming-soon-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 5px;
    }

    .badge {
        font-size: 0.7rem;
        padding: 6px 16px;
        margin-bottom: 20px;
    }

    .features-preview {
        gap: 15px;
    }

    .feature-item {
        min-width: 110px;
        padding: 18px 15px;
    }

    .contact-card {
        padding: 25px 18px;
        border-radius: 20px;
        max-width: 400px;
    }

    .contact-card h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .contact-details {
        flex-direction: column;
    }

    .contact-item {
        padding: 12px 15px;
        max-width: 100%;
    }

    .contact-item a {
        font-size: 1rem;
    }

    .orb-1,
    .orb-2,
    .orb-3 {
        width: 300px;
        height: 300px;
    }

    .content {
        margin-bottom: 35px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 12px;
    }

    .logo-image {
        max-width: 220px;
    }

    .logo-container {
        margin-bottom: 30px;
    }

    .coming-soon-title {
        font-size: 1.6rem;
        gap: 5px;
        margin-bottom: 15px;
    }

    .title-line {
        font-size: 0.95em;
    }

    .coming-soon-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }

    .badge {
        font-size: 0.65rem;
        padding: 5px 14px;
        margin-bottom: 15px;
    }

    .features-preview {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .feature-item {
        width: 100%;
        max-width: 180px;
        padding: 15px 12px;
    }

    .contact-card {
        padding: 20px 15px;
        border-radius: 16px;
        max-width: 100%;
    }

    .contact-card h3 {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }

    .contact-details {
        flex-direction: column;
    }

    .contact-item {
        padding: 12px 12px;
        gap: 12px;
        max-width: 100%;
    }

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

    .contact-item a {
        font-size: 0.95rem;
    }

    .orb-1,
    .orb-2,
    .orb-3 {
        width: 200px;
        height: 200px;
    }

    .content {
        margin-bottom: 30px;
    }
}

@media (max-width: 360px) {
    .logo-image {
        max-width: 180px;
    }

    .coming-soon-title {
        font-size: 1.4rem;
    }

    .coming-soon-subtitle {
        font-size: 0.85rem;
    }
}

/* Efeitos de partículas (opcional - pode ser adicionado com JS) */
.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: particle-float 10s linear infinite;
    pointer-events: none;
    will-change: transform;
}

/* A animação inclui variáveis CSS --mx/--my para permitir atração do mouse
   sem sobrescrever o keyframe por JS. */
@keyframes particle-float {
    0% {
        transform: translate(var(--mx, 0px), var(--my, 0px)) translateY(100vh) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translate(var(--mx, 0px), var(--my, 0px)) translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

.lp-shell {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 100%;
    color: var(--accent-color);
}

.lp-shell .container {
    max-width: 1120px;
    padding: 0 24px;
}

.lp-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 16, 32, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.lp-header.scrolled {
    background: rgba(10, 16, 32, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-bottom-color: rgba(212, 175, 55, 0.3);
}

.lp-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 26px 0;
}

.lp-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
}

.lp-logo {
    height: 46px;
    width: auto;
    display: block;
}

.lp-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.lp-menu a {
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.lp-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.lp-menu a:hover {
    color: var(--gold-accent);
}

.lp-menu a:hover::after {
    width: 100%;
}

.lp-actions {
    display: none;
    align-items: center;
    gap: 14px;
}

.lp-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.lp-link:hover {
    color: var(--gold-accent);
}

.lp-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    border: none;
    background: var(--gradient-gold);
    color: #0a1020;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    cursor: pointer;
    appearance: none;
    position: relative;
    overflow: hidden;
}

.lp-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.lp-cta:hover::before {
    left: 100%;
}

.lp-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: var(--gradient-gold-hover);
}

.lp-cta:active {
    transform: translateY(-1px) scale(1);
}

.lp-main {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lp-hero {
    padding: 80px 0 120px;
}

.lp-hero-logo {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lp-logo-subtitle {
    color: #ffffff;
    /* White as requested */
    font-size: 1.1rem;
    text-transform: lowercase;
    /* Lowercase as requested */
    letter-spacing: 3px;
    margin-top: 0.5rem;
    font-weight: 300;
    opacity: 0.9;
}

.lp-logo-large {
    max-width: 280px;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(212, 175, 55, 0.2));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.lp-logo-large:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 12px 32px rgba(212, 175, 55, 0.35));
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    align-items: stretch;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
    color: var(--gold-accent);
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    margin-bottom: 18px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
}

.lp-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.25);
}

.lp-hero-copy h1 {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.15;
    margin-bottom: 22px;
    animation: fadeInUp 0.55s ease-out;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lp-hero-copy .lp-hero-highlight {
    display: block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.lp-hero-copy p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 32px;
}

.lp-hero-marquee {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 26px 0;
}

.lp-hero-marquee span {
    font-family: 'Inter', sans-serif;
    padding: 10px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(28, 78, 255, 0.2) 0%, rgba(61, 90, 128, 0.2) 100%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    animation: marqueeFloat 4s ease-in-out infinite alternate;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.lp-hero-marquee span:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(28, 78, 255, 0.3) 0%, rgba(61, 90, 128, 0.3) 100%);
    box-shadow: 0 4px 12px rgba(28, 78, 255, 0.2);
}

@keyframes marqueeFloat {
    0% {
        transform: translateY(0);
        opacity: 0.8;
    }

    100% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

.lp-hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.lp-hero-panel {
    display: block;
}

.lp-hero-security-card {
    position: relative;
    background: rgba(10, 16, 32, 0.86);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 26px;
    padding: 40px 36px;
    box-shadow: 0 24px 60px rgba(5, 10, 22, 0.55), 0 0 0 1px rgba(212, 175, 55, 0.1) inset;
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.lp-hero-security-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
    opacity: 0.6;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.lp-hero-security-card:hover::before {
    transform: scaleX(1);
}

.lp-hero-security-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 80px rgba(5, 10, 22, 0.65), 0 0 0 1px rgba(212, 175, 55, 0.2) inset;
    border-color: rgba(212, 175, 55, 0.3);
}

.lp-security-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-hero-security-card:hover .lp-security-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.5);
}

.lp-security-icon-svg {
    width: 36px;
    height: 36px;
    color: var(--gold-accent);
    stroke-width: 2;
}

.lp-hero-security-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.lp-security-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.lp-security-subtext {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0 0 28px 0;
    font-style: italic;
}

.lp-cta-secondary {
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.5);
    color: var(--gold-accent);
    box-shadow: none;
    margin-top: auto;
}

.lp-cta-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-accent);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.lp-hero-form-wrapper {
    position: relative;
    background: rgba(10, 16, 32, 0.86);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 26px;
    padding: 32px 32px;
    box-shadow: 0 24px 60px rgba(5, 10, 22, 0.55), 0 0 0 1px rgba(212, 175, 55, 0.1) inset;
    backdrop-filter: blur(20px);
    overflow: hidden;
    width: 100%;
    max-width: none;
    transition: all 0.3s ease;
}

.lp-hero-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
    opacity: 0.6;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.lp-hero-form-wrapper:hover::before {
    transform: scaleX(1);
}

.lp-hero-form-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: none;
    pointer-events: none;
}

.lp-hero-form {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 1;
}

.lp-form-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.18);
    color: var(--gold-accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.75rem;
    align-self: flex-start;
}

.lp-hero-form h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    margin: 0;
    color: var(--gold-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.lp-form-subtitle {
    margin: 0 0 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.lp-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.lp-form-group label {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.lp-form-group input,
.lp-form-group textarea {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(5, 9, 18, 0.8);
    color: #ffffff;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-form-group input:focus,
.lp-form-group textarea:focus {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15), 0 4px 12px rgba(212, 175, 55, 0.1);
    background: rgba(5, 9, 18, 0.95);
    transform: translateY(-1px);
}

.lp-form-group input::placeholder,
.lp-form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}


.lp-form-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.lp-form-group-textarea textarea {
    min-height: 90px;
}

.lp-cta-full {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}

.lp-icon {
    width: 32px;
    height: 32px;
    display: inline-block;
    color: currentColor;
}

.lp-panel-card {
    padding: 24px;
    border-radius: 18px;
    background: rgba(10, 16, 32, 0.82);
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-panel-card strong {
    font-size: 1.8rem;
    color: var(--gold-accent);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lp-panel-card span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.lp-panel-card em {
    font-size: 0.85rem;
    color: rgba(231, 179, 86, 0.75);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.lp-panel-card.highlight {
    border-color: rgba(212, 175, 55, 0.42);
    box-shadow: 0 24px 70px rgba(212, 175, 55, 0.28);
}

.lp-section {
    position: relative;
    padding: 80px 0;

}

.lp-section>.container>* {
    animation: fadeInUp 0.45s ease-out backwards;
}

.lp-section>.container>*:nth-child(1) {
    animation-delay: 0.08s;
}

.lp-section>.container>*:nth-child(2) {
    animation-delay: 0.16s;
}

.lp-section>.container>*:nth-child(3) {
    animation-delay: 0.24s;
}

.lp-section>.container>*:nth-child(4) {
    animation-delay: 0.32s;
}

.lp-tag {
    display: flex;
    width: fit-content;
    margin: 0 auto 20px;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;

    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.lp-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.15);
}

.lp-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 3.4vw, 44px);
    margin-bottom: 12px;
    line-height: 1.18;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lp-section {
    padding: 40px 0;
}

.lp-section-dark {
    background: linear-gradient(160deg, rgba(10, 16, 32, 0.82), rgba(5, 10, 20, 0.82));
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

#estrutura,
#intermediacao {
    position: relative;
    /* overflow: hidden; Removed to allow borders to show */
    background: transparent;

}

#estrutura::before,
#intermediacao::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(160deg, rgba(10, 16, 32, 0.75), rgba(0, 0, 0, 0.7)), url('assets/images/quematendemosbg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0.008;
    pointer-events: none;
    z-index: 0;
}

#publico {
    position: relative;
    overflow: hidden;

}

#publico .container,
#estrutura .container,
#intermediacao .container {
    position: relative;
    z-index: 1;
}



#publico h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 20px;
}

#publico .lp-lead {
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    max-width: 1170px;
    margin: 0 auto 50px;
    font-size: 1rem;
    line-height: 1.7;
}

.lp-publico-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.lp-publico-card {
    padding: 36px 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.lp-publico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lp-publico-card:hover::before {
    opacity: 1;
}

.lp-publico-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(212, 175, 55, 0.3);
}

.lp-publico-card:hover .lp-publico-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.lp-publico-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(212, 175, 55, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.lp-publico-icon-svg {
    width: 32px;
    height: 32px;
    color: var(--gold-accent);
    stroke-width: 2;
}

.lp-publico-card h3 {
    margin: 0 0 12px 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.3;
}

.lp-publico-card p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.lp-section-alt {
    position: relative;
    background: linear-gradient(160deg, rgba(30, 46, 78, 0.8), rgba(16, 24, 44, 0.78));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(12, 16, 28, 0.45);
    overflow: hidden;
}

.lp-section-accent {
    position: relative;
    background: linear-gradient(150deg, rgba(18, 28, 42, 0.92), rgba(10, 14, 24, 0.92));
    border-top: 1px solid rgba(61, 90, 128, 0.26);
    border-bottom: 1px solid rgba(24, 38, 58, 0.4);
    overflow: hidden;
}

.lp-section-contrast {
    position: relative;
    overflow: hidden;
    background: rgba(4, 6, 12, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
}

.lp-section-contrast::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10, 16, 32, 0.6), rgba(0, 0, 0, 0.55)), url('assets/images/quematendemosbg.png');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
    opacity: 0.008;
    pointer-events: none;
}

.lp-section-contrast::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.12), transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(61, 90, 128, 0.16), transparent 50%);
    opacity: 0.8;
    pointer-events: none;
}

.lp-section-highlight {
    position: relative;
    background: rgba(10, 16, 32, 0.78);
    border-top: none;
    border-bottom: none;
    overflow: hidden;
}



.lp-section-highlight::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.10), transparent 45%),
        radial-gradient(circle at 80% 80%, rgba(61, 90, 128, 0.16), transparent 55%);
    opacity: 0.6;
    pointer-events: none;
}

.lp-split {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 40px;
}

.lp-insight-panel {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-self: center;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

.lp-insight-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px;
    padding: 18px 20px;
    width: 100%;
    border-radius: 14px;
    background: rgba(11, 17, 32, 0.86);
    border: 1px solid rgba(212, 175, 55, 0.26);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(10px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.lp-insight-item:hover {
    transform: translateY(-6px);
    background: rgba(16, 24, 44, 0.94);
    border-color: rgba(212, 175, 55, 0.42);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45);
}

.lp-insight-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.16);
    border: 1px solid rgba(212, 175, 55, 0.32);
}

.lp-insight-icon-wrap img {
    width: 22px;
    height: 22px;
    display: block;
}

.lp-insight-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lp-insight-body h3 {
    margin: 0;
    font-size: 1.08rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--gold-accent);
    line-height: 1.12;
}

.lp-insight-body p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.32;
}

.lp-benefit-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    margin: 26px 0;
}

.lp-benefit-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px 18px;
    border-radius: 18px;
    background: rgba(28, 78, 255, 0.18);
    border: 1px solid rgba(28, 78, 255, 0.26);
    box-shadow: 0 18px 40px rgba(12, 22, 48, 0.35);
}

.lp-benefit-item .lp-icon {
    width: 32px;
    height: 32px;
    color: var(--gold-accent);
    flex-shrink: 0;
}

.lp-benefit-item strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.lp-benefit-item span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.4;
}

.lp-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.lp-tag-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(61, 90, 128, 0.26);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.lp-lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 22px;
}

.lp-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-top: 18px;
}

.lp-segment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.lp-segment-tags span {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.16);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.85rem;
    letter-spacing: 0.03em;
}

.lp-list {
    list-style: none;
    display: grid;
    gap: 14px;
    margin: 0 0 16px;
    padding: 0;
}

.lp-list li {
    position: relative;
    padding-left: 26px;
    color: rgba(255, 255, 255, 0.8);
}

.lp-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold-accent);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.6);
}

.lp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    margin-top: 36px;
}

.lp-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.16);
    color: var(--gold-accent);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.lp-structure-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.lp-structure-card {
    padding: 36px 28px;
    border-radius: 20px;
    background: rgba(10, 16, 32, 0.86);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(212, 175, 55, 0.18);
    border: 1px solid rgba(212, 175, 55, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.lp-structure-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lp-structure-card:hover::after {
    opacity: 1;
}

.lp-structure-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(212, 175, 55, 0.28);
}

.lp-structure-card:hover .lp-structure-icon-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.lp-structure-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.lp-structure-card .lp-icon {
    width: 32px;
    height: 32px;
    color: var(--gold-accent);
}

.lp-structure-icon {
    width: 32px;
    height: 32px;
    color: var(--gold-accent);
    stroke-width: 2.5;
    display: block;
    margin: 0 auto;
}

.lp-structure-card h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.lp-structure-card p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.5;
}



#estrutura h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 700;
    font-size: clamp(30px, 3.4vw, 44px);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#estrutura .lp-lead {
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    max-width: 910px;
    margin: 0 auto 40px;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}



#proposta h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
}

#proposta .lp-lead {
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    max-width: 1170px;
    margin: 0 auto 50px;
    font-size: 1rem;
    line-height: 1.7;
}

.lp-proposta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.lp-proposta-card {
    padding: 40px 32px;
    border-radius: 20px;
    background: rgba(10, 16, 32, 0.86);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(212, 175, 55, 0.18);
    border: 1px solid rgba(212, 175, 55, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.lp-proposta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.lp-proposta-card:hover::before {
    transform: scaleX(1);
}

.lp-proposta-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(212, 175, 55, 0.28);
}

.lp-proposta-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.25);
}

.lp-proposta-card:hover .lp-proposta-icon-circle {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

.lp-proposta-icon {
    width: 40px;
    height: 40px;
    color: var(--gold-accent);
    stroke-width: 2;
}

.lp-proposta-card h3 {
    margin: 0 0 16px 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.lp-proposta-card p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

.lp-proposta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.lp-proposta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f97316;
    color: #1f2937;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
    position: relative;
    overflow: hidden;
}

.lp-proposta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.lp-proposta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.lp-proposta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
    border-color: #ea580c;
}

.lp-proposta-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.lp-proposta-btn-icon {
    width: 16px;
    height: 16px;
    color: #f97316;
    stroke-width: 3;
}

/* Seguranca content integrated into structure section */
.lp-seguranca-content {
    text-align: center;
    padding: 40px 20px 60px;
    /* Reduced top padding for better integration */
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.lp-seguranca-main-text {
    margin: 0;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

.lp-seguranca-highlight {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: 'Playfair Display', serif;
    display: inline-block;
    letter-spacing: 0.02em;
    line-height: 1.3;
    animation: shimmer 3s ease-in-out infinite;
}

.lp-seguranca-subtext {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 800px;
}

#contato h2 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
}

#contato .lp-lead {
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    max-width: 1170px;
    margin: 0 auto 50px;
    font-size: 1rem;
    line-height: 1.7;
}

.lp-contact-form-wrapper {
    position: relative;
    background: rgba(10, 16, 32, 0.86);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 26px;
    padding: 32px 32px;
    box-shadow: 0 24px 60px rgba(5, 10, 22, 0.55), 0 0 0 1px rgba(212, 175, 55, 0.1) inset;
    backdrop-filter: blur(20px);
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.lp-contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
    opacity: 0.6;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.lp-contact-form-wrapper:hover::before {
    transform: scaleX(1);
}

.lp-contact-form-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: none;
    pointer-events: none;
}

.lp-compliance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.lp-compliance-card {
    padding: 36px 32px;
    border-radius: 20px;
    background: rgba(10, 16, 32, 0.69);
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(212, 175, 55, 0.14);
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.lp-compliance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.lp-compliance-card:hover::before {
    transform: scaleY(1);
}

.lp-compliance-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(212, 175, 55, 0.28);
}

.lp-compliance-card:hover .lp-compliance-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.lp-compliance-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    border: 2px solid #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.lp-compliance-card>div:last-child {
    flex: 1;
}

.lp-compliance-card .lp-icon {
    width: 24px;
    height: 24px;
    color: var(--gold-accent);
}

.lp-compliance-card h3 {
    margin: 0 0 12px 0;
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.lp-compliance-card p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

.lp-intermediation-content {
    text-align: center;
    padding: 80px 20px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.lp-intermediation-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.lp-intermediation-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.lp-intermediation-text {
    margin: 0;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

.lp-intermediation-text:last-child {
    margin-bottom: 0;
}

.lp-intermediation-highlight {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: 'Playfair Display', serif;
    display: inline-block;
    letter-spacing: 0.02em;
    line-height: 1.3;
    position: relative;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

.lp-check-list {
    list-style: none;
    padding: 22px 20px;
    margin: 0;
    border-radius: 18px;
    background: rgba(10, 16, 32, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    display: grid;
    gap: 12px;
}

.lp-check-list li {
    position: relative;
    padding-left: 26px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    line-height: 1.4;
}

.lp-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold-accent);
    font-weight: 700;
}

.lp-feature {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 26px 24px;
    background: rgba(10, 16, 32, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    backdrop-filter: blur(12px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lp-feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.45);
}

.lp-feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-feature-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, 0.38);
    background: rgba(212, 175, 55, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.lp-feature-icon-wrap img {
    width: 32px;
    height: 32px;
    display: block;
}

.lp-feature-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-accent);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.lp-feature h3 {
    font-size: 1.12rem;
    color: var(--gold-accent);
}

.lp-feature p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.lp-note {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 16px;
    background: rgba(212, 175, 55, 0.18);
    color: var(--gold-accent);
    font-weight: 600;
    margin: 26px 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.lp-info-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.lp-info-card {
    padding: 26px 24px;
    border-radius: 20px;
    background: rgba(7, 11, 22, 0.78);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
    display: grid;
    gap: 10px;
}

.lp-info-card h3 {
    font-size: 1.05rem;
    color: var(--gold-accent);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.lp-info-card p {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.95rem;
    line-height: 1.5;
}

.lp-info-card .lp-icon {
    width: 38px;
    height: 38px;
    color: var(--gold-accent);
}

.lp-quote {
    margin-top: 28px;
    padding: 24px 28px;
    border-left: 3px solid rgba(212, 175, 55, 0.6);
    background: rgba(10, 16, 32, 0.65);
    color: rgba(255, 255, 255, 0.82);
    font-style: italic;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
}

.lp-steps {
    position: relative;
    display: grid;
    gap: 24px;
    margin-top: 40px;
    padding-left: 18px;
}

.lp-steps::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08), rgba(212, 175, 55, 0.4));
}

.lp-step {
    display: flex;
    gap: 18px;
    padding: 24px;
    border-radius: 18px;
    background: rgba(9, 14, 28, 0.78);
    border: 1px solid rgba(61, 90, 128, 0.28);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.38);
    position: relative;
    overflow: hidden;
}

.lp-step::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 40px;
    bottom: -24px;
    width: 2px;
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.22), rgba(61, 90, 128, 0));
    opacity: 0.4;
}

.lp-step:last-child::before {
    display: none;
}

.lp-step-number {
    height: 44px;
    width: 44px;
    border-radius: 14px;
    background: rgba(61, 90, 128, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35);
}

.lp-step h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.lp-step p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.lp-security {
    margin-top: 18px;
    padding: 32px;
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(61, 90, 128, 0.12), rgba(7, 11, 22, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.38);
    display: grid;
    gap: 18px;
}

.lp-security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.lp-security-item {
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(10, 16, 32, 0.82);
    border: 1px solid rgba(61, 90, 128, 0.28);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.lp-section-contrast .container,
.lp-section-contrast .lp-security {
    position: relative;
    z-index: 1;
}

.lp-section-contrast .lp-tag,
.lp-section-contrast h2,
.lp-section-contrast .lp-text,
.lp-section-contrast .lp-security-item,
.lp-section-contrast p {
    color: rgba(255, 255, 255, 0.85);
}

.lp-partner-ribbon {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px 0;
}

.lp-partner-ribbon span {
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(28, 78, 255, 0.22);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.lp-final-cta {
    padding: 70px 32px;
    border-radius: 30px;
    background: linear-gradient(155deg, rgba(61, 90, 128, 0.28), rgba(7, 11, 22, 0.9));
    border: 1px solid rgba(61, 90, 128, 0.28);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    text-align: center;
    display: grid;
    gap: 18px;
    margin-bottom: 40px;
}

.lp-final-cta p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    max-width: 640px;
    margin: 0 auto;
}

.lp-badge.glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-accent);
    letter-spacing: 0.08em;
    font-size: 0.90rem;
    box-shadow: 0 10px 34px rgba(212, 175, 55, 0.28);
    margin: 0 auto 10px;
}

.lp-footer {
    padding: 40px 0 0;
    position: relative;
    background: radial-gradient(circle at center bottom, rgba(212, 175, 55, 0.08) 0%, #000000 70%), #000000;
    border-top: 1px solid rgba(212, 175, 55, 0.15);

    display: flex;
    flex-direction: column;
    z-index: 10;
    opacity: 1;
    height: auto;
}

.lp-footer * {
    visibility: visible !important;
    opacity: 1 !important;
}

.lp-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-align: left;
    position: relative;
    z-index: 20;
}

.lp-footer .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.lp-footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lp-footer-col-brand {
    align-items: flex-start;
}

.lp-footer-col-nav {
    align-items: center;
}

.lp-footer-col-contact {
    align-items: flex-end;
}

.lp-footer-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-bottom: 20px;
}

.lp-footer-brand-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lp-footer-brand-center .lp-footer-logo {
    width: 180px;
    height: auto;
}

.lp-footer-brand-center .lp-logo-subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.lp-footer-info-center {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.lp-footer-col h4 {
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.lp-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    padding: 0;
    margin: 0;
}

.lp-footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s ease;
}

.lp-footer-links a:hover {
    color: var(--gold-accent);
}

.lp-footer-logo {
    width: 208px;
    height: auto;
}

.lp-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.lp-footer-brand .lp-logo-subtitle {
    font-size: 0.85rem;
    letter-spacing: 2.2px;
    margin-top: 0.4rem;
}

.lp-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    justify-content: center;
}

.lp-footer-contact a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    backdrop-filter: blur(5px);
}

.lp-footer-contact a:hover {
    color: #ffffff;
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
}

.lp-footer-contact a i {
    color: var(--gold-accent);
    transition: transform 0.3s ease;
}

.lp-footer-contact a:hover i {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.lp-footer-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    text-align: left;
    margin-top: 10px;
}

.lp-footer-bottom {
    width: 100%;
    padding: 15px 0;
    margin-top: 20px;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.lp-footer-bottom span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

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

    .lp-footer-col-brand,
    .lp-footer-col-nav,
    .lp-footer-col-contact {
        align-items: center;
    }

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

    .lp-footer-contact {
        align-items: center;
    }

    .lp-footer-info {
        align-items: center;
        text-align: center;
    }

    .lp-menu {
        gap: 16px;
    }

    .lp-nav {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .lp-nav {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        padding: 20px 0;
    }

    .lp-menu {
        width: auto;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 12px;
    }

    .lp-actions {
        width: auto;
        justify-content: flex-end;
        flex-wrap: nowrap;
    }

    .lp-hero-logo {
        margin-bottom: 40px;
    }

    .lp-logo-large {
        height: 80px;
    }

    .lp-hero-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 32px;
    }

    .lp-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .lp-final-cta {
        padding: 48px 24px;
    }

    .lp-security {
        padding: 28px 22px;
    }

    .lp-section {
        padding: 60px 0;
    }

    .lp-hero {
        padding: 120px 0 60px;
    }

    .lp-hero-form-wrapper {
        padding: 28px 24px;
    }

    .lp-split {
        grid-template-columns: 1fr;
    }

    .lp-hero-form-wrapper {
        max-width: none;
        margin-left: 0;
    }

    .lp-insight-panel {
        gap: 16px;
    }

    .lp-insight-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px;
    }

    .lp-structure-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .lp-structure-card {
        padding: 24px 20px;
    }

    .lp-proposta-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .lp-proposta-card {
        padding: 32px 24px;
    }

    .lp-proposta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .lp-proposta-btn {
        width: 100%;
        justify-content: center;
    }

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

    .lp-publico-card {
        padding: 28px 24px;
    }

    .lp-compliance-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .lp-compliance-card {
        padding: 24px 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .lp-compliance-icon {
        margin-bottom: 12px;
    }

    .lp-intermediation-content {
        padding: 60px 20px;
    }

    .lp-intermediation-highlight {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .lp-intermediation-text {
        font-size: 1.2rem;
    }

    .lp-seguranca-content {
        padding: 60px 20px;
        gap: 24px;
    }

    .lp-seguranca-highlight {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .lp-seguranca-subtext {
        font-size: 1rem;
    }

    .lp-insight-icon-wrap {
        width: 34px;
        height: 34px;
        border-radius: 11px;
    }

    .lp-insight-icon-wrap img {
        width: 20px;
        height: 20px;
    }

    /* Mobile Logo Override */
    .lp-logo {
        content: url('assets/bpo-pix-logo_apenas_texto.png');
        height: 32px;
        /* Adjust height for text logo */
    }
}

@media (max-width: 520px) {
    .lp-shell .container {
        padding: 0 18px;
    }

    .lp-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .lp-hero-form-wrapper {
        padding: 28px 22px;
        max-width: none;
        margin-left: 0;
    }

    .lp-hero-security-card {
        padding: 32px 24px;
    }

    .lp-hero-security-card h3 {
        font-size: 1.3rem;
    }

    .lp-security-text {
        font-size: 0.95rem;
    }

    .lp-security-subtext {
        font-size: 0.9rem;
    }

    .lp-contact-form-wrapper {
        padding: 28px 22px;
        max-width: none;
    }

    .lp-form-grid {
        grid-template-columns: 1fr;
    }

    .lp-structure-grid {
        grid-template-columns: 1fr;
    }

    .lp-publico-grid {
        grid-template-columns: 1fr;
    }

    .lp-menu {
        flex-direction: column;
        align-items: flex-start;
    }

    .lp-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .lp-footer-grid {
        flex-direction: column;
    }

    .lp-step {
        flex-direction: column;
    }

    .lp-steps {
        padding-left: 0;
    }

    .lp-steps::before,
    .lp-step::before {
        display: none;
    }

    .lp-hero-marquee {
        flex-direction: column;
    }
}

.lp-burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(10, 16, 32, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.25);
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-direction: column;
    cursor: pointer;
}

.lp-burger span {
    width: 22px;
    height: 2px;
    background: #fff;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

body.menu-open .lp-burger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

body.menu-open .lp-burger span:nth-child(2) {
    opacity: 0;
}

body.menu-open .lp-burger span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 860px) {
    .lp-nav {
        justify-content: flex-end;
    }

    .lp-actions {
        display: flex;
    }

    .lp-burger {
        display: inline-flex;
    }

    .lp-menu {
        position: absolute;
        top: 100%;
        right: 24px;
        left: 24px;
        background: rgba(10, 16, 32, 0.96);
        border: 1px solid rgba(212, 175, 55, 0.25);
        border-radius: 16px;
        padding: 14px;
        display: none;
        flex-direction: column;
        gap: 8px;
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.45);
    }

    body.menu-open .lp-menu {
        display: flex;
    }

    .lp-menu a {
        padding: 10px 12px;
    }
}

.fab-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #0a1020;
    border: none;
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.35);
    z-index: 5;
    text-decoration: none !important;
    line-height: 0;
}

.fab-whatsapp:hover,
.fab-whatsapp:focus,
.fab-whatsapp:active,
.fab-whatsapp:visited {
    text-decoration: none !important;
}

.fab-whatsapp .lp-icon,
.fab-whatsapp [data-lucide] {
    width: 26px;
    height: 26px;
    color: #ffffff;
}

/* Font Awesome WhatsApp icon size */
.fab-whatsapp .fa-whatsapp {
    font-size: 30px;
    line-height: 1;
    color: #ffffff;
}

.fab-top {
    position: fixed;
    left: 20px;
    bottom: 86px;
    display: none;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--gold-accent);
    border: none;
    box-shadow: none;
    padding: 4px;
    z-index: 5;
}

.fab-top .lp-icon,
.fab-top [data-lucide] {
    width: 28px;
    height: 28px;
}

.lp-toast {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--gold-accent);
    color: #000000;
    font-weight: 600;
    border: 2px solid #ffffff;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2147483647;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 300px;
}

.lp-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* Light Section Theme */
.lp-section-light {
    background-color: #e2e8f0;
    background-image:
        radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.12), transparent 45%),
        radial-gradient(circle at 100% 100%, rgba(61, 90, 128, 0.12), transparent 45%),
        linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    color: #1a202c;
    position: relative;
    z-index: 10;
}

.lp-section-light .lp-tag {
    background: transparent;
    color: #0a1520;
    border: 1px solid #0a1520;
    box-shadow: none;
    background-image: none;
}

.lp-section-light h2 {
    background: none;
    -webkit-text-fill-color: initial;
    background-clip: border-box;
    -webkit-background-clip: border-box;
    color: #0a1520;
}

.lp-section-light .lp-lead {
    color: #4a5568;
}

/* Cards in Light Section */
.lp-section-light .lp-proposta-card,
.lp-section-light .lp-publico-card,
.lp-section-light .lp-structure-card,
.lp-section-light .contact-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.lp-section-light .lp-proposta-card:hover,
.lp-section-light .lp-publico-card:hover,
.lp-section-light .lp-structure-card:hover,
.lp-section-light .contact-card:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #d4af37;
}

.lp-section-light h3,
.lp-section-light .lp-proposta-card h3,
.lp-section-light .lp-publico-card h3,
.lp-section-light .lp-structure-card h3,
.lp-section-light .contact-card h3 {
    color: #1a202c;
}

.lp-section-light p,
.lp-section-light .lp-proposta-card p,
.lp-section-light .lp-publico-card p,
.lp-section-light .lp-structure-card p,
.lp-section-light .contact-card p,
.lp-section-light .contact-item a {
    color: #4a5568;
}

.lp-section-light .contact-item {
    background: #f7fafc;
    border: 1px solid #edf2f7;
}

.lp-section-light .contact-item:hover {
    background: #edf2f7;
}

/* Icons in Light Section */
.lp-section-light .lp-proposta-icon-circle,
.lp-section-light .lp-structure-icon-circle,
.lp-section-light .lp-publico-icon {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.lp-section-light .lp-proposta-icon,
.lp-section-light .lp-structure-icon,
.lp-section-light .lp-publico-icon-svg {
    color: #b8941f;
}

/* Buttons in Light Section */
.lp-section-light .lp-proposta-btn {
    background: #ffffff;
    color: #2d3748;
    border: 1px solid #e2e8f0;
}

.lp-section-light .lp-proposta-btn:hover {
    border-color: #d4af37;
    color: #b8941f;
}

/* Form in Light Section */
.lp-section-light .lp-hero-form-wrapper {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.lp-section-light .lp-form-group input,
.lp-section-light .lp-form-group textarea {
    background: #f7fafc;
    border-color: #cbd5e0;
    color: #1a202c;
}

.lp-section-light .lp-form-group input:focus,
.lp-section-light .lp-form-group textarea:focus {
    background: #ffffff;
    border-color: #d4af37;
}

.lp-section-light .lp-form-group input::placeholder,
.lp-section-light .lp-form-group textarea::placeholder {
    color: #a0aec0;
}

.lp-section-light .lp-form-group label {
    color: #4a5568;
}

/* Seguranca Section Specifics for Light Theme */
.lp-section-light .lp-seguranca-main-text {
    color: #1a202c;
}

.lp-section-light .lp-seguranca-highlight {
    background: none;
    -webkit-text-fill-color: initial;
    background-clip: border-box;
    -webkit-background-clip: border-box;
    color: #0a1520;
    animation: none;
}

.lp-section-light .lp-seguranca-subtext {
    color: #4a5568;
}

/* Dark Section Refinement */
.lp-section-dark {
    background: transparent;
    /* Borders removed to use dynamic scroll lines */
    border-top: none;
    border-bottom: none;
}

/* Specificity Fixes for #publico */
#publico.lp-section-light h2 {
    color: #0a1520;
}



#publico.lp-section-light .lp-lead {
    color: #4a5568;
}

#publico.lp-section-light .lp-publico-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-color: #e2e8f0;
}

#publico.lp-section-light .lp-publico-card:hover {
    background: #ffffff;
    border-color: #d4af37;
}

#publico.lp-section-light .lp-publico-card h3 {
    color: #1a202c;
}

#publico.lp-section-light .lp-publico-card p {
    color: #4a5568;
}

/* Specificity Fixes for #estrutura */
#estrutura.lp-section-light {
    background-color: #e2e8f0;
    background-image:
        radial-gradient(circle at 0% 0%, rgba(212, 175, 55, 0.12), transparent 45%),
        radial-gradient(circle at 100% 100%, rgba(61, 90, 128, 0.12), transparent 45%),
        linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

#estrutura.lp-section-light h2 {
    color: #0a1520;
}



#estrutura.lp-section-light .lp-lead {
    color: #4a5568;
}

#estrutura.lp-section-light .lp-structure-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-color: #e2e8f0;
}

/* Specificity increased with body to avoid !important */
body #estrutura.lp-section-light .lp-structure-card:hover {
    background: #ffffff;
    border-color: var(--gold-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Disable the golden gradient overlay for this section */
body #estrutura.lp-section-light .lp-structure-card::after {
    display: none;
    opacity: 0;
    content: none;
}

#estrutura.lp-section-light .lp-structure-card h3 {
    color: #1a202c;
}

#estrutura.lp-section-light .lp-structure-card p {
    color: #4a5568;
}

/* Ensure background image doesn't darken the light section too much */
#estrutura.lp-section-light::before {
    opacity: 0.02;
    background-image: none;
}



/* Specificity Fixes for #proposta */
#proposta.lp-section-light {
    overflow: visible;
    /* Allow hover effects to pop out */
}

#proposta.lp-section-light h2 {
    color: #0a1520;
}



#proposta.lp-section-light .lp-lead {
    color: #4a5568;
}

/* Enhanced Card Styles for Proposta */
#proposta.lp-section-light {
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
    /* Ensure a light background exists */
}

#proposta-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

#proposta.lp-section-light .lp-proposta-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#proposta.lp-section-light .lp-proposta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

#proposta.lp-section-light .lp-proposta-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px -5px rgba(212, 175, 55, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

#proposta.lp-section-light .lp-proposta-card:hover::before {
    transform: scaleX(1);
}

#proposta.lp-section-light .lp-proposta-card h3 {
    color: #1a202c;
    font-size: 1.35rem;
    margin-bottom: 12px;
}

#proposta.lp-section-light .lp-proposta-card p {
    color: #4a5568;
    font-size: 0.95rem;
}

/* Icon Circle Enhancement */
#proposta.lp-section-light .lp-proposta-icon-circle {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(255, 255, 255, 0.5) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: #b8941f;
    width: 70px;
    height: 70px;
    margin-bottom: 24px;
    transition: all 0.5s ease;
    position: relative;
}

#proposta.lp-section-light .lp-proposta-card:hover .lp-proposta-icon-circle {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    border-color: transparent;
}

#proposta.lp-section-light .lp-proposta-icon {
    transition: color 0.3s ease;
}

#proposta.lp-section-light .lp-proposta-card:hover .lp-proposta-icon {
    transform: scale(1.1);
    color: #ffffff;
}

/* Ecosystem Background for Publico */
#publico.lp-section-dark {
    position: relative;
    overflow: hidden;
}

#publico-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
    /* Increased visibility */
}

#publico.lp-section-dark .container {
    position: relative;
    z-index: 1;
}

/* Structure Background for Estrutura */
#estrutura.lp-section-light {
    position: relative;
    overflow: hidden;
}

#estrutura-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

#estrutura.lp-section-light .container {
    position: relative;
    z-index: 1;
}

/* Contact Background for Contato */
#contato.lp-section-dark {
    position: relative;
    overflow: hidden;
}

#contato-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

#contato.lp-section-dark .container {
    position: relative;
    z-index: 1;
}

/* Enhanced Buttons / Feature Tags */
.lp-proposta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.lp-proposta-btn {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 12px 24px;
    border-radius: 50px;
    color: #4a5568;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    cursor: default;
    /* Make it look like a tag, not a clickable button if it doesn't do anything */
}

.lp-proposta-btn-icon {
    width: 18px;
    height: 18px;
    color: #10b981;
    /* Green checkmark */
    stroke-width: 3;
}

.lp-proposta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-color: #d4af37;
    color: #1a202c;
}

/* Add a decorative background element behind the grid */
#proposta.lp-section-light .container {
    position: relative;
}

/* Golden Line Scroll Effect - Consolidated */
.lp-section {
    position: relative;
    --w-top: 0%;
    --h-side: 0%;
    --w-bot: 0%;
}

/* Border Lines - DOM Elements Strategy */
.lp-border-line {
    position: absolute;
    background-color: #d4af37;
    z-index: 20;
    pointer-events: none;
    box-shadow: 0 0 4px rgba(212, 175, 55, 0.5);
    transition: width 0.1s linear, height 0.1s linear;
}

.lp-border-top-left {
    top: 0;
    left: 0;
    height: 4px;
    width: var(--w-top);
}

.lp-border-top-right {
    top: 0;
    right: 0;
    height: 4px;
    width: var(--w-top);
}

/* Side borders removed as per request */
.lp-border-side-left,
.lp-border-side-right {
    display: none;
}

/* Cleanup old pseudo-elements */
.lp-section::before,
.lp-section::after {
    display: none;
}

/* Title Highlight when border is active */
.lp-section.active-border .lp-tag {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    border-color: #d4af37;
    transform: scale(1.05);
}

/* Custom Hero CTA */
.lp-cta-hero-custom {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    height: auto;
    text-align: left;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 14px;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-decoration: none;
    white-space: normal;
    max-width: 100%;
    position: relative;
    z-index: 10;
}

.lp-cta-hero-custom:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.2) 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
}

.lp-cta-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lp-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(0.65rem, 2.5vw + 0.5rem, 1.07rem);
    /* Fluid typography to fit on one line */
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    white-space: nowrap;
}

.lp-cta-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    /* Increased by 50% from 0.8rem */
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

.lp-cta-icon {
    width: 24px;
    height: 24px;
    color: var(--gold-accent);
    transition: transform 0.3s ease;
}

.lp-cta-hero-custom:hover .lp-cta-icon {
    transform: translateX(4px);
}

.lp-hero-copy {
    position: relative;
    z-index: 5;
}

/* Segurança Jurídica Section */
.lp-seguranca-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.lp-seguranca-feature {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.lp-seguranca-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.lp-seguranca-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.lp-seguranca-icon {
    color: var(--gold-accent);
    width: 32px;
    height: 32px;
}

.lp-seguranca-feature h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--accent-color);
    margin: 0;
}

.lp-seguranca-feature p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.lp-seguranca-cta-box {
    background: linear-gradient(135deg, rgba(10, 21, 32, 0.8), rgba(26, 35, 50, 0.8));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    backdrop-filter: blur(10px);
}

.lp-seguranca-cta-box p {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--accent-color);
    margin: 0;
}

@media (max-width: 768px) {
    .lp-seguranca-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .lp-seguranca-cta-box {
        padding: 30px 20px;
    }

    .lp-seguranca-cta-box p {
        font-size: 1.1rem;
    }
}

/* New Content Styling */
.lp-definition-box {
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid var(--gold-accent);
    padding: 30px;
    margin-bottom: 50px;
    border-radius: 0 16px 16px 0;
    backdrop-filter: blur(10px);
}

.lp-definition-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold-accent);
    margin-bottom: 20px;
}

.lp-definition-box p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.text-gold {
    color: var(--gold-accent);
    font-weight: 600;
}

.lp-definition-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(212, 175, 55, 0.1);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.lp-definition-icon {
    color: var(--gold-accent);
    min-width: 24px;
    height: 24px;
}

.lp-definition-highlight span {
    font-weight: 500;
    color: var(--accent-color);
    font-size: 1.05rem;
}

.lp-conclusion-content {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

.lp-conclusion-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: inline-block;
    border-bottom: 2px solid var(--gold-accent);
    padding-bottom: 5px;
}

.lp-conclusion-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.lp-conclusion-highlight {
    font-size: 1.2rem !important;
    color: var(--accent-color) !important;
    font-weight: 500;
    font-style: italic;
}

@media (max-width: 768px) {
    .lp-definition-box {
        padding: 20px;
    }

    .lp-definition-box h3 {
        font-size: 1.5rem;
    }

    .lp-definition-highlight {
        flex-direction: column;
        text-align: center;
    }

    .lp-conclusion-content h3 {
        font-size: 1.6rem;
    }
}

/* Horizontal Card Layout Refinement */
.lp-seguranca-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.lp-seguranca-feature {
    flex-direction: row;
    align-items: flex-start;
    gap: 25px;
    padding: 35px;
    background: rgba(10, 16, 32, 0.75);
    /* Darker semi-transparent background for contrast */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    border-radius: 16px;
    /* Ensure rounded corners */
}

.lp-feature-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-seguranca-feature h3 {
    margin-bottom: 5px;
}

.lp-seguranca-feature p {
    margin-bottom: 0;
}

.lp-seguranca-icon-box {
    margin-bottom: 0;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .lp-seguranca-grid {
        grid-template-columns: 1fr;
    }

    .lp-seguranca-feature {
        flex-direction: column;
        align-items: flex-start;
    }

    .lp-seguranca-icon-box {
        margin-bottom: 15px;
    }
}

/* Security Canvas Styling */
#security-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    /* Let clicks pass through */
}

#seguranca-juridica {
    position: relative;
    overflow: hidden;
    /* Contain the canvas */
}

#seguranca-juridica h2 {
    color: #ffffff !important;
    position: relative;
    z-index: 1;
}

/* Section Header Box for Readability */
.lp-section-header-box {
    background: rgba(10, 16, 32, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 30px;
    /* Reduced from 40px */
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 50px;
    text-align: center;
    /* Ensure text is centered */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.lp-section-header-box .lp-lead {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Extra readability */
    margin-bottom: 0;
    /* Remove default margin to reduce empty space */
}

/* Maquininha Highlight Section */
.lp-maquininha-highlight {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    margin-top: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* Add a subtle gold accent line at the top */
.lp-maquininha-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
}

.lp-maquininha-header {
    text-align: center;
    margin-bottom: 40px;
}

.lp-maquininha-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #0a1520;
    /* Dark color for contrast on white */
    margin-bottom: 15px;
    font-weight: 700;
}

.lp-benefit-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-dark);
    /* Darker gold for better contrast */
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.lp-rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.lp-rate-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.lp-rate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    border-color: var(--gold-accent);
}

.lp-rate-label {
    display: block;
    font-size: 1rem;
    color: #4a5568;
    /* Dark gray for label */
    margin-bottom: 10px;
    font-weight: 500;
}

.lp-rate-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a1520;
    /* Dark blue for value */
    font-family: 'Inter', sans-serif;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .lp-maquininha-highlight {
        padding: 30px 20px;
    }

    .lp-maquininha-header h3 {
        font-size: 1.5rem;
    }

    .lp-rates-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 columns on mobile */
    }
}

@media (max-width: 480px) {
    .lp-rates-grid {
        grid-template-columns: 1fr;
        /* 1 column on very small screens */
    }
}

/* Contact Section Light Theme Overrides */
#contato.lp-section-light {
    background-color: #ffffff;
    color: #0a1520;
}

#contato.lp-section-light h2 {
    color: #0a1520;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    /* Match other section headers */
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

#contato.lp-section-light .lp-lead {
    color: #4a5568;
}



/* Form Styles for Light Background */
#contato.lp-section-light .lp-contact-form-wrapper {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

#contato.lp-section-light .lp-form-group label {
    color: #4a5568;
    font-weight: 600;
}

#contato.lp-section-light .lp-input,
#contato.lp-section-light .lp-textarea {
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    color: #0a1520;
}

#contato.lp-section-light .lp-input:focus,
#contato.lp-section-light .lp-textarea:focus {
    background: #ffffff;
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

#contato.lp-section-light .lp-input::placeholder,
#contato.lp-section-light .lp-textarea::placeholder {
    color: #a0aec0;
}

/* Compliance Cards for Light Background */
#contato.lp-section-light .lp-compliance-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

#contato.lp-section-light .lp-compliance-card h4 {
    color: #0a1520;
}

#contato.lp-section-light .lp-compliance-card p {
    color: #4a5568;
}

#contato.lp-section-light .lp-compliance-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--gold-accent);
}

/* Floating Contact Icons */
.lp-contact-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.lp-float-icon {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    color: var(--gold-dark);
    animation: float-icon 6s ease-in-out infinite;
}

.lp-float-icon i {
    width: 24px;
    height: 24px;
}

/* Icon Positions & Sizes */
.lp-float-icon.icon-1 {
    width: 60px;
    height: 60px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.lp-float-icon.icon-2 {
    width: 50px;
    height: 50px;
    top: 25%;
    right: 15%;
    animation-delay: 1s;
    color: #4a5568;
}

.lp-float-icon.icon-3 {
    width: 70px;
    height: 70px;
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.lp-float-icon.icon-4 {
    width: 45px;
    height: 45px;
    bottom: 30%;
    right: 10%;
    animation-delay: 3s;
    color: #4a5568;
}

.lp-float-icon.icon-5 {
    width: 55px;
    height: 55px;
    top: 10%;
    right: 35%;
    animation-delay: 1.5s;
    opacity: 0.6;
}

@keyframes float-icon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Ensure container is relative for absolute positioning */
#contato {
    position: relative;
}

/* Header CTA Button */
.lp-btn-header {
    background: var(--gradient-gold);
    color: #0a1020 !important;
    /* Force dark text color */
    padding: 8px 20px !important;
    /* Override default link padding */
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    border: none;
}

.lp-btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
    background: var(--gradient-gold-hover);
    color: #0a1020 !important;
}

.lp-btn-header::after {
    display: none !important;
    /* Remove the underline effect from menu links */
}

/* Form Validation Feedback */
.lp-form-group input:not(:placeholder-shown):valid,
.lp-form-group textarea:not(:placeholder-shown):valid {
    border-color: #10b981;
    /* Green */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.lp-form-group input:not(:placeholder-shown):invalid,
.lp-form-group textarea:not(:placeholder-shown):invalid {
    border-color: #ef4444;
    /* Red */
}

/* Adjust for light theme */
#contato.lp-section-light .lp-form-group input:not(:placeholder-shown):valid,
#contato.lp-section-light .lp-form-group textarea:not(:placeholder-shown):valid {
    background-color: #f0fdf4;
}

#contato.lp-section-light .lp-form-group input:not(:placeholder-shown):invalid,
#contato.lp-section-light .lp-form-group textarea:not(:placeholder-shown):invalid {
    background-color: #fef2f2;
}

/* Improve contrast for form chip in light contact section */
#contato.lp-section-light .lp-form-chip {
    background: rgba(0, 0, 0, 0.05);
    color: #4a5568;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.lp-contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
    overflow: hidden;
    /* Prevent scrollbar during animation */
}

.lp-contact-form-wrapper {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.lp-contact-form-wrapper.visible {
    opacity: 1;
    transform: translateX(0);
}

.lp-contact-alternatives {
    text-align: left;
    margin-top: 0;
    padding-top: 20px;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out 0.2s, transform 0.8s ease-out 0.2s;
}

.lp-contact-alternatives.visible {
    opacity: 1;
    transform: translateX(0);
}

.lp-contact-alternatives h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #0a1520;
    margin-bottom: 15px;
}

.lp-contact-alternatives p {
    color: #4a5568;
    margin-bottom: 30px;
    font-size: 1rem;
}

.lp-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lp-contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.lp-contact-method:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--gold-accent);
}

.lp-contact-method .icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-accent);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.lp-contact-method:hover .icon-circle {
    background: var(--gold-accent);
    color: #ffffff;
}

.lp-contact-method .contact-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lp-contact-method .label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #718096;
    font-weight: 600;
}

.lp-contact-method .value {
    font-size: 1.1rem;
    color: #0a1520;
    font-weight: 500;
}

@media (max-width: 992px) {
    .lp-contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .lp-contact-alternatives {
        text-align: center;
        padding-top: 0;
    }

    .lp-contact-methods {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .lp-contact-method {
        flex: 1;
        min-width: 280px;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .lp-contact-methods {
        flex-direction: column;
        align-items: stretch;
    }

    .lp-contact-method {
        min-width: auto;
        width: 100%;
        padding: 15px;
        gap: 15px;
    }

    .lp-contact-method .icon-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .lp-contact-method .value {
        font-size: 0.95rem;
        word-break: break-word;
    }

    .lp-contact-alternatives h3 {
        font-size: 1.5rem;
    }

    .lp-contact-alternatives p {
        font-size: 0.9rem;
    }

    .lp-cta-hero-custom {
        padding: 10px 12px;
        /* Reduce horizontal padding */
        width: 100%;
        /* Ensure it uses full width available if needed */
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .lp-cta-hero-custom .lp-cta-icon {
        transform: rotate(90deg);
    }

    .lp-cta-hero-custom:hover .lp-cta-icon {
        transform: rotate(90deg) translateX(4px);
    }
}

@media (max-width: 768px) {
    .lp-hero-copy {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .lp-cta-hero-custom {
        margin: 20px auto 0;
        text-align: center;
        justify-content: center;
    }

    .lp-cta-content {
        align-items: center;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 0;
        /* Align to top on mobile, header covers padding */
    }
}
/* Mobile Adjustments for Hero Section - Added by Antigravity */
@media (max-width: 768px) {
    /* Adjust Hero Title */
    .lp-hero-copy h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    /* Adjust CTA Button */
    .lp-cta-hero-custom {
        padding: 12px 16px;
        width: 100%;
        justify-content: space-between;
        margin-top: 15px;
        flex-wrap: nowrap; /* Ensure icon stays to the right */
    }

    .lp-cta-content {
        max-width: calc(100% - 30px); /* Leave space for icon */
    }

    .lp-cta-title {
        font-size: 0.9rem;
        white-space: normal; /* Allow wrapping on small screens */
        line-height: 1.3;
    }

    .lp-cta-subtitle {
        font-size: 1rem; /* Reduce from 1.2rem */
        margin-top: 4px;
    }
    
    .lp-cta-icon {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    /* Adjust Security Card */
    .lp-hero-security-card {
        padding: 24px 20px;
        margin-top: 30px;
    }
    
    .lp-hero-security-card h3 {
        font-size: 1.4rem;
    }
    
    .lp-security-text, .lp-security-subtext {
        font-size: 0.95rem;
    }

    /* Ensure Grid Stacks */
    .lp-hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .lp-hero-copy h1 {
        font-size: 1.8rem;
    }
    
    .lp-cta-hero-custom {
        padding: 12px;
    }
    
    .lp-cta-title {
        font-size: 0.85rem;
    }
    
    .lp-cta-subtitle {
        font-size: 0.95rem;
    }
}
