/* ... existing body and basic styles ... */
html {
    background:
        radial-gradient(circle at center, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%),
        url('bg_tex.jpg') center / cover no-repeat fixed;
}

body {
    margin: 0;
    padding: 0;
    color: white;
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

input, textarea, button, select {
    font-family: inherit;
}

.body_overlay {
    display: none;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    box-sizing: border-box;
    z-index: 9999;
}

header img {
    height: 40px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-cta {
    padding: 14px 32px;
    border: 1px solid white;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-cta:hover {
    background: white;
    color: black;
}

.menu-toggle {
    width: 30px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    transition: 0.3s;
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: min(400px, 90vw);
    height: 100vh;
    background: black;
    z-index: 10000;
    padding: 80px 50px;
    box-sizing: border-box;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.sidebar.open {
    transform: translateX(0);
    pointer-events: auto;
}

.sidebar-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.sidebar nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar nav ul li {
    margin-bottom: 30px;
}

.sidebar nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}

.sidebar nav ul li a:hover {
    color: rgba(255, 255, 255, 0.5);
}

main {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10%;
}

.hero-section.hero-service {
    align-items: flex-start;
    text-align: left;
    padding-top: 160px;
    padding-bottom: 100px;
    min-height: auto;
    justify-content: flex-start;
}

h1 {
    font-size: clamp(50px, 10vw, 110px);
    font-weight: 800;
    line-height: 0.9em;
    margin-bottom: 50px;
    letter-spacing: -2px;
}

#palavra-rotativa {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
}

.serv-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.hero-cta {
    margin-top: 40px;
}

a.serv-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 1 320px;
    max-width: 320px;
    text-decoration: none;
    color: white;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: 0.4s;
    box-sizing: border-box;
}

a.serv-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

a.serv-card h2 {
    font-size: 1.2rem;
    margin: 15px 0 10px 0;
    font-weight: 600;
}

a.serv-card .desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4em;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

/* Section Base */
.section {
    padding: 150px 10%;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.section h2 {
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 900;
    line-height: 0.85em;
    text-align: left;
    margin-bottom: 60px;
    letter-spacing: -4px;
    text-transform: uppercase;
}

.section-content {
    display: flex;
    align-items: center;
    gap: 100px;
    width: 100%;
    margin: 0 auto;
}

#projects .section-content{
    flex-direction: column;
}

.section-text {
    flex: 1;
}

.section-reversed {
    flex-direction: row-reverse;
}

/* Layouts */
.layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.layout-text p {
    font-size: 24px;
    line-height: 1.5;
    text-align: left;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.huge-icon {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.1);
}

.huge-icon svg {
    width: 80%;
    height: auto;
    max-width: 400px;
}

.huge-icon img {
    width: 80%;
    height: auto;
    max-width: 400px;
    object-fit: contain;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 40px;
    width: 100%;
}

.feature-box h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-box h4 i {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

.feature-box p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    text-align: left;
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(450px, 100%), 1fr));
    gap: 20px;
    width: 100%;
}

.project-card {
    position: relative;
    height: 500px;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transition: 0.5s;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.project-card .proj-logo{
    position: relative;
    z-index: 99;
    transition: 300ms ease-in-out;
}
.project-card .proj-mock{
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    gap: 0;
}




.project-card .proj-mock div{
    position: absolute;
    bottom: 0;
    z-index: 9;
    padding: 40px 0 40px 40px;
    width: 100%;
    box-sizing: border-box;
    background: #000000;
    background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.46) 75%, rgba(0, 0, 0, 0) 100%);
}
.project-card .proj-mock div h3{
    font-size: 28px;
    margin: 0;
    color: white;
}
.project-card .proj-mock div p{
    margin: 0;
    color: white;
}

.project-card:hover .proj-logo{
    opacity: 0;
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    width: 100%;
}

.contact-intro {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.contact-intro h2 {
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: normal;
    margin: 0;
}

.contact-email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 3px;
    width: fit-content;
    transition: border-color 0.2s;
}

.contact-email-link:hover {
    border-color: white;
}

.response-time {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-form input,
.contact-form textarea {
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    color: white;
    font-size: 20px;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: white;
}

.btn-primary {
    padding: 14px 32px;
    background: white;
    color: black;
    border: 1px solid white;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    width: fit-content;
    border-radius: 100px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: transparent;
    color: white;
}

.section-ctas {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

@media (max-width: 992px) {
    .section-content {
        flex-direction: column;
        gap: 50px;
        align-items: stretch;
    }

    .layout-grid,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Responsive */
@media (max-width: 1200px) {

    .web-dev-grid,
    .ia-grid,
    .design-showcase {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .design-info {
        padding-left: 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* === Service landing pages === */

.hero-eyebrow {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 30px 0;
}

.hero-emphasis {
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
}

.hero-body {
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 0 50px 0;
}

a.btn-primary {
    display: inline-block;
}

.tracks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(380px, 100%), 1fr));
    gap: 30px;
    width: 100%;
}

.track-card {
    padding: 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: 0.4s;
}

.track-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.track-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.track-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.process-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.process-steps li {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.process-steps li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.step-num {
    font-size: 36px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    min-width: 100px;
    line-height: 1;
}

.step-text h4 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.step-text p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
}

.audience-col {
    padding: 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.audience-col.col-negative {
    background: rgba(255, 255, 255, 0.01);
    opacity: 0.65;
}

.audience-col h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.audience-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.audience-col li {
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.audience-col li:first-child {
    border-top: none;
    padding-top: 0;
}

.response-time {
    margin-top: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.callout-box {
    padding: 60px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
}

.callout-box h3 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0 0 30px 0;
}

.callout-box p {
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@media (max-width: 992px) {
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .process-steps li {
        flex-direction: column;
        gap: 15px;
    }

    .step-num {
        min-width: 0;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 5%;
        background: rgba(15, 15, 15, 0.85);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .header-right {
        gap: 15px;
    }

    .btn-cta {
        padding: 10px 18px;
        font-size: 12px;
    }

    .sidebar {
        padding: 70px 35px;
    }

    .sidebar nav ul li {
        margin-bottom: 25px;
    }

    .sidebar nav ul li a {
        font-size: 20px;
    }

    .hero-section {
        padding: 0 6% 60px;
        min-height: 100vh;
    }

    .hero-section.hero-service {
        padding: 100px 6% 60px;
        min-height: auto;
        justify-content: flex-start;
        text-align: center;
        align-items: center;
    }

    .serv-cards {
        flex-wrap: nowrap;
        gap: 10px;
    }

    a.serv-card {
        flex: 1 1 0;
        max-width: none;
        padding: 16px 10px;
    }

    a.serv-card svg {
        width: 22px;
        height: 22px;
    }

    a.serv-card h2 {
        font-size: 0.75rem;
        margin: 10px 0 0 0;
        text-align: center;
        line-height: 1.2;
    }

    a.serv-card .desc {
        display: none;
    }

    h1 {
        font-size: clamp(40px, 11vw, 80px);
        letter-spacing: -1px;
        margin-bottom: 30px;
    }

    .hero-eyebrow {
        font-size: 12px;
        letter-spacing: 3px;
        margin-bottom: 20px;
    }

    .hero-body {
        font-size: 17px;
        margin-bottom: 35px;
    }

    .section {
        padding: 70px 6%;
    }

    .section h2 {
        font-size: clamp(40px, 11vw, 80px);
        letter-spacing: -1.5px;
        margin-bottom: 35px;
        text-align: center;
        width: 100%;
    }

    .section-content {
        gap: 30px;
    }

    .huge-icon {
        display: none;
    }

    .layout-text p {
        font-size: 18px;
        margin-bottom: 25px;
        text-align: center;
    }

    .features-grid {
        gap: 30px;
    }

    .feature-box h4 {
        font-size: 20px;
    }

    .track-card {
        padding: 30px;
    }

    .track-card h3 {
        font-size: 22px;
    }

    .audience-col {
        padding: 30px;
    }

    .audience-col h3 {
        font-size: 18px;
    }

    .process-steps li {
        padding: 30px 0;
    }

    .step-num {
        font-size: 28px;
        text-align: center;
        width: 100%;
    }

    .process-steps li {
        align-items: stretch;
    }

    .step-text h4 {
        font-size: 22px;
    }

    .callout-box {
        padding: 35px 25px;
    }

    .callout-box h3 {
        margin-bottom: 20px;
    }

    .feature-box h4 {
        justify-content: center;
    }

    .feature-box p {
        text-align: center;
    }

    .track-card {
        text-align: center;
    }

    .step-text {
        text-align: center;
    }

    .contact-intro {
        text-align: center;
        align-items: center;
    }

    .contact-intro h2 {
        font-size: clamp(22px, 6vw, 36px);
        letter-spacing: normal;
        margin-bottom: 0;
    }

    .contact-email-link {
        margin-left: auto;
        margin-right: auto;
    }

    .response-time {
        text-align: center;
    }

    .audience-col {
        text-align: center;
    }

    .section-ctas {
        justify-content: center;
    }

    .section-ctas .btn-cta {
        padding: 14px 28px;
        font-size: 15px;
    }

    .contact-form {
        gap: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 16px;
        padding: 15px 0;
        text-align: left;
    }

    .contact-form textarea {
        min-height: 80px;
    }

    .contact-form .btn-primary,
    .contact-form button[type="submit"] {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    .rgpd-label input[type="checkbox"] {
        width: 22px;
        height: 22px;
        min-width: 22px;
        flex-shrink: 0;
    }

    .btn-primary {
        padding: 14px 28px;
        font-size: 15px;
    }

    .project-card {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .btn-cta {
        padding: 10px 16px;
        font-size: 11px;
    }

    .header-right {
        gap: 10px;
    }

    h1, .section h2 {
        overflow-wrap: break-word;
    }

    .section {
        padding: 60px 5%;
    }

    .section h2 {
        font-size: clamp(34px, 10vw, 56px);
        margin-bottom: 28px;
    }

    .hero-section.hero-service {
        padding: 90px 5% 50px;
    }

    .hero-section.hero-service h1 {
        font-size: clamp(32px, 10vw, 56px);
    }

    a.serv-card {
        padding: 14px 8px;
    }

    a.serv-card h2 {
        font-size: 0.65rem;
    }

    .track-card {
        padding: 24px 20px;
    }

    .audience-col {
        padding: 24px 20px;
    }

    .contact-layout {
        gap: 36px;
    }

    .section-ctas {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .section-ctas .btn-primary,
    .section-ctas .btn-cta {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}

/* ── Footer ─────────────────────────────────────────── */
.site-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    flex-shrink: 0;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer a:hover {
    color: white;
}

@media (max-width: 600px) {
    .site-footer {
        flex-direction: column;
        gap: 8px;
        padding: 20px 24px;
        text-align: center;
    }
}

/* ── Form — RGPD checkbox ────────────────────────────── */
.rgpd-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    line-height: 1.5;
    touch-action: manipulation;
}

.rgpd-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    aspect-ratio: 1;
    padding: 0;
    margin-top: 2px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    background: transparent;
    position: relative;
    flex-shrink: 0;
    align-self: flex-start;
    box-sizing: border-box;
    transition: background 0.15s, border-color 0.15s;
}

.rgpd-label input[type="checkbox"]:checked {
    background: white;
    border-color: white;
}

.rgpd-label input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 10px;
    border: 2px solid black;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.rgpd-label a {
    color: white;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ── Form — feedback message ─────────────────────────── */
.form-feedback {
    font-size: 14px;
    min-height: 20px;
    margin: 0;
}

.form-feedback--ok {
    color: #4ade80;
}

.form-feedback--error {
    color: #f87171;
}

/* ── Form — confirmation box ─────────────────────────── */
.form-confirm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-confirm__label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.form-confirm__data {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
}

.form-confirm__data p {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 12px;
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
}

.form-confirm__data p span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.45);
    padding-top: 2px;
}

.form-confirm__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── Form — final result states ──────────────────────── */
.form-result {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 8px 0;
}

.form-result p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.form-result__title {
    font-size: 22px !important;
    font-weight: 700;
}

.form-result--ok .form-result__title {
    color: #4ade80;
}

.form-result--error p {
    color: #f87171;
}

/* ── Privacy policy page ─────────────────────────────── */
.privacy-section {
    padding-top: 80px;
}

.privacy-content {
    max-width: 720px;
}

.privacy-content h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    text-transform: uppercase;
    margin: 8px 0 32px;
    line-height: 1;
}

.privacy-content h2 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 40px 0 12px;
    color: rgba(255, 255, 255, 0.8);
}

.privacy-content p,
.privacy-content li {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 12px;
}

.privacy-content ul {
    padding-left: 20px;
    margin: 0 0 12px;
}

.privacy-content a {
    color: white;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.privacy-updated {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    margin-bottom: 48px;
}

.privacy-back {
    display: inline-block;
    margin-top: 48px;
}
