/* ==========================================================================
   DIN DOM BRAND DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

/* --- 1. FONTS (Mori Gothic Local Integration) --- */
@font-face {
    font-family: 'Mori Gothic';
    src: url('Fontes/Fontes/MoriGothic-ExtraLight.woff2') format('woff2'),
        url('Fontes/Fontes/MoriGothic-ExtraLight.woff') format('woff'),
        url('Fontes/Fontes/MoriGothic-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mori Gothic';
    src: url('Fontes/Fontes/MoriGothic-Light.woff2') format('woff2'),
        url('Fontes/Fontes/MoriGothic-Light.woff') format('woff'),
        url('Fontes/Fontes/MoriGothic-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mori Gothic';
    src: url('Fontes/Fontes/MoriGothic-Normal.woff2') format('woff2'),
        url('Fontes/Fontes/MoriGothic-Normal.woff') format('woff'),
        url('Fontes/Fontes/MoriGothic-Normal.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mori Gothic';
    src: url('Fontes/Fontes/MoriGothic-Regular.woff2') format('woff2'),
        url('Fontes/Fontes/MoriGothic-Regular.woff') format('woff'),
        url('Fontes/Fontes/MoriGothic-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mori Gothic';
    src: url('Fontes/Fontes/MoriGothic-Medium.woff2') format('woff2'),
        url('Fontes/Fontes/MoriGothic-Medium.woff') format('woff'),
        url('Fontes/Fontes/MoriGothic-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mori Gothic';
    src: url('Fontes/Fontes/MoriGothic-SemiBold.woff2') format('woff2'),
        url('Fontes/Fontes/MoriGothic-SemiBold.woff') format('woff'),
        url('Fontes/Fontes/MoriGothic-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Mori Gothic';
    src: url('Fontes/Fontes/MoriGothic-Bold.woff2') format('woff2'),
        url('Fontes/Fontes/MoriGothic-Bold.woff') format('woff'),
        url('Fontes/Fontes/MoriGothic-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* --- 2. CSS VARIABLES --- */
:root {
    /* Official Colors */
    --primary-dark: #143A61;
    --accent-blue: #215FA7;
    --light-blue: #5EA9DE;
    --bg-light: #EDF2F6;

    /* Neutrals & UI */
    --white: #ffffff;
    --black: #0f172a;
    --text-main: #273746;
    --text-muted: #576d82;
    --border-color: rgba(20, 58, 97, 0.08);
    --border-focus: rgba(94, 169, 222, 0.5);

    /* Semantic Colors */
    --success: #10b981;
    --success-light: #d1fae5;
    --warning: #f59e0b;
    --danger: #ef4444;
    --danger-light: #fee2e2;

    /* Radius & Spacing */
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(20, 58, 97, 0.03), 0 2px 4px -1px rgba(20, 58, 97, 0.02);
    --shadow-md: 0 10px 20px -3px rgba(20, 58, 97, 0.06), 0 4px 6px -2px rgba(20, 58, 97, 0.04);
    --shadow-lg: 0 20px 30px -5px rgba(20, 58, 97, 0.08), 0 10px 15px -5px rgba(20, 58, 97, 0.04);
    --shadow-soft-glow: 0 15px 40px rgba(94, 169, 222, 0.15);

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}


/* --- 3. BASE STYLES & RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--white);
    color: var(--text-main);
    overflow-x: hidden;
}

body {
    font-family: 'Mori Gothic', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

/* --- 4. LAYOUT CONTAINERS & UTILITIES --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.section-padding {
    padding: 100px 0;
}

.section-header {
    max-width: 680px;
    margin: 0 auto 60px auto;
}

.section-tagline {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-blue);
    display: inline-block;
    margin-bottom: 12px;
    background-color: rgba(94, 169, 222, 0.15);
    padding: 6px 16px;
    border-radius: var(--radius-full);
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-muted);
}


/* --- 5. BUTTONS & UI COMPONENTS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 15px;
    line-height: 1;
}

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

.btn-primary:hover {
    background-color: var(--accent-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 95, 167, 0.25);
}

.btn-outline {
    border: 2px solid var(--border-color);
    color: var(--primary-dark);
}

.btn-outline:hover {
    border-color: var(--primary-dark);
    background-color: rgba(20, 58, 97, 0.02);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: var(--radius-sm);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Badge New UI */
.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background-color: var(--bg-light);
    border: 1px solid rgba(20, 58, 97, 0.05);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.badge-icon {
    color: var(--light-blue);
    display: flex;
    font-size: 15px;
}


/* --- 6. MAIN HEADER / NAVIGATION --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(20, 58, 97, 0.04);
    transition: var(--transition-fast);
}

.header-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text-img {
    height: 68px;
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.03em;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
    padding: 6px 0;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--light-blue);
    transition: var(--transition-fast);
}

.nav-item:hover {
    color: var(--accent-blue);
}

.nav-item:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-toggle {
    display: none;
    font-size: 28px;
    color: var(--primary-dark);
    cursor: pointer;
}


/* --- 7. HERO SECTION --- */
.hero-section {
    padding: 160px 0 100px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--white);
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: var(--radius-full);
    filter: blur(140px);
    opacity: 0.25;
}

.shape-1 {
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background-color: var(--light-blue);
}

.shape-2 {
    bottom: -150px;
    left: -100px;
    width: 600px;
    height: 600px;
    background-color: var(--bg-light);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 580px;
}

.hero-title {
    font-size: 46px;
    line-height: 1.15;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.highlight-text {
    color: var(--accent-blue);
    background: linear-gradient(120deg, var(--accent-blue), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 19px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-metrics {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-mini {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    border: 2px solid var(--white);
    overflow: hidden;
    margin-left: -10px;
}

.avatar-mini:first-child {
    margin-left: 0;
}

.avatar-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.metrics-text {
    font-size: 14px;
    color: var(--text-muted);
}

.metrics-text strong {
    color: var(--primary-dark);
    font-weight: 600;
}


/* --- 8. SMARTPHONE DEvICE MOCKUP --- */
.hero-mockup-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Float badges around the mockup for premium depth */
.hero-mockup-wrapper::before {
    content: "✉️ Encomenda Registrada!";
    position: absolute;
    top: 25%;
    left: -40px;
    background: var(--white);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    z-index: 10;
    animation: floatingBadge 4s ease-in-out infinite alternate;
}

.hero-mockup-wrapper::after {
    content: "🙋‍♂️ Vizinho do 302 curtiu";
    position: absolute;
    bottom: 20%;
    right: -20px;
    background: var(--white);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    z-index: 10;
    animation: floatingBadge 4s ease-in-out infinite alternate-reverse;
}

@keyframes floatingBadge {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

.phone-mockup {
    width: 290px;
    height: 580px;
    background-color: #0c0f1d;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 25px 60px -15px rgba(20, 58, 97, 0.25),
        0 0 0 4px #273746,
        0 0 0 8px #1e293b;
    position: relative;
    display: flex;
    flex-direction: column;
    z-index: 5;
}

.phone-header {
    height: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.phone-speaker {
    width: 45px;
    height: 4px;
    background-color: #334155;
    border-radius: var(--radius-full);
}

.phone-camera {
    width: 8px;
    height: 8px;
    background-color: #1e293b;
    border-radius: var(--radius-full);
    margin-left: 8px;
}

.phone-screen {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 2px solid #000;
}

.phone-home-bar {
    height: 4px;
    width: 100px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

/* Inner App styles */
.app-header {
    background-color: var(--white);
    padding: 16px 14px 12px 14px;
    border-bottom: 1px solid rgba(20, 58, 97, 0.04);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-avatar {
    width: 32px;
    height: 32px;
    background-color: var(--bg-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.app-logo-small {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.app-title-group {
    display: flex;
    flex-direction: column;
}

.app-condo-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-dark);
}

.app-user-welcome {
    font-size: 9px;
    color: var(--text-muted);
    font-weight: 500;
}

.app-header-actions {
    display: flex;
}

.app-icon-btn {
    font-size: 16px;
    color: var(--primary-dark);
    position: relative;
    cursor: pointer;
}

.badge-dot {
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 5px;
    background-color: var(--danger);
    border-radius: var(--radius-full);
}

.app-content {
    flex: 1;
    overflow-y: auto;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Scrollbar styling for phone mock screen */
.app-content::-webkit-scrollbar {
    width: 3px;
}

.app-content::-webkit-scrollbar-thumb {
    background: rgba(20, 58, 97, 0.1);
    border-radius: 2px;
}

.app-section-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.app-section-title-row h5 {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-dark);
}

.app-tag-link {
    font-size: 9px;
    font-weight: 600;
    color: var(--light-blue);
}

.app-tag-important {
    font-size: 9px;
    font-weight: 600;
    background-color: var(--danger-light);
    color: var(--danger);
    padding: 2px 6px;
    border-radius: var(--radius-full);
}

/* App Feed Tab Cards */
.feed-post {
    background-color: var(--white);
    border-radius: 12px;
    padding: 10px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(20, 58, 97, 0.02);
}

.post-user-info {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
}

.post-avatar {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.post-username {
    font-size: 9px;
    font-weight: 700;
    color: var(--primary-dark);
}

.post-time {
    font-size: 7px;
    color: var(--text-muted);
    display: block;
}

.post-body {
    font-size: 9px;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 6px;
}

.post-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 8px;
    color: var(--text-muted);
    border-top: 1px solid rgba(20, 58, 97, 0.03);
    padding-top: 6px;
}

.post-actions span {
    display: flex;
    align-items: center;
    gap: 3px;
}

/* App Reservas Tab Cards */
.booking-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(20, 58, 97, 0.02);
}

.booking-img-wrapper {
    position: relative;
    height: 60px;
}

.booking-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-badge-status {
    position: absolute;
    top: 6px;
    left: 6px;
    font-size: 7px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: var(--radius-full);
}

.status-available {
    background-color: var(--success-light);
    color: var(--success);
}

.status-booked {
    background-color: rgba(94, 169, 222, 0.15);
    color: var(--accent-blue);
}

.booking-details {
    padding: 8px;
}

.booking-details h6 {
    font-size: 9px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 2px;
}

.booking-desc {
    font-size: 7px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.booking-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(20, 58, 97, 0.03);
    padding-top: 6px;
}

.booking-price {
    font-size: 7px;
    font-weight: 600;
    color: var(--text-main);
}

.booking-info-label {
    font-size: 7px;
    color: var(--success);
    font-weight: 600;
}

.app-btn-action {
    background-color: var(--primary-dark);
    color: var(--white);
    font-size: 8px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
}

.btn-secondary-action {
    background-color: var(--bg-light);
    color: var(--primary-dark);
}

/* App Avisos Tab Cards */
.announcement-item {
    background-color: var(--white);
    border-radius: 12px;
    padding: 10px;
    border-left: 3px solid var(--light-blue);
    box-shadow: var(--shadow-sm);
}

.announcement-item.urgent {
    border-left-color: var(--danger);
    background-color: rgba(239, 68, 68, 0.01);
}

.announcement-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.announcement-tag {
    font-size: 7px;
    font-weight: 700;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 3px;
}

.announcement-date {
    font-size: 7px;
    color: var(--text-muted);
}

.announcement-item h6 {
    font-size: 9px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.announcement-item p {
    font-size: 8px;
    color: var(--text-muted);
    line-height: 1.3;
}

/* App Portaria Tab Cards */
.visitor-form-mock {
    background-color: var(--white);
    border-radius: 12px;
    padding: 12px;
    text-center: center;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.visitor-qr-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
}

.visitor-qr-display i {
    font-size: 48px;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.qr-label {
    font-size: 9px;
    font-weight: 700;
    color: var(--success);
    margin-bottom: 4px;
}

.qr-details {
    text-align: center;
}

.qr-details strong {
    font-size: 9px;
    color: var(--primary-dark);
    display: block;
}

.qr-details span {
    font-size: 7px;
    color: var(--text-muted);
}

.app-btn-action.full-width {
    width: 100%;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.delivery-alert {
    background-color: var(--white);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.delivery-icon {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    background-color: var(--success-light);
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.delivery-info h6 {
    font-size: 9px;
    font-weight: 700;
    color: var(--primary-dark);
}

.delivery-info p {
    font-size: 7px;
    color: var(--text-muted);
}

/* App Panels Toggle animation */
.app-tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-tab-panel.active {
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 1;
    transform: translateY(0);
}

/* App Bottom Nav */
.app-navbar {
    background-color: var(--white);
    border-top: 1px solid rgba(20, 58, 97, 0.04);
    padding: 8px 6px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 10;
}

.app-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--text-muted);
    font-size: 16px;
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--transition-fast);
}

.app-nav-btn span {
    font-size: 8px;
    font-weight: 600;
}

.app-nav-btn.active {
    color: var(--accent-blue);
}


/* --- 9. SECTION: O QUE E A DINDOM? --- */
.about-section {
    background-color: var(--bg-light);
    padding: 100px 0;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto auto;
    gap: 24px;
    margin-bottom: 60px;
}

.bento-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    border: 1px solid rgba(20, 58, 97, 0.02);
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.bento-large {
    grid-row: span 2;
}

.bento-content {
    position: relative;
    z-index: 2;
}

.card-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-blue);
    background-color: rgba(33, 95, 167, 0.08);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-bottom: 16px;
}

.card-badge.badge-white {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.15);
}

.bento-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.bento-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.bg-gradient-blue {
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-blue));
}

.bg-gradient-blue h3,
.bg-gradient-blue p {
    color: var(--white);
}

.bento-list {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bento-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
}

.bento-list li i {
    color: var(--light-blue);
    font-size: 18px;
}

.bento-illustration-circle {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background-color: rgba(94, 169, 222, 0.08);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--light-blue);
    opacity: 0.7;
    z-index: 1;
}

.bento-icon-floating {
    position: absolute;
    bottom: 24px;
    right: 24px;
    font-size: 50px;
    color: var(--light-blue);
    opacity: 0.15;
    transform: rotate(-15deg);
}

/* WhatsApp vs Dindom Table */
.comparison-container {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    box-shadow: var(--shadow-md);
    margin-top: 80px;
    border: 1px solid rgba(20, 58, 97, 0.02);
}

.comparison-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.comparison-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 40px auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.comparison-card {
    padding: 32px;
    border-radius: var(--radius-md);
    background-color: var(--white);
    transition: var(--transition-smooth);
}

.whatsapp-card {
    border: 2px solid #e2e8f0;
}

.dindom-card {
    border: 2px solid rgba(94, 169, 222, 0.2);
    background-color: rgba(94, 169, 222, 0.02);
    box-shadow: var(--shadow-soft-glow);
}

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

.brand-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.whatsapp-icon {
    background-color: #25d366;
    color: var(--white);
}

.dindom-icon {
    background-color: var(--primary-dark);
    padding: 8px;
}

.dindom-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.comparison-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
}

.comparison-header span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.4;
}

.comparison-list li i {
    font-size: 18px;
    margin-top: 1px;
    flex-shrink: 0;
}

.comparison-list li.negative {
    color: var(--text-muted);
}

.comparison-list li.negative i {
    color: var(--danger);
}

.comparison-list li.positive {
    color: var(--primary-dark);
    font-weight: 500;
}

.comparison-list li.positive i {
    color: var(--success);
}


/* --- 10. SECTION: MODULES GRID (SaaS Features) --- */
.modules-section {
    padding: 100px 0;
    background-color: var(--white);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.module-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 16px;
    cursor: pointer;
}

.module-card:hover {
    transform: translateY(-6px);
    border-color: rgba(94, 169, 222, 0.4);
    box-shadow: var(--shadow-lg);
}

.module-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: var(--bg-light);
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--transition-fast);
}

.module-card:hover .module-icon {
    background-color: var(--accent-blue);
    color: var(--white);
    transform: scale(1.05);
}

.module-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.01em;
}

.module-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}


/* --- 11. SECTION: BENEFITS TABS --- */
.benefits-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.tabs-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tabs-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: rgba(20, 58, 97, 0.04);
    padding: 8px;
    border-radius: var(--radius-md);
    align-self: center;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.tab-btn:hover {
    color: var(--primary-dark);
}

.tab-btn.active {
    background-color: var(--white);
    color: var(--primary-dark);
    box-shadow: var(--shadow-sm);
}

.tab-content-panel {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(20, 58, 97, 0.02);
}

.tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.panel-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.panel-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.panel-text p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefits-list li {
    position: relative;
    padding-left: 28px;
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.6;
}

.benefits-list li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--success);
    font-size: 18px;
}

.panel-visual {
    display: flex;
    justify-content: center;
}

.panel-card {
    border-radius: var(--radius-md);
    padding: 32px;
    position: relative;
    max-width: 380px;
}

.bg-soft-blue {
    background-color: rgba(94, 169, 222, 0.08);
    border: 1px solid rgba(94, 169, 222, 0.15);
}

.panel-card-icon {
    font-size: 24px;
    color: var(--accent-blue);
    margin-bottom: 16px;
}

.panel-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.panel-card p {
    font-size: 13px;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.panel-card .author {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-dark);
    display: block;
}


/* --- 12. SECTION: COMUNIDADE (Visual Life) --- */
.community-visual-section {
    padding: 100px 0;
    background-color: var(--white);
}

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

.community-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--white);
    background-color: var(--white);
    transform: rotate(-1.5deg);
    transition: var(--transition-smooth);
}

.community-image-wrapper:hover {
    transform: rotate(0) scale(1.02);
}

.community-img {
    width: 100%;
    border-radius: calc(var(--radius-lg) - 8px);
}

.community-text {
    max-width: 540px;
}

.community-text .section-description {
    margin-bottom: 16px;
}

.community-subtext {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.community-bullets {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bullet-item {
    display: flex;
    gap: 16px;
}

.bullet-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color: rgba(94, 169, 222, 0.12);
    color: var(--accent-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.bullet-item h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.bullet-item p {
    font-size: 13px;
    color: var(--text-muted);
}


/* --- 13. SECTION: DEPOIMENTOS --- */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(20, 58, 97, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: var(--warning);
    font-size: 16px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-img {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-dark);
}

.author-title {
    font-size: 11px;
    color: var(--text-muted);
}


/* --- 14. SECTION: CTA FINAL + FORM --- */
.cta-final-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-blue));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-final-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background-color: rgba(94, 169, 222, 0.15);
    border-radius: var(--radius-full);
    filter: blur(120px);
    top: -200px;
    right: -100px;
    z-index: 1;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text-wrapper {
    max-width: 500px;
}

.cta-badge {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--light-blue);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    display: inline-block;
}

.cta-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-desc {
    font-size: 17px;
    font-weight: 300;
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 36px;
}

.cta-perks {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.perk-item i {
    color: var(--light-blue);
    font-size: 20px;
}

.cta-form-wrapper {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    color: var(--text-main);
    position: relative;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
}

.form-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: -12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-dark);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    background-color: var(--bg-light);
    font-size: 14px;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--light-blue);
    background-color: var(--white);
    box-shadow: 0 0 0 3px var(--border-focus);
}

.form-success-msg {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
}

.form-success-msg.active {
    display: flex;
    animation: fadeInForm 0.4s ease forwards;
}

@keyframes fadeInForm {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.success-icon {
    font-size: 56px;
    color: var(--success);
    margin-bottom: 16px;
}

.form-success-msg h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.form-success-msg p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}


/* --- 15. MAIN FOOTER --- */
.main-footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.brand-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0;
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.social-icon:hover {
    background-color: var(--light-blue);
    transform: translateY(-2px);
}

.footer-links-col h5 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--light-blue);
    margin-bottom: 20px;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-col li {
    font-size: 14px;
}

.footer-links-col a {
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links-col a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bottom-info p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.bottom-links {
    display: flex;
    gap: 20px;
}

.bottom-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.bottom-links a:hover {
    color: var(--white);
}


/* ==========================================================================
   --- 16. RESPONSIVE BREAKPOINTS (Mobile-First approach overrides) ---
   ========================================================================== */

/* Tablet Portrait & down (Max 991px) */
@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 38px;
    }

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

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bento-large {
        grid-row: auto;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .panel-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .community-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .community-image-wrapper {
        transform: none;
        order: 2;
    }

    .community-text {
        max-width: 100%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cta-text-wrapper {
        max-width: 100%;
        text-align: center;
    }

    .cta-perks {
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Mobile Landscape & down (Max 767px) */
@media (max-width: 767px) {
    .header-container {
        padding: 12px 16px;
    }

    .logo-text {
        font-size: 22px;
    }

    .logo-img {
        height: 32px;
    }

    .logo-text-img {
        height: 54px;
    }

    .mobile-toggle {
        display: block;
    }

    /* Navigation drawer overlay on mobile */
    .nav-menu {
        position: fixed;
        top: 68px;
        left: 0;
        width: 100%;
        height: calc(100vh - 68px);
        background-color: var(--white);
        padding: 40px 24px;
        border-top: 1px solid var(--border-color);
        transform: translateX(-100%);
        transition: var(--transition-smooth);
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .nav-item {
        font-size: 20px;
        font-weight: 600;
    }

    .nav-actions .btn {
        display: none;
        /* Hide NAV CTA on mobile headers to save space */
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .bento-card {
        padding: 24px;
    }

    .bento-card h3 {
        font-size: 22px;
    }

    .comparison-container {
        padding: 24px;
        margin-top: 40px;
    }

    .comparison-card {
        padding: 20px;
    }

    .tab-content-panel {
        padding: 24px;
    }

    .tabs-list {
        flex-wrap: wrap;
        width: 100%;
    }

    .tab-btn {
        flex: 1 1 40%;
        justify-content: center;
        padding: 10px 14px;
        font-size: 13px;
    }

    .cta-form-wrapper {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* --- 17. SCROLLSPY & ANIMATION UTILITIES --- */
.nav-item.active-nav {
    color: var(--accent-blue);
    font-weight: 700;
}

.nav-item.active-nav::after {
    width: 100%;
}

.spinner {
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.scroll-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   SECTION: FAQ ACCORDION
   ========================================================================== */
.faq-section {
    padding: 100px 0;
    background-color: var(--white);
}

.faq-accordion {
    max-width: 780px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(94, 169, 222, 0.4);
    box-shadow: var(--shadow-sm);
}

.faq-item.active {
    background-color: var(--white);
    border-color: rgba(94, 169, 222, 0.4);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question i {
    font-size: 18px;
    color: var(--text-muted);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--accent-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* high enough to contain the text */
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}