:root {
    --realqty-dark-blue: #0A192F;
    --realqty-graphite: #2C3E50;
    --realqty-emerald-green: #2ECC71;
    --realqty-electric-blue: #007bff;
    --realqty-white-paper: #F8F9FA;
    --realqty-text-light: #E0E0E0;
    --realqty-text-dark: #343A40;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--realqty-text-dark);
    background-color: var(--realqty-white-paper);
}

.bg-dark-blue {
    background-color: var(--realqty-dark-blue);
}

.bg-graphite {
    background-color: var(--realqty-graphite);
}

.border-emerald-green {
    border-color: var(--realqty-emerald-green) !important;
}

.bg-emerald-green {
    background-color: var(--realqty-emerald-green) !important;
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
}

.bg-emerald-light {
    background-color: rgba(46, 204, 113, 0.1);
}

.text-emerald-green {
    color: var(--realqty-emerald-green);
}

/* Navbar */
.realqty-navbar {
    background-color: var(--realqty-dark-blue);
    padding: 1rem 0;
}

.realqty-logo {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--realqty-emerald-green) !important; /* Cor para o logo */
}

.realqty-navbar .nav-link {
    color: var(--realqty-text-light) !important;
    font-weight: 500;
    margin-right: 1.5rem;
    transition: color 0.3s ease;
}

.realqty-navbar .nav-link:hover,
.realqty-navbar .nav-link.active {
    color: var(--realqty-emerald-green) !important;
}

/* Botões */
.realqty-btn-primary {
    background-color: var(--realqty-emerald-green);
    border-color: var(--realqty-emerald-green);
    color: var(--realqty-dark-blue); /* Texto escuro no botão primário */
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.realqty-btn-primary:hover {
    background-color: #27AE60; /* Verde um pouco mais escuro no hover */
    border-color: #27AE60;
    color: var(--realqty-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.realqty-btn-outline-light {
    border: 2px solid var(--realqty-text-light);
    color: var(--realqty-text-light);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.realqty-btn-outline-light:hover {
    background-color: var(--realqty-text-light);
    color: var(--realqty-dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.realqty-hero {
    min-height: 80vh;
    background: linear-gradient(rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.85)),
                url('https://source.unsplash.com/1600x900/?industrial,robotics') no-repeat center center / cover;
    color: var(--realqty-text-light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.realqty-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.1);
    pointer-events: none;
}


.realqty-hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.realqty-hero p.lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Seções de Conteúdo */
.realqty-section-white {
    background-color: var(--realqty-white-paper);
    padding: 4rem 0;
}

.realqty-section-dark {
    background-color: var(--realqty-graphite);
    color: var(--realqty-text-light);
    padding: 4rem 0;
}

.realqty-heading-dark {
    color: var(--realqty-dark-blue);
    font-weight: 700;
    font-size: 2.5rem;
}

.realqty-heading-light {
    color: var(--realqty-text-light);
    font-weight: 700;
    font-size: 2.5rem;
}

/* Cards de Soluções */
.realqty-card {
    background-color: #ffffff;
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 1.5rem;
}

.realqty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.realqty-card-title {
    color: var(--realqty-dark-blue);
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

.realqty-icon-primary {
    color: var(--realqty-emerald-green);
    font-size: 3.5rem;
    line-height: 1;
}

/* CTA Section */
.realqty-cta {
    background-color: var(--realqty-graphite);
    padding: 6rem 0;
}

/* Footer */
.realqty-footer {
    background-color: var(--realqty-dark-blue);
    color: var(--realqty-text-light);
    padding: 3rem 0;
}

.realqty-logo-footer {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--realqty-emerald-green) !important;
    margin-bottom: 1rem;
}

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

.realqty-footer .realqty-link-light:hover {
    color: var(--realqty-emerald-green);
    text-decoration: underline;
}

/* Secção de Estatísticas */
.realqty-stats {
    background-color: var(--realqty-white-paper);
    border-bottom: 1px solid #dee2e6;
    padding: 60px 0;
}

.stat-item h2 {
    color: var(--realqty-dark-blue);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--realqty-emerald-green);
    letter-spacing: 1px;
}

/* Step Cards para Tokenização */
.step-card {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--realqty-graphite);
    transition: all 0.3s ease;
}

.step-card.active-step {
    background: rgba(46, 204, 113, 0.1);
    border-left-color: var(--realqty-emerald-green);
}

.step-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--realqty-emerald-green);
    background: rgba(46, 204, 113, 0.2);
    width: fit-content;
    padding: 4px 12px;
    border-radius: 4px;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

h2.realqty-heading-light {
    letter-spacing: -1px;
    font-weight: 700;
}

/* Secção Estilo Propchain */
.realqty-partnership {
    background-color: var(--realqty-dark-blue);
    overflow: hidden;
}

.partnership-content {
    max-width: 600px;
    color: #ffffff;
}

.partnership-content h2 {
    line-height: 1.1;
    letter-spacing: -1px;
}

.partnership-content p {
    color: #a0aaba;
    font-size: 1.15rem;
    line-height: 1.6;
}

.realqty-btn-glow {
    background-color: #ffffff;
    color: var(--realqty-dark-blue);
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.realqty-btn-glow:hover {
    background-color: var(--realqty-emerald-green);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.4);
    transform: translateY(-2px);
}

/* Container da Imagem e Efeito de Luz */
.partnership-image-container {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.partnership-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.6) contrast(1.1) saturate(0.8);
    transition: filter 0.5s ease;
}

.partnership-image:hover {
    filter: brightness(0.8) contrast(1.1) saturate(1);
}

.partnership-glow {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.2) 0%, rgba(10, 25, 47, 0) 70%);
    pointer-events: none;
}

/* Estilo Blog para Leitura Confortável */
.blog-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #444;
}
.blog-content h2 {
    color: var(--realqty-dark-blue);
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.blog-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}
.privacy-hero {
    background-color: var(--realqty-dark-blue);
    padding: 80px 0;
    border-bottom: 5px solid var(--realqty-emerald-green);
}
.last-update {
    color: var(--realqty-emerald-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}


@media (max-width: 992px) {
    .realqty-hero {
        min-height: 60vh;
    }
    .realqty-hero h1 {
        font-size: 2.5rem;
    }
    .realqty-hero p.lead {
        font-size: 1rem;
    }
    .realqty-navbar .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    .realqty-navbar .nav-link {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    .realqty-navbar .realqty-btn-primary {
        display: block;
        width: fit-content;
        margin: 1rem auto;
    }

    .partnership-image-container {
        min-height: 350px;
    }
    .partnership-glow {
        display: none;
    }
}

@media (max-width: 768px) {
    .realqty-hero {
        min-height: 50vh;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .realqty-hero h1 {
        font-size: 2rem;
    }
    .realqty-section-white, .realqty-section-dark, .realqty-cta, .realqty-footer {
        padding: 3rem 0;
    }
    .realqty-heading-dark, .realqty-heading-light {
        font-size: 2rem;
    }
}