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

:root {
    /* Colors - UPDATED */
    --primary-red: #dd2b10;      /* cor principal */
    --secondary-red: #a13525;    /* tom secundário, mais escuro */
    --dark-red: #701f14;         /* tom mais escuro ainda */
    --neon-red: #ff543d;         /* tom vibrante / neon */
    --black: #000000;
    --dark-gray: #0a0a0a;
    --medium-gray: #1a1a1a;
    --light-gray: #2a2a2a;
    --white: #ffffff;
    --text-gray: #cccccc;
    
    /* Gradients - UPDATED */
    --gradient-primary: linear-gradient(135deg, var(--primary-red), var(--neon-red));
    --gradient-dark: linear-gradient(135deg, var(--black), var(--dark-gray));
    --gradient-card: linear-gradient(135deg, rgba(187, 61, 43, 0.1), rgba(255, 84, 61, 0.05));

    /* Shadows - UPDATED */
    --shadow-neon: 0 0 20px rgba(187, 61, 43, 0.3);
    --shadow-neon-strong: 0 0 40px rgba(187, 61, 43, 0.5);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

}

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

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 98%, rgba(248, 3, 3, 0.03) 100%),
        linear-gradient(180deg, transparent 98%, rgba(248, 3, 3, 0.03) 100%);
    background-size: 50px 50px;
    animation: matrix-scroll 20s linear infinite;
}

@keyframes matrix-scroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-red);
    border-radius: 50%;
    box-shadow: 
        0 0 10px var(--primary-red),
        20px 30px 0 var(--neon-red),
        40px 70px 0 var(--primary-red),
        90px 40px 0 var(--neon-red),
        120px 80px 0 var(--primary-red);
    animation: float 15s linear infinite;
}

.floating-particles::after {
    animation-delay: -7.5s;
    transform: translateX(50vw);
}

@keyframes float {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10%, 90% { opacity: 1; }
    50% { transform: translateY(-10vh) rotate(180deg); }
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(248, 3, 3, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(248, 3, 3, 0.1) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: grid-pulse 4s ease-in-out infinite;
}

@keyframes grid-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.1; }
}

.neural-network {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(248, 3, 3, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 26, 26, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(248, 3, 3, 0.05) 0%, transparent 70%);
    animation: neural-pulse 8s ease-in-out infinite;
}

@keyframes neural-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(248, 3, 3, 0.2);
    padding: 1rem 0;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    position: relative;
    width: 40px;
    height: 40px;
}

.logo-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: var(--shadow-neon);
}

.logo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    border-top-color: transparent;
    animation: logo-spin 3s linear infinite;
}

.logo-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-red);
    border-radius: 50%;
    animation: logo-pulse 2s ease-in-out infinite;
}

@keyframes logo-spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes logo-pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    position: relative;
    color: var(--text-gray);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
}

.nav-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover .nav-glow,
.nav-link.active .nav-glow {
    opacity: 1;
}

/* Buttons */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid var(--primary-red);
    border-radius: 8px;
    color: var(--primary-red);
    font-family: var(--font-primary);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

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

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

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover .btn-glow {
    left: 100%;
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.hero-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(248, 3, 64, 0.1);
    border: 1px solid var(--primary-red);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--primary-red);
    border-radius: 50px;
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #dd2b10, #ff543d);
    background: -webkit-linear-gradient(135deg, #dd2b10, #ff543d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline;
}

.text-gradient {
    /* Fallback para navegadores que não suportam gradiente em texto */
    color: #dd2b10;
    
    /* Gradiente principal */
    background: linear-gradient(135deg, #dd2b10, #ff543d);
    background: -webkit-linear-gradient(135deg, #dd2b10, #ff543d);
    background: -moz-linear-gradient(135deg, #dd2b10, #ff543d);
    background: -o-linear-gradient(135deg, #dd2b10, #ff543d);
    
    /* Aplicar gradiente ao texto */
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    
    /* Tornar o texto transparente para mostrar o gradiente */
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    text-fill-color: transparent;
    
    display: inline-block;
    
    /* Para browsers muito antigos */
    background-size: 100% 100%;
}

/* Fallback adicional para navegadores que não suportam background-clip: text */
@supports not (-webkit-background-clip: text) {
    .text-gradient {
        color: #dd2b10 !important;
        background: none !important;
    }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    margin-bottom: 2rem;
}

.hero-contact {
    display: flex;
    gap: 1rem;
}

.contact-badge {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(248, 3, 36, 0.1);
    border: 1px solid var(--primary-red);
    border-radius: 8px;
    font-weight: 500;
}

.contact-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid var(--primary-red);
    border-radius: 8px;
    animation: contact-pulse 3s ease-in-out infinite;
}

@keyframes contact-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

.flag {
    font-size: 1.2rem;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.ai-avatar {
    position: relative;
    width: 300px;
    height: 300px;
}

.avatar-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    border-top-color: transparent;
    border-right-color: transparent;
}

.ring-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    left: -100px;
    animation: ring-spin 8s linear infinite;
}

.ring-2 {
    width: 250px;
    height: 250px;
    top: -125px;
    left: -125px;
    animation: ring-spin 12s linear infinite reverse;
}

.ring-3 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation: ring-spin 16s linear infinite;
}

@keyframes ring-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.avatar-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-neon-strong);
}

.core-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    animation: core-pulse 2s ease-in-out infinite;
}

@keyframes core-pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.data-streams {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.stream {
    position: absolute;
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-red), transparent);
    border-radius: 1px;
}

.stream-1 {
    top: 20px;
    left: 50%;
    animation: stream-flow 2s ease-in-out infinite;
}

.stream-2 {
    bottom: 20px;
    left: 50%;
    animation: stream-flow 2s ease-in-out infinite 0.5s;
}

.stream-3 {
    left: 20px;
    top: 50%;
    transform: rotate(90deg);
    animation: stream-flow 2s ease-in-out infinite 1s;
}

.stream-4 {
    right: 20px;
    top: 50%;
    transform: rotate(90deg);
    animation: stream-flow 2s ease-in-out infinite 1.5s;
}

@keyframes stream-flow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--primary-red);
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: status-blink 1.5s ease-in-out infinite;
}

@keyframes status-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Features Bar */
.features-bar {
    padding: 2rem 0;
    background: rgba(248, 3, 3, 0.05);
    border-top: 1px solid rgba(248, 3, 36, 0.2);
    border-bottom: 1px solid rgba(248, 3, 64, 0.2);
}

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

.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.feature-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(248, 3, 117, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-2px);
    border-color: var(--primary-red);
}

.feature-icon {
    font-size: 1.5rem;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.feature-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 3, 3, 0.1);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover .feature-glow {
    opacity: 1;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(248, 3, 3, 0.1);
    border: 1px solid var(--primary-red);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
}

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: rgba(248, 3, 3, 0.05);
    border: 1px solid rgba(248, 3, 3, 0.2);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-neon);
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(248, 3, 3, 0.1);
}

.accordion-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.accordion-text {
    flex: 1;
}

.accordion-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.accordion-text p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.accordion-chevron {
    font-size: 1.2rem;
    color: var(--primary-red);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-chevron {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
}

.feature-grid {
    padding: 0 1.5rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.feature-grid .feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 0, 106, 0.2);
    border-radius: 6px;
}

.bullet {
    width: 6px;
    height: 6px;
    background: var(--primary-red);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-red);
}

/* How it Works Section */
.how-it-works-section {
    padding: 6rem 0;
    background: rgba(248, 3, 3, 0.02);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    position: relative;
    text-align: center;
    padding: 2rem;
    background: var(--gradient-card);
    border: 1px solid rgba(248, 3, 3, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: var(--shadow-neon);
}

.step-number {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.number-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    animation: number-pulse 2s ease-in-out infinite;
}

@keyframes number-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-gray);
    line-height: 1.6;
}

.step-connector {
    position: absolute;
    top: 30px;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), transparent);
}

.step-item:last-child .step-connector {
    display: none;
}

/* Results Section */
.results-section {
    padding: 6rem 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.result-card {
    position: relative;
    text-align: center;
    padding: 2rem;
    background: var(--gradient-card);
    border: 1px solid rgba(248, 3, 3, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: var(--shadow-neon);
}

.result-value {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.result-label {
    color: var(--text-gray);
    font-weight: 500;
}

.result-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(248, 3, 23, 0.1);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: rgba(248, 3, 3, 0.02);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(248, 3, 3, 0.05);
    border: 1px solid rgba(248, 3, 3, 0.2);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-red);
    box-shadow: var(--shadow-neon);
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-header:hover {
    background: rgba(248, 3, 3, 0.1);
}

.faq-question {
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-chevron {
    color: var(--primary-red);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

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

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

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-card {
    padding: 3rem;
    background: var(--gradient-card);
    border: 1px solid rgba(248, 3, 3, 0.2);
    border-radius: 12px;
    box-shadow: var(--shadow-neon);
}

.contact-form-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(248, 3, 117, 0.3);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-primary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 15px rgba(248, 3, 117, 0.4);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-gray);
}

/* Footer */
.footer {
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(248, 3, 3, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-text {
    color: var(--text-gray);
}

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

.footer-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-red);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-form-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

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

/* Logo na navbar */
.logo-image {
    height: 50px;
    width: auto;
}


.core-inner::before {
    display: none; /* Remove o ícone SVG anterior */
}

.core-pulse {
    width: 160px;
    height: 160px;
}

/* Ajustar os rings para o novo tamanho */
.ring-1 {
    width: 240px;
    height: 240px;
    top: -120px;
    left: -120px;
}

.ring-2 {
    width: 290px;
    height: 290px;
    top: -145px;
    left: -145px;
}

.ring-3 {
    width: 340px;
    height: 340px;
    top: -170px;
    left: -170px;
}

.logo-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

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

/* Remover o ring-1 (mais interno) */
.ring-1 {
    display: none;
}

/* Aumentar a imagem do avatar */
.avatar-image {
    width: 240px;
    height: 240px;
}

/* Ajustar o core-inner para acomodar a imagem maior */
.core-inner {
    width: 240px;
    height: 240px;
    
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Ajustar o core-pulse */
.core-pulse {
    width: 240px;
    height: 240px;
}

/* Ajustar o avatar-core */
.avatar-core {
    width: 240px;
    height: 240px;
}

/* Corrige estilo do autocomplete/autofill do navegador para inputs do formulário */
input.form-input:-webkit-autofill,
input.form-input:-webkit-autofill:focus,
input.form-input:-webkit-autofill:hover,
input.form-input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px rgba(0,0,0,0.5) inset !important;
  box-shadow: 0 0 0 1000px rgba(0,0,0,0.5) inset !important;
  -webkit-text-fill-color: #fff !important;
  border: 1px solid #ff543d !important;
  transition: background-color 5000s ease-in-out 0s;
}