:root {
    /* Color Palette (Light Theme based on logo) */
    --bg-main: #FFFFFF;
    --bg-card: rgba(0, 0, 0, 0.02);
    --bg-card-hover: rgba(0, 0, 0, 0.05);
    --primary: #10B981;
    /* Green */
    --primary-hover: #059669;
    /* Darker Green */
    --secondary: #EF4444;
    /* Red */
    --secondary-hover: #DC2626;
    /* Darker Red */
    --dark: #000000;
    /* Black for strong details */

    /* Text Colors */
    --text-main: #000000;
    --text-muted: #4B5563;

    /* Variables */
    --glass-border: rgba(0, 0, 0, 0.08);
    --border-radius: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


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

html {
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    /* Subtle background glow based on new colors */
    background-image:
        radial-gradient(circle at 15% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(239, 68, 68, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

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

/* Typography */
h1,
h2,
h3 {
    line-height: 1.2;
    font-weight: 800;
    color: var(--dark);
}

h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    letter-spacing: -1px;
    margin-bottom: 24px;
}

h1 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

p {
    color: var(--text-muted);
    font-size: 1.125rem;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    gap: 8px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--dark);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: #222;
}

.btn-secondary {
    background: var(--bg-main);
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

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


.logo {
    font-family: 'Playpen Sans', cursive;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -2px;
    display: inline-flex;
    align-items: baseline;
    line-height: 1;
    position: relative;
    width: max-content;
}

.logo-text {
    color: var(--dark);
    position: relative;
    display: inline-block;
    z-index: 2;
}

.logo-dot {
    color: var(--secondary);
    /* Vermelho sólido */
    font-size: 3.5rem;
    line-height: 0.5;
    margin-left: 2px;
    z-index: 2;
}

.logo-arc {
    position: absolute;
    right: -12px;
    bottom: -8px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 5px solid var(--primary);
    /* Verde */
    border-left-color: transparent;
    border-top-color: transparent;
    transform: rotate(-25deg);
    /* Rotaciona para envolver o ponto por baixo e pela direita */
    filter: drop-shadow(0 0 12px rgba(16, 185, 129, 0.5));
    /* Brilho suave */
    z-index: 1;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text p {
    margin-bottom: 40px;
    font-size: 1.25rem;
    max-width: 90%;
}

.cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-group.justify-center {
    justify-content: center;
}

.hero-image {
    position: relative;
    perspective: 1000px;
}

.glow-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.hero-image .iphone-mockup {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: block;
    transform: rotateY(-15deg) rotateX(10deg);
    transition: transform 0.5s ease;
}

.hero-image:hover .iphone-mockup {
    transform: rotateY(-5deg) rotateX(5deg) translateY(-10px);
}

/* Vision Section */
.vision-section {
    padding: 100px 0;
}

.vision-content {
    display: flex;
    align-items: center;
    gap: 60px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.vision-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
}

.vision-text {
    flex: 1;
}

.vision-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--dark);
}

.vision-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 20px;
}

.vision-text p:last-child {
    margin-bottom: 0;
}

.vision-text strong {
    color: var(--dark);
    font-weight: 800;
}

.vision-stats {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--glass-border);
}

.stat-box h3 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-text h3 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.feature-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.feature-row.reverse .feature-text {
    order: 2;
}

.feature-row.reverse .feature-image {
    order: 1;
}

.feature-image .iphone-mockup {
    width: 100%;
    max-width: 380px;
    /* Reduzi um pouco o tamanho máximo para caber bem na tela */
    margin: 0 auto;
}

/* iPhone Mockup Styles */
.iphone-mockup {
    position: relative;
    border: 10px solid #111;
    border-radius: 38px;
    background-color: #000;
    box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3), 0 20px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.iphone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 45%;
    height: 22px;
    background-color: #111;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    z-index: 10;
}

.iphone-mockup img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 28px;
    border: none;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(239, 68, 68, 0.05));
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
    filter: blur(40px);
    z-index: -1;
}

.cta-box h2 {
    margin-bottom: 24px;
}

.cta-box p {
    margin-bottom: 40px;
    font-size: 1.25rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 60px 0 30px;
    background-color: var(--bg-card);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand p {
    margin-top: 8px;
    font-size: 0.9rem;
}

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

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    transition-delay: 0.2s;
}

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

    .hero-text p {
        margin: 0 auto 40px;
    }

    .cta-group {
        justify-content: center;
    }

    .hero-image .iphone-mockup {
        transform: rotateY(0) rotateX(0);
    }

    .hero-image:hover .iphone-mockup {
        transform: translateY(-10px);
    }

    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .feature-row.reverse .feature-text {
        order: 1;
    }

    .feature-row.reverse .feature-image {
        order: 2;
    }

    .feature-icon {
        margin: 0 auto 24px;
    }

    .vision-content {
        flex-direction: column;
        padding: 40px 20px;
        gap: 40px;
    }

    .vision-text p {
        font-size: 1.1rem;
    }

    .vision-stats {
        flex: auto;
        width: 100%;
        flex-direction: row;
        gap: 20px;
    }

    .stat-box {
        flex: 1;
        padding: 20px;
    }

    .stat-box h3 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }

    .btn-lg {
        width: 100%;
    }

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