:root {
    --primary: #ff4d6d;
    --primary-foreground: #ffffff;
    --secondary: #ff8fa3;
    --background: #11070b;
    --foreground: #fcfcfc;
    --muted: #1f1519;
    --muted-foreground: #a39da0;
    --border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Utils */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.font-serif { font-family: 'Playfair Display', serif; }
.font-bold { font-weight: bold; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.relative { position: relative; }
.absolute { position: absolute; }
.w-full { width: 100%; }
.h-full { height: 100%; }

/* Glassmorphism */
.glass {
    background: rgba(10, 5, 8, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

/* Texto Gradiente */
.gradient-text {
    background: linear-gradient(to right, #ff4d6d, #ff8fa3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 77, 109, 0.4);
}

/* Animações */
@keyframes heart-beat {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.15); }
    20% { transform: scale(1); }
    30% { transform: scale(1.15); }
    40% { transform: scale(1); }
}

.animate-heart-beat {
    animation: heart-beat 2s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float 6s ease-in-out infinite;
    animation-delay: 3s;
}

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

.animate-pulse-glow {
    animation: pulse-glow 8s ease-in-out infinite;
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    padding: 16px 0;
}

.logo-hearts {
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo-hearts svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
    fill: var(--primary);
}

.nav-buttons .btn-ghost {
    padding: 8px 16px;
    color: var(--foreground);
    border-radius: 6px;
    transition: background 0.2s;
}

.nav-buttons .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    box-shadow: 0 4px 14px rgba(255, 77, 109, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 77, 109, 0.6);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--foreground);
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 40px;
    position: relative;
    overflow: hidden;
}

.hero-bg-blur-1 {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 77, 109, 0.15);
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
}

.hero-bg-blur-2 {
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: rgba(255, 143, 163, 0.12);
    border-radius: 50%;
    filter: blur(120px);
    animation-delay: 2s;
    z-index: 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    z-index: 10;
    position: relative;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw + 1.5rem, 5rem);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    border-top: 1px solid var(--border);
    padding-top: 32px;
}

.stat-item h4 {
    font-size: 2rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
    margin-top: 4px;
    font-family: 'Inter', sans-serif;
}

/* Phone Mockup — Fiel ao DearYou */
.hero-mockup-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
}

.phone-frame {
    position: relative;
    width: 100%;
    background: linear-gradient(to bottom, #3f3f46, #27272a);
    border-radius: 3.5rem;
    padding: 3px;
    box-shadow:
        0 30px 60px -15px rgba(0, 0, 0, 0.7),
        0 0 80px rgba(255, 77, 109, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.phone-bezel-1 {
    width: 100%;
    background: linear-gradient(to bottom, #27272a, #18181b);
    border-radius: calc(3.5rem - 2px);
    padding: 2px;
}

.phone-screen-container {
    width: 100%;
    background: #000;
    border-radius: calc(3.5rem - 4px);
    overflow: hidden;
    position: relative;
    aspect-ratio: 9 / 19.5;
}

.phone-dynamic-island {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.di-camera {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1a1a1e;
    box-shadow: 0 0 0 1px #2a2a2e;
}

.di-sensor {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2a2a2e;
}

.phone-home-indicator {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 5px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    z-index: 10;
}

.phone-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Floating Icons ao redor do celular */
.floating-icon {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 3;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(255, 77, 109, 0.1);
}

.fi-1 {
    top: -24px;
    right: -24px;
    width: 64px;
    height: 64px;
    border-radius: 20px;
}

.fi-2 {
    top: 25%;
    left: -32px;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    font-size: 1.5rem;
}

.fi-3 {
    bottom: -16px;
    left: -20px;
    width: 68px;
    height: 68px;
    border-radius: 22px;
    font-size: 2rem;
}

.fi-4 {
    bottom: 33%;
    right: -24px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
}

/* Sections Commons */
.section {
    padding: 120px 0;
    position: relative;
}

.section-tagline {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 24px;
}

.section-desc {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto 64px auto;
}

/* Features */
.feature-card {
    padding: 32px;
    border-radius: 24px;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 77, 109, 0.3);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 77, 109, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: rgba(255, 77, 109, 0.2);
    transform: scale(1.1);
}

.feature-icon-wrapper svg {
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.feature-card p {
    color: var(--muted-foreground);
    font-size: 1rem;
}

/* Depoimentos */
.testimonial-card {
    padding: 40px;
    border-radius: 24px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    color: rgba(255, 77, 109, 0.1);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.author-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid rgba(255, 77, 109, 0.5);
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.25rem;
    font-family: 'Playfair Display', serif;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.stars svg {
    color: #eab308;
    fill: #eab308;
    width: 20px;
    height: 20px;
}

.testimonial-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* Como funciona */
.step-card {
    padding: 32px;
    border-radius: 24px;
    text-align: center;
    height: 100%;
}

.step-number {
    width: 64px;
    height: 64px;
    background: rgba(255, 77, 109, 0.2);
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.step-card p {
    color: var(--muted-foreground);
}

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

.faq-item {
    border-radius: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: transparent;
    width: 100%;
    text-align: left;
    color: var(--foreground);
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-question svg {
    transition: transform 0.3s;
}

.faq-item[open] .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 24px 24px;
    color: var(--muted-foreground);
    line-height: 1.7;
}

/* CTA */
.cta-wrapper {
    padding: 64px;
    border-radius: 32px;
    text-align: center;
    background: linear-gradient(to right, rgba(255, 77, 109, 0.1), rgba(255, 143, 163, 0.1));
    border: 1px solid rgba(255, 77, 109, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: var(--primary);
    filter: blur(80px);
    opacity: 0.3;
}

.cta-wrapper::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: var(--secondary);
    filter: blur(80px);
    opacity: 0.3;
}

/* Footer */
footer {
    border-top: 1px solid var(--border);
    padding: 48px 0;
}

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

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

.footer-links a {
    color: var(--muted-foreground);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--foreground);
}

/* Media Queries */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .grid-cols-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .grid-cols-2 {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}
