/*
Theme Name: Severino Digital
Author: Seu Nome
Version: 1.0
*/
:root {
    --primary-purple: #7033ff;
    --primary-cyan: #00e5ff;
    --dark-blue: #081a3f;
    --light-blue: #3d5a80;
    --text-dark: #0f172a;
    --text-gray: #475569;
    --bg-white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-white);
    overflow-x: hidden;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--bg-white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
}

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

.nav-logo-img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain; 
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-purple);
}

.hero {
    min-height: 90vh;
    display: flex;
    flex-wrap: wrap;
    background: linear-gradient(105deg, var(--light-blue) 0%, var(--dark-blue) 45%, var(--bg-white) 45.1%, var(--bg-white) 100%);
}

.hero-left, .hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left {
    align-items: center;
    position: relative;
}

.card-logo-container {
    text-align: center;
    z-index: 2;
}

.logo-card {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    padding: 40px;
    width: auto !important;
    height: auto !important;
}

.card-logo-img {
    max-width: 100%;
    height: auto;
    max-height: 70vh;
}

.card-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.dark-title {
    color: var(--bg-white);
    font-size: 2rem;
    letter-spacing: 1px;
}

.hero-right {
    padding: 2rem 5%;
    flex: 1;
    min-width: 320px;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--dark-blue);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(90deg, #00e5ff, #7033ff, #9333ea, #00e5ff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 4s linear infinite;
}

.subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--primary-purple);
    color: white;
    box-shadow: 0 4px 15px rgba(112, 51, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(112, 51, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
}

.btn-outline:hover {
    background: var(--text-dark);
    color: white;
}

.chat-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #5132da;
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 100;
    animation: bounceFAB 2s ease infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    outline: none;
}

.chat-fab:hover {
    
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}


   .services-section, 
    .testimonials-section {
    scroll-margin-top: 80px; 
}
.services-section {
    padding: 80px 5%;
    background-color: var(--bg-white);
    text-align: center;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.service-icon {
    font-size: 1.8rem;
}

.service-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 15px;
}

.services-header h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.services-header p {
    color: var(--text-gray);
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.service-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-cyan);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.purple-bg { background: linear-gradient(135deg, #a78bfa, #7c3aed); }
.blue-bg { background: linear-gradient(135deg, #60a5fa, #2563eb); }
.blue-light-bg { background: linear-gradient(135deg, #818cf8, #4f46e5); }
.cyan-bg { background: linear-gradient(135deg, #22d3ee, #0891b2); }

.icon-box img {
    width: 30px;
    filter: brightness(0) invert(1);
}

.service-card h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 18px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card ul li {
    font-size: 0.88rem;
    color: var(--text-gray);
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
    line-height: 1.5;
}

.service-card ul li::before {
    content: "●";
    color: var(--primary-cyan);
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 0.85rem;
}

.services-footer {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.terms-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.services-footer {
    margin-top: 80px;
    padding: 0 5%;
}

.conversion-card {
    background: #f8fafc;
    border: 2px solid #f1f5f9;
    border-radius: 24px;
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
}

.conversion-card h3 {
    font-size: 2rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.conversion-card.compact {
    padding: 30px 25px;
    max-width: 600px;
    border-radius: 16px;
}

.conversion-card.compact h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.conversion-card.compact .btn-large {
    max-width: 300px;
    padding: 1rem;
    font-size: 1rem;
}

.conversion-card.highlight {
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 50px 30px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.conversion-card.highlight:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.conversion-card.highlight h3 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.conversion-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.conversion-card.highlight .btn-large {
    padding: 1.1rem 2rem;
    font-size: 1.1rem;
    max-width: 350px;
}

.terms-wrapper {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-gray);
    user-select: none;
}

.custom-checkbox input {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-purple); /* Cor da marca no check */
}

.btn-large {
    width: 100%;
    max-width: 400px;
    padding: 1.2rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary:not(:disabled):hover {
    transform: scale(1.05);
    background: var(--primary-purple);
    box-shadow: 0 15px 30px rgba(112, 51, 255, 0.4);
}

.security-note {
    display: block;
    margin-top: 15px;
    font-size: 0.8rem;
    color: #94a3b8;
}

.testimonials-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    animation: fadeIn 0.8s ease-in-out;
}

.testimonial-slide.active {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
}

.terms-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.disabled-btn {
    background: #e2e8f0 !important;
    color: #94a3b8 !important;
    box-shadow: none !important;
    opacity: 0.7;
}

.site-footer {
    background-color: var(--dark-blue);
    color: #ffffff;
    padding: 30px 5% 15px;
    font-size: 0.85rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info {
    flex: 0 0 auto;
}

.footer-logo {
    height: 130px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-details {
    flex: 0 0 auto;
    text-align: left;
}

.detail-group p {
    margin-bottom: 4px;
    line-height: 1.4;
}

.footer-links {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: right;
}

.footer-links p {
    margin: 0;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-bottom {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.chat-box {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 320px;
    height: 420px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 200;
}

.hidden {
    display: none !important;
}

.chat-header {
    background: #7033ff;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-messages {
    flex: 1;
    padding: 10px;
    overflow-y: auto;
    font-size: 14px;
}

.chat-message {
    margin-bottom: 10px;
}

.user {
    text-align: right;
    color: #7033ff;
}

.bot {
    text-align: left;
    color: #333;
}

.chat-input {
    display: flex;
    border-top: 1px solid #eee;
}

.chat-input input {
    flex: 1;
    border: none;
    padding: 10px;
    outline: none;
}

.chat-input button {
    background: #00e5ff;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.chat-form {
    display: flex;
    flex-direction: column;
    padding: 15px;
    gap: 10px;
}

.chat-form input,
.chat-form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.chat-form textarea {
    resize: none;
    height: 80px;
}

.chat-form button {
    background: #7033ff;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}

.chat-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    position: relative;
}

.modal-content h3 {
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.modal-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.modal-content input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 1rem;
    cursor: pointer;
}

.cta-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.btn-download {
    background: transparent;
    border: 1.5px solid var(--primary-purple);
    color: var(--primary-purple);
    border-radius: 10px;
    padding: 0.8rem 1.4rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-download::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );
    transform: skewX(-20deg);
}

.btn-download:hover::before {
    left: 130%;
    transition: left 0.6s ease;
}

.btn-download:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(112, 51, 255, 0.25);
}

.btn-download:active {
    transform: scale(0.97);
}

.btn-login {
    text-decoration: none;
    color: var(--primary-purple) !important; /* Cor de destaque */
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 1.5px solid var(--primary-purple);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background-color: var(--primary-purple);
    color: white !important;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        min-height: auto;
        background: linear-gradient(180deg, var(--light-blue) 0%, var(--dark-blue) 100%);
        padding-top: 80px;
        overflow: hidden;
    }

    .hero-left, .hero-right {
        width: 100%;
        flex: none;
        padding: 2rem 5%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .card-logo-img {
        max-width: 80%;
        height: auto;
        margin: 0 auto;
    }

    h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .subtitle {
        margin: 15px auto;
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .testimonial-slide.active {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card-side {
        order: -1;
        width: 100%;
    }

    .stats-row {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        display: none;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-links ul {
        align-items: center;
    }

    .nav-links .btn-login {
        display: inline-block;
        margin-top: 10px;
    }
}

@media (max-width: 400px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .card-logo-img {
        max-width: 90%;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.stars { color: var(--primary-purple); font-size: 1.5rem; margin-bottom: 20px; }
.testimonial-quote { font-size: 2.2rem; color: var(--dark-blue); line-height: 1.3; margin-bottom: 25px; }
.testimonial-detail { font-style: italic; color: var(--text-gray); margin-bottom: 30px; font-size: 1.1rem; }
.divider { border: 0; border-top: 1px solid #e2e8f0; margin-bottom: 20px; }

.client-name { font-weight: 800; color: var(--dark-blue); }
.client-role, .client-company-stat { color: var(--text-gray); font-size: 0.9rem; }

.stats-row { display: flex; gap: 40px; margin-top: 40px; }
.stat-value { display: block; font-size: 1.8rem; font-weight: 800; color: var(--primary-purple); }
.stat-value.cyan { color: var(--primary-cyan); }
.stat-label { font-size: 0.8rem; color: var(--text-gray); text-transform: uppercase; }

.brand-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid #f0f4f8;
}

.brand-logo-box {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #1e293b, #4338ca);
    color: white;
    font-size: 3rem;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    margin: 0 auto 20px;
}

.brand-card h3 { color: var(--dark-blue); margin-bottom: 10px; }
.brand-card p { color: var(--text-gray); font-size: 0.9rem; margin-bottom: 20px; }
.badge { background: #e0faff; color: #0891b2; padding: 8px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; }

@media (max-width: 768px) {
    /* Navbar */
    .navbar {
        padding: 1rem 5%;
    }
    
    .nav-links {
        display: none;
    }

    .hero {
        background: var(--dark-blue);
        text-align: center;
    }

    .hero-left {
        padding-top: 2rem;
    }

    .hero-right {
        padding: 2rem 5%;
        align-items: center;
    }

    .subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-details, .footer-links {
        text-align: center;
    }

    .card-logo-img {
        height: 300px;
    }
}

@keyframes bounceFAB {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
}

/* ==================================================
   PRIVACY PAGE
================================================== */

.privacy-page {
    background: #ffffff;
}

.privacy-hero {
    padding: 90px 5% 70px;
    background:
        radial-gradient(circle at top left, rgba(0, 229, 255, 0.12), transparent 30%),
        linear-gradient(135deg, #081a3f 0%, #1c1460 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: #00e5ff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.privacy-title {
    color: #ffffff;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.privacy-subtitle {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.privacy-updated {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
}

.privacy-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 5%;
}

.privacy-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.privacy-section {
    position: relative;
    padding-bottom: 50px;
    border-bottom: 1px solid #edf2f7;
}

.privacy-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.section-number {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #00e5ff;
    margin-bottom: 14px;
}

.privacy-section h2 {
    font-size: 2rem;
    color: #081a3f;
    margin-bottom: 20px;
    line-height: 1.2;
}

.privacy-section p {
    color: #475569;
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 18px;
}

/* =========================
   CARDS
========================= */

.data-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.data-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 24px;
    transition: all 0.25s ease;
}

.data-card:hover {
    transform: translateY(-4px);
    border-color: #00e5ff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.data-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 16px;
}

.data-card h4 {
    font-size: 1rem;
    color: #081a3f;
    margin-bottom: 10px;
}

.data-card p {
    margin: 0;
    font-size: 0.92rem;
}

/* =========================
   LISTA
========================= */

.privacy-list {
    list-style: none;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.privacy-list li {
    background: #f8fafc;
    border-left: 4px solid #00e5ff;
    padding: 16px 18px;
    border-radius: 10px;
    color: #475569;
    line-height: 1.7;
}

/* =========================
   SECURITY
========================= */

.security-highlight {
    margin-top: 30px;
    padding: 28px;
    border-radius: 20px;
    background: linear-gradient(135deg, #eef7ff 0%, #f8fafc 100%);
    border: 1px solid #dbeafe;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.security-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.security-highlight strong {
    display: block;
    color: #081a3f;
    margin-bottom: 10px;
    font-size: 1rem;
}

/* =========================
   RIGHTS GRID
========================= */

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.right-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.25s ease;
}

.right-item:hover {
    border-color: #7033ff;
    transform: translateY(-3px);
}

.right-item span {
    font-size: 1.4rem;
}

.right-item p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* =========================
   CONTACT
========================= */

.contact-card {
    margin-top: 30px;
    background: #f8fafc;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #e2e8f0;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-row span {
    font-size: 1.5rem;
}

.contact-row strong {
    display: block;
    margin-bottom: 6px;
    color: #081a3f;
}

.contact-row a {
    color: #7033ff;
    text-decoration: none;
    font-weight: 600;
}

.contact-row a:hover {
    text-decoration: underline;
}

/* =========================
   BACK BUTTON
========================= */

.privacy-back {
    padding: 0 5% 80px;
    text-align: center;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .privacy-hero {
        padding: 70px 5% 50px;
    }

    .privacy-container {
        padding: 50px 5%;
    }

    .privacy-content {
        gap: 40px;
    }

    .privacy-section h2 {
        font-size: 1.6rem;
    }

    .security-highlight {
        flex-direction: column;
    }

    .contact-card {
        padding: 24px;
    }
}