/*
Theme Name: DD Marketing e Mídias
Theme URI: 
Description: Tema filho para o projeto DD Marketing e Mídias, estendendo o tema base DDCreative.
Author: DD
Author URI: 
Template: ddcreative
Version: 1.0.19
Text Domain: dd-marketing-midias
*/

:root {
    --color-primary: #4F46E5;
    --color-primary-hover: #4338CA;
    --color-secondary: #10B981;
    --color-tertiary: #A54100;
    --color-neutral: #1E293B;
    --color-neutral-light: #F8FAFC;
    --color-neutral-border: #E2E8F0;
    --color-text-body: #475569;
    --font-inter: 'Inter', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-inter);
    color: var(--color-text-body);
    margin: 0;
    padding: 0;
    background-color: var(--color-neutral-light);
}

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

/* Header */
.dd-header {
    background: #FFFFFF;
    border-bottom: 1px solid var(--color-neutral-border);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.dd-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.dd-header .site-title {
    margin: 0;
}

.dd-header .site-title a {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-neutral);
    text-decoration: none;
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    display: flex;
    align-items: center;
}

.main-navigation a {
    text-decoration: none;
    color: var(--color-text-body);
    font-weight: 500;
    font-size: 0.95rem;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.main-navigation a:hover,
.main-navigation li.current-menu-item>a,
.main-navigation li.current_page_item>a {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.client-login {
    text-decoration: none;
    color: var(--color-text-body);
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.client-login:hover {
    color: var(--color-primary);
}

.whatsapp-header-btn {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    /* Cor verde oficial do WhatsApp */
    color: #FFFFFF !important;
    border-color: #25D366 !important;
}

.whatsapp-header-btn:hover {
    background-color: #128C7E !important;
    border-color: #128C7E !important;
    transform: translateY(-2px);
}

.dd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    white-space: normal;
    /* Permits text wrapping on long buttons */
    text-align: center;
    line-height: 1.4;
    border: none;
}

.dd-btn-primary {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

.dd-btn-primary:hover {
    background-color: var(--color-primary-hover);
}

/* Footer */
.dd-footer {
    background: #FFFFFF;
    padding: 60px 0 20px;
    border-top: 1px solid var(--color-neutral-border);
}

.dd-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-title {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-neutral);
    margin-top: 0;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 0;
}

.footer-heading {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-body);
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    text-decoration: none;
    color: var(--color-text-body);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-col ul a:hover {
    color: var(--color-primary);
}

.newsletter-form {
    margin-top: 15px;
    position: relative;
    max-width: 100%;
    display: flex;
    align-items: center;
}

.newsletter-form .dd-form-container,
.newsletter-form .dd-field-group,
.newsletter-form form {
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
    width: 100%;
}

.newsletter-form .cf-turnstile {
    margin-top: 10px;
    margin-bottom: 0 !important;
}

.newsletter-form label {
    display: none !important;
}

.newsletter-form input[type="email"],
.newsletter-form input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    padding: 10px 40px 10px 16px;
    border: 1px solid var(--color-neutral-border);
    border-radius: 8px;
    font-family: var(--font-inter);
    font-size: 0.9rem;
    color: var(--color-text-body);
    outline: none;
    background: #FFFFFF;
    transition: border-color 0.2s ease;
}

.newsletter-form input[type="email"]:focus,
.newsletter-form input[type="text"]:focus {
    border-color: var(--color-primary);
}

.newsletter-form input[type="submit"],
.newsletter-form button[type="submit"] {
    position: absolute !important;
    right: 8px !important;
    top: 22px !important;
    transform: translateY(-50%) !important;
    background: transparent url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="18" viewBox="0 0 24 24" fill="none" stroke="%234F46E5" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="22" y1="2" x2="11" y2="13"></line><polygon points="22 2 15 22 11 13 2 9 22 2"></polygon></svg>') no-repeat center center !important;
    border: none !important;
    color: transparent !important;
    width: 32px !important;
    height: 32px !important;
    cursor: pointer !important;
    font-size: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    min-width: 0 !important;
}

.site-info {
    text-align: left;
    padding-top: 20px;
    border-top: 1px solid var(--color-neutral-border);
    font-size: 0.85rem;
    color: var(--color-text-body);
}

/* Mobile App UI Elements - Hidden on Desktop */
.dd-mobile-bottom-bar,
.dd-mobile-sidebar,
.dd-mobile-overlay {
    display: none;
}

/* Responsive General */
@media (max-width: 768px) {
    .dd-header {
        position: sticky;
        top: 0;
        padding: 10px 0;
    }

    .dd-header-inner {
        flex-direction: row;
        justify-content: center;
        gap: 0;
        height: auto;
    }

    .main-navigation,
    .header-actions {
        display: none;
    }

    /* Mobile Bottom Bar */
    .dd-mobile-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
        z-index: 1000;
        border-top: 1px solid var(--color-neutral-border);
        justify-content: space-around;
        padding: 10px 0;
        padding-bottom: calc(10px + env(safe-area-inset-bottom));
    }

    .mobile-nav-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: var(--color-text-body);
        font-size: 0.75rem;
        font-weight: 500;
        background: none;
        border: none;
        gap: 4px;
        cursor: pointer;
    }

    .mobile-nav-btn svg {
        color: var(--color-text-body);
    }

    .mobile-nav-btn.mobile-nav-primary {
        color: var(--color-primary);
    }

    .mobile-nav-btn.mobile-nav-primary svg {
        color: var(--color-primary);
    }

    /* Off-Canvas Sidebar */
    .dd-mobile-sidebar {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: -300px;
        width: 280px;
        height: 100vh;
        background: #FFFFFF;
        z-index: 2000;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }

    .dd-mobile-sidebar.active {
        left: 0;
    }

    .mobile-sidebar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background: #F8FAFC;
        border-bottom: 1px solid var(--color-neutral-border);
    }

    .mobile-sidebar-header .site-title {
        font-size: 1.2rem;
        margin: 0;
        color: var(--color-neutral);
        font-weight: 800;
    }

    .mobile-close-btn {
        background: none;
        border: none;
        cursor: pointer;
        color: var(--color-text-body);
        padding: 0;
    }

    .mobile-navigation ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-navigation ul li a {
        display: block;
        padding: 15px 20px;
        color: var(--color-neutral);
        font-weight: 500;
        text-decoration: none;
        border-bottom: 1px solid var(--color-neutral-border);
    }

    .mobile-navigation ul li a:hover {
        background: var(--color-neutral-light);
        color: var(--color-primary);
    }

    .mobile-navigation {
        flex: 1;
        overflow-y: auto;
    }

    .mobile-sidebar-footer {
        padding: 20px;
        background: #F8FAFC;
        border-top: 1px solid var(--color-neutral-border);
        text-align: center;
        margin-top: auto;
    }

    .mobile-socials {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 15px;
    }

    .mobile-socials a {
        color: var(--color-text-body);
        transition: color 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-socials a:hover {
        color: var(--color-primary);
    }

    .mobile-signature p {
        margin: 0;
        font-size: 0.75rem;
        color: var(--color-text-body);
        line-height: 1.5;
    }

    .dd-mobile-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1500;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .dd-mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* General responsive resets */
    .dd-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .hero-actions .dd-btn {
        width: 100%;
        box-sizing: border-box;
    }

    .tech-logos {
        gap: 30px;
    }

    .hero-image-wrapper {
        display: flex;
        justify-content: flex-start;
        overflow: hidden;
        padding-top: 20px;
        max-width: 100%;
        /* Prevent Grid blowout */
        min-width: 0;
    }

    .looma-mockup {
        min-width: 650px;
        flex-shrink: 0;
        transform: scale(calc((100vw - 40px) / 650));
        transform-origin: left top;
        margin-bottom: calc(-480px + (480px * ((100vw - 40px) / 650)));
        max-width: none;
    }

    .floating-card {
        transform: scale(0.85);
        bottom: 80px;
        left: -10px;
        z-index: 20;
    }
}

/* Hero Section */
.hero-section {
    padding: 70px 0 30px 0;
    /* Espaço reduzido com +10px e +30px no topo */
    background: #FAFAFA;
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.77fr 1.1fr;
    gap: 60px;
    align-items: center;
    min-width: 0;
}

.hero-content,
.hero-image-wrapper {
    min-width: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E0E7FF;
    color: var(--color-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-neutral);
    margin-bottom: 24px;
    margin-top: 0;
}

.text-primary {
    color: var(--color-primary);
}

.text-secondary {
    color: var(--color-secondary);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text-body);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.dd-btn-success {
    background-color: var(--color-secondary);
    color: #FFFFFF;
}

.dd-btn-success:hover {
    background-color: #059669;
}

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

.dd-btn-outline:hover {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

.hero-image-wrapper {
    position: relative;
}

/* Looma CRM Mockup */
.looma-mockup {
    width: 650px;
    /* Reduzido horizontalmente */
    height: 480px;
    background: #F4F5F7;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    overflow: hidden;
    font-family: var(--font-inter);
    border: 1px solid var(--color-neutral-border);
}

.lm-sidebar {
    width: 170px;
    background: #FFFFFF;
    border-right: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.lm-logo {
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    font-weight: 800;
    font-size: 1.1rem;
    color: #1E293B;
    border-bottom: 1px solid #E2E8F0;
    gap: 8px;
}

.lm-logo svg {
    width: 20px;
    height: 20px;
}

.lm-menu {
    list-style: none;
    padding: 10px;
    margin: 0;
}

.lm-menu li {
    padding: 6px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748B;
    border-radius: 6px;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    white-space: nowrap;
}

.lm-menu li svg {
    width: 14px;
    height: 14px;
}

.lm-menu li.lm-active {
    background: #EEF2FF;
    color: #4F46E5;
}

.lm-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.lm-header {
    height: 60px;
    background: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
}

.lm-tabs {
    display: flex;
    gap: 12px;
    overflow-x: hidden;
    white-space: nowrap;
}

.lm-tab {
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748B;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.lm-tab-active {
    color: #4F46E5;
    background: #EEF2FF;
    padding: 6px 12px;
    border-radius: 6px;
}

.lm-user {
    display: flex;
    align-items: center;
}

.lm-avatar {
    width: 32px;
    height: 32px;
    background: #4F46E5;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.lm-view {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lm-title {
    margin: 0;
    font-size: 1.2rem;
    color: #1E293B;
}

.lm-cards {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    overflow: hidden;
}

.lm-card {
    flex: 0 0 220px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
}

.lm-label {
    font-size: 0.7rem;
    color: #64748B;
    font-weight: 600;
}

.lm-val {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1E293B;
    margin: 8px 0;
    white-space: nowrap;
    letter-spacing: -0.5px;
}

.lm-trend {
    font-size: 0.7rem;
    font-weight: 600;
}

.lm-trend.green {
    color: #059669; /* WCAG AA contrast compliance */
}

.lm-charts-grid {
    display: flex;
    gap: 20px;
    flex: 1;
    flex-wrap: nowrap;
    overflow: hidden;
}

.lm-chart-box {
    flex: 0 0 260px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.lm-chart-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 20px;
}

/* Bar Chart */
.lm-bar-chart {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding-bottom: 10px;
    border-bottom: 1px dashed #E2E8F0;
}

@media (min-width: 993px) {
    .lm-chart-box {
        flex: 0 0 200px;
        padding: 16px;
    }
    
    .lm-bar-chart {
        justify-content: center;
        gap: 20px;
    }
}

.lm-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    height: 100%;
    justify-content: flex-end;
}

.lm-bar span {
    font-size: 0.7rem;
    color: #64748B;
    font-weight: 600;
}

.lm-fill {
    width: 30px;
    background: #4F46E5;
    border-radius: 4px 4px 0 0;
    transition: height 1s ease;
}

/* Funnel Chart */
.lm-funnel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lm-f-bar {
    position: relative;
    height: 32px;
    border-radius: 6px;
    background: #F1F5F9;
    display: flex;
    align-items: center;
    padding: 0 12px;
    overflow: hidden;
}

.lm-f-bar span {
    position: relative;
    z-index: 2;
    font-size: 0.75rem;
    font-weight: 700;
    color: #FFFFFF;
}

.lm-f-bar small {
    position: relative;
    z-index: 2;
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 800;
    color: #FFFFFF;
}

.lm-f-fill {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.f-blue .lm-f-fill {
    background: #3B82F6;
}

.f-yellow .lm-f-fill {
    background: #F59E0B;
}

.f-orange .lm-f-fill {
    background: #EA580C;
}

.f-green .lm-f-fill {
    background: #10B981;
}

/* Animations */
@keyframes looma-count-rev {

    0%,
    10% {
        content: "R$ 45.200,00";
    }

    20%,
    100% {
        content: "R$ 66.605,51";
    }
}

.count-rev::after {
    content: "R$ 66.605,51";
    animation: looma-count-rev 8s infinite alternate;
}

@keyframes looma-count-leads {

    0%,
    10% {
        content: "12";
    }

    20%,
    100% {
        content: "38";
    }
}

.count-leads::after {
    content: "38";
    animation: looma-count-leads 8s infinite alternate;
}

@keyframes looma-h1 {

    0%,
    10% {
        height: 40%;
    }

    20%,
    100% {
        height: 60%;
    }
}

@keyframes looma-h2 {

    0%,
    10% {
        height: 50%;
    }

    20%,
    100% {
        height: 80%;
    }
}

@keyframes looma-h3 {

    0%,
    10% {
        height: 30%;
    }

    20%,
    100% {
        height: 95%;
    }
}

.h1 {
    animation: looma-h1 8s infinite alternate;
}

.h2 {
    animation: looma-h2 8s infinite alternate;
}

.h3 {
    animation: looma-h3 8s infinite alternate;
}

@keyframes looma-f1 {

    0%,
    10% {
        width: 30%;
    }

    20%,
    100% {
        width: 100%;
    }
}

@keyframes looma-f2 {

    0%,
    10% {
        width: 25%;
    }

    20%,
    100% {
        width: 80%;
    }
}

@keyframes looma-f3 {

    0%,
    10% {
        width: 15%;
    }

    20%,
    100% {
        width: 50%;
    }
}

@keyframes looma-f4 {

    0%,
    10% {
        width: 5%;
    }

    20%,
    100% {
        width: 35%;
    }
}

.f1 {
    animation: looma-f1 8s infinite alternate;
}

.f2 {
    animation: looma-f2 8s infinite alternate;
}

.f3 {
    animation: looma-f3 8s infinite alternate;
}

.f4 {
    animation: looma-f4 8s infinite alternate;
}

@keyframes looma-n1 {

    0%,
    10% {
        content: "4";
    }

    20%,
    100% {
        content: "15";
    }
}

@keyframes looma-n2 {

    0%,
    10% {
        content: "3";
    }

    20%,
    100% {
        content: "21";
    }
}

@keyframes looma-n3 {

    0%,
    10% {
        content: "1";
    }

    20%,
    100% {
        content: "8";
    }
}

@keyframes looma-n4 {

    0%,
    10% {
        content: "0";
    }

    20%,
    100% {
        content: "5";
    }
}

.f-num-1::after {
    content: "15";
    animation: looma-n1 8s infinite alternate;
}

.f-num-2::after {
    content: "21";
    animation: looma-n2 8s infinite alternate;
}

.f-num-3::after {
    content: "8";
    animation: looma-n3 8s infinite alternate;
}

.f-num-4::after {
    content: "5";
    animation: looma-n4 8s infinite alternate;
}

.f-num-1,
.f-num-2,
.f-num-3,
.f-num-4 {
    font-size: 0;
}

.f-num-1::after,
.f-num-2::after,
.f-num-3::after,
.f-num-4::after {
    font-size: 0.75rem;
}

.floating-card {
    position: absolute;
    bottom: 20px;
    left: -30px;
    background: #FFFFFF;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 10;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: #ECFDF5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-text strong {
    font-size: 0.95rem;
    color: var(--color-neutral);
}

.card-text span {
    font-size: 0.75rem;
    color: var(--color-text-body);
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Animação de quique (bouncing) */
@keyframes bounce-anim {
    0% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(12px);
    }

    50% {
        transform: translateY(8px);
    }

    70% {
        transform: translateY(12px);
    }

    100% {
        transform: translateY(0);
    }
}

.bounce-anim {
    animation: bounce-anim 4s infinite ease-in-out;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .floating-card {
        left: 20px;
    }
}

/* Trusted Tech Section */
.tech-stack-section {
    background: #FFFFFF;
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--color-neutral-border);
}

.tech-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    margin-top: 0;
}

.tech-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94A3B8;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.tech-item svg {
    width: 24px;
    height: 24px;
}

.tech-item:hover {
    color: var(--color-neutral);
}

/* Tech Proof Section */
.tech-proof-section {
    padding: 80px 0;
    background: #FFFFFF;
}

.tech-proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.tech-proof-card {
    background: #FAFAFA;
    border: 1px solid var(--color-neutral-border);
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-proof-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.tech-proof-mockup {
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid var(--color-neutral-border);
    overflow: hidden;
    margin-bottom: 30px;
    height: 200px;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    background: #F1F5F9;
    padding: 8px 12px;
    display: flex;
    gap: 6px;
    border-bottom: 1px solid var(--color-neutral-border);
}

.mockup-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #CBD5E1;
}

.mockup-header .dot:nth-child(1) {
    background: #F87171;
}

.mockup-header .dot:nth-child(2) {
    background: #FBBF24;
}

.mockup-header .dot:nth-child(3) {
    background: #34D399;
}

.mockup-body {
    flex: 1;
    padding: 15px;
    display: flex;
}

/* Looma Mockup */
.mockup-looma .mockup-sidebar {
    width: 40px;
    background: #F1F5F9;
    border-radius: 8px;
    margin-right: 15px;
}

.mockup-looma .mockup-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-end;
}

.mockup-chat-bubble {
    height: 20px;
    width: 60%;
    background: #E2E8F0;
    border-radius: 10px 10px 10px 0;
}

.mockup-chat-bubble.right {
    background: var(--color-primary);
    opacity: 0.8;
    margin-left: auto;
    border-radius: 10px 10px 0 10px;
}

/* DD Dashboard Mockup */
.mockup-dd {
    flex-direction: column;
    gap: 15px;
}

.mockup-dd .mockup-metrics {
    display: flex;
    gap: 15px;
}

.mockup-dd .metric {
    flex: 1;
    height: 40px;
    background: #F1F5F9;
    border-radius: 8px;
}

.mockup-dd .mockup-chart {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    padding-top: 20px;
}

.mockup-chart .bar {
    flex: 1;
    background: var(--color-primary);
    border-radius: 4px 4px 0 0;
    opacity: 0.8;
}

.mockup-chart .bar-1 {
    height: 40%;
}

.mockup-chart .bar-2 {
    height: 70%;
}

.mockup-chart .bar-3 {
    height: 50%;
}

.mockup-chart .bar-4 {
    height: 100%;
}

.tech-proof-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.tag-purple {
    background: #EEF2FF;
    color: #4F46E5;
}

.tag-indigo {
    background: #E0E7FF;
    color: #3730A3;
}

.tech-proof-card-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    margin-top: 0;
    color: var(--color-neutral);
}

.tech-proof-desc {
    color: var(--color-text-body);
    line-height: 1.6;
    margin-bottom: 25px;
}

.tech-proof-benefit {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding-top: 20px;
    border-top: 1px solid var(--color-neutral-border);
}

.tech-proof-benefit svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.tech-proof-benefit span {
    font-size: 0.9rem;
    color: var(--color-neutral);
    font-weight: 500;
}

.tech-proof-cta {
    background: #F8FAFC;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--color-neutral-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.tech-proof-cta-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-neutral);
    margin-bottom: 20px;
    margin-top: 0;
}

.tech-proof-btn {
    background-color: #25D366 !important;
    border-color: #25D366 !important;
    color: #FFF !important;
}

.tech-proof-btn:hover {
    background-color: #128C7E !important;
    border-color: #128C7E !important;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .tech-proof-grid {
        grid-template-columns: 1fr;
    }

    .tech-proof-card {
        padding: 30px 20px;
    }
}

/* Services Section */
.services-section {
    background: #FAFAFA;
    padding: 80px 0;
}

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

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-neutral);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    margin-top: 0;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-text-body);
    line-height: 1.6;
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--color-neutral-border);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

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

.service-icon svg {
    width: 24px;
    height: 24px;
}

.icon-purple {
    background: rgba(79, 70, 229, 0.1);
    color: var(--color-primary);
}

.icon-green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-secondary);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-neutral);
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--color-text-body);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }
}



/* Standard Section */
.standard-section {
    padding: 100px 0 100px 0;
    background: #FFFFFF;
    position: relative;
    z-index: 10;
}

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

.standard-content {
    max-width: 500px;
}

.standard-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-neutral);
    margin-bottom: 20px;
    line-height: 1.2;
    margin-top: 0;
}

.standard-desc {
    font-size: 1.1rem;
    color: var(--color-text-body);
    line-height: 1.6;
    margin-bottom: 30px;
}

.standard-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.standard-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: var(--color-neutral);
    font-weight: 500;
    margin-bottom: 20px;
}

.standard-features li svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.standard-mockup-wrapper {
    position: relative;
    width: 100%;
}

.dark-mockup {
    background: #0B1120;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dm-header {
    text-align: center;
    margin-bottom: 40px;
}

.dm-tiny-title {
    font-size: 0.65rem;
    font-weight: 700;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 15px;
}

.dm-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: #94A3B8;
    font-weight: 600;
    font-size: 1.1rem;
}

.dm-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dm-card {
    background: #151E32;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform 0.3s ease;
}

.dm-card:hover {
    transform: translateY(-5px);
}

.dm-card h3 {
    font-size: 0.9rem;
    margin: 15px 0 10px;
    font-weight: 600;
    color: #FFFFFF;
}

.dm-card p {
    font-size: 0.75rem;
    color: #94A3B8;
    line-height: 1.5;
    margin: 0;
}

.dm-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dm-icon svg {
    width: 16px;
    height: 16px;
}

.dm-icon.icon-blue {
    background: rgba(56, 189, 248, 0.1);
    color: #38BDF8;
}

.dm-icon.icon-purple {
    background: rgba(167, 139, 250, 0.1);
    color: #A78BFA;
}

.dm-icon.icon-green {
    background: rgba(52, 211, 153, 0.1);
    color: #34D399;
}

@media (max-width: 992px) {
    .standard-grid {
        grid-template-columns: 1fr;
    }

    .standard-content {
        max-width: 100%;
        text-align: center;
    }

    .standard-features li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .dm-cards {
        grid-template-columns: 1fr;
    }

    .dark-mockup {
        padding: 20px;
    }

    .dm-logos {
        gap: 15px;
        font-size: 0.9rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 40px 0 100px 0;
    background: #FAFAFA;
}

.cta-box {
    background: var(--color-primary);
    border-radius: 24px;
    padding: 60px 40px 100px;
    text-align: center;
    color: #FFFFFF;
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    margin-top: 0;
    color: #FFFFFF;
}

.cta-subtitle {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cta-form-wrapper form {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 700px;
    margin: 0 auto 15px;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-form-wrapper .dd-form-fields {
    flex: 1;
    min-width: 250px;
    order: 1;
}

.cta-form-wrapper .dd-form-footer {
    order: 2;
}

.cta-form-wrapper .cf-turnstile {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 5px;
    margin-bottom: 0 !important;
}

.cta-form-wrapper .dd-submit-btn {
    flex: 0 0 240px;
    font-size: 0.9rem !important;
    padding: 0 15px !important;
    letter-spacing: 0.5px !important;
    white-space: nowrap;
}

.cta-form-wrapper form label {
    display: none !important;
}

.cta-form-wrapper .dd-form-group {
    flex: 1;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.cta-form-wrapper form input[type="email"],
.cta-form-wrapper form input[type="text"] {
    width: 100%;
    box-sizing: border-box;
    padding: 0 24px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    outline: none;
    font-family: var(--font-inter);
    background: #FFFFFF;
    color: var(--color-neutral);
    height: 54px;
}

.cta-form-wrapper form button[type="submit"],
.cta-form-wrapper form input[type="submit"] {
    background: var(--color-secondary);
    color: #FFFFFF;
    border: none;
    padding: 0 32px;
    font-size: 1rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-form-wrapper form button[type="submit"]:hover,
.cta-form-wrapper form input[type="submit"]:hover {
    background: #059669;
}

.cta-disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@media (max-width: 768px) {
    .cta-form-wrapper form {
        flex-direction: column;
    }

    .cta-form-wrapper form input[type="submit"],
    .cta-form-wrapper form button[type="submit"],
    .cta-form-wrapper .dd-submit-btn {
        width: 100%;
        margin-top: 10px;
        font-size: 0.75rem !important;
        letter-spacing: 0.5px !important;
        padding: 16px 10px !important;
        white-space: normal !important;
        line-height: 1.3 !important;
        height: auto !important;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .cta-title {
        font-size: 2rem;
    }

    /* Footer bottom padding so it is not hidden behind the mobile bottom bar */
    .dd-footer {
        padding-bottom: 90px;
    }

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

    /* Responsive Typography */
    .section-title {
        font-size: 1.6rem;
    }

    /* Align Standard Section texts to left */
    .standard-content,
    .standard-title,
    .standard-desc {
        text-align: left;
    }

    .standard-features li {
        justify-content: flex-start;
    }
}

/* -------------------------------------
   About Page (template-sobre.php)
------------------------------------- */
.about-hero-section {
    position: relative;
    padding: 120px 0 80px 0;
    background: #FAFAFA;
    overflow: hidden;
}

.about-hero-pattern {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    background-image: radial-gradient(#CBD5E1 15%, transparent 15%);
    background-size: 20px 20px;
}

.about-hero-pattern.left-pattern {
    left: 20px;
}

.about-hero-pattern.right-pattern {
    right: 20px;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
    color: #1E293B;
}

.about-title .gradient-text {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.about-description {
    font-size: 1.1rem;
    color: #64748B;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-hero-pattern {
        display: none;
    }

    .about-title {
        font-size: 2.5rem;
    }

    .about-hero-section {
        padding: 80px 0 60px 0;
    }
}

/* -------------------------------------
   Nossa História Section
------------------------------------- */
.about-history-section {
    padding: 100px 0;
    background: #FFFFFF;
}

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

/* History Content */
.history-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 24px;
    margin-top: 0;
}

.history-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 40px;
}

.history-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4F46E5;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.history-quote {
    border-left: 4px solid #7C3AED;
    padding-left: 20px;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #334155;
    font-weight: 500;
}

/* History Visual (Mockup) */
.history-visual {
    position: relative;
    width: 100%;
}

.history-mockup-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 110%;
    /* Aspect ratio for tall mockup */
}

.dark-site-mockup {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 100%;
    background: #0F172A;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
}

.dsm-header {
    height: 40px;
    border-bottom: 1px solid #1E293B;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.dsm-logo {
    width: 80px;
    height: 12px;
    background: #334155;
    border-radius: 2px;
}

.dsm-nav {
    display: flex;
    gap: 8px;
}

.dsm-line {
    width: 24px;
    height: 4px;
    background: #334155;
    border-radius: 2px;
}

.dsm-body {
    padding: 40px 30px;
}

.dsm-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 80%;
}

.dsm-text {
    width: 100%;
    height: 8px;
    background: #334155;
    border-radius: 4px;
    margin-bottom: 10px;
}

.dsm-text.short {
    width: 70%;
    margin-bottom: 30px;
}

.dsm-btn {
    width: 120px;
    height: 36px;
    background: #F1F5F9;
    border-radius: 18px;
}

.dsm-cards {
    display: flex;
    gap: 15px;
    padding: 0 30px;
    margin-top: auto;
    margin-bottom: 30px;
}

.dsm-card {
    flex: 1;
    height: 100px;
    background: #1E293B;
    border-radius: 8px;
}

.history-mockup-mobile {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 35%;
    height: 70%;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: -10px 10px 40px rgba(0, 0, 0, 0.1);
    border: 6px solid #F1F5F9;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hmm-screen {
    flex: 1;
    background: #F8FAFC;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hmm-chat {
    width: 70%;
    height: 30px;
    background: #E2E8F0;
    border-radius: 8px 8px 8px 0;
}

.hmm-chat.right {
    background: #4F46E5;
    align-self: flex-end;
    border-radius: 8px 8px 0 8px;
}

@media (max-width: 768px) {
    .history-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .history-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .history-title {
        font-size: 2.2rem;
    }

    .history-stats {
        flex-direction: column;
        gap: 20px;
    }

    .dsm-title {
        font-size: 1.4rem;
    }
}

/* -------------------------------------
   Como Pensamos Section
------------------------------------- */
.about-pillars-section {
    padding: 100px 0;
    background: #FAFAFA;
}

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

.pillar-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #F1F5F9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    background: #EEF2FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4F46E5;
    margin-bottom: 24px;
}

.pillar-icon svg {
    width: 24px;
    height: 24px;
}

.pillar-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 16px;
    margin-top: 0;
}

.pillar-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748B;
    margin: 0;
}

@media (max-width: 992px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .about-pillars-section {
        padding: 60px 0;
    }
}

/* -------------------------------------
   Inteligência Híbrida Section
------------------------------------- */
.hybrid-intelligence-section {
    padding: 100px 0;
    background: #1E293B;
}

.hybrid-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.hybrid-card {
    background: #0F172A;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #334155;
    transition: transform 0.3s ease;
}

.hybrid-card:hover {
    transform: translateY(-5px);
}

.hybrid-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hybrid-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background: #1E293B;
}

.hybrid-avatar.ai-avatar {
    background: #7C3AED;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hybrid-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 4px 0;
}

.hybrid-role {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hybrid-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hybrid-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.hybrid-icon-wrapper {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #312E81;
    color: #4F46E5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.hybrid-icon-wrapper svg {
    width: 14px;
    height: 14px;
}

.ai-icon {
    background: transparent;
    color: #8B5CF6;
}

.ai-icon svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .hybrid-grid {
        grid-template-columns: 1fr;
    }

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

/* -------------------------------------
   About Final CTA Section
------------------------------------- */
.about-cta-section {
    padding: 80px 0 120px 0;
    background: #FFFFFF;
}

.about-cta-card {
    background: #F4F7FF;
    border-radius: 24px;
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 20px;
    margin-top: 0;
}

.about-cta-desc {
    font-size: 1.1rem;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.about-cta-btn {
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.4);
    font-size: 1.1rem;
    padding: 16px 36px;
    border-radius: 30px;
}

.about-cta-btn:hover {
    box-shadow: 0 15px 35px -5px rgba(16, 185, 129, 0.5);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .about-cta-section {
        padding: 60px 0 80px 0;
    }

    .about-cta-card {
        padding: 50px 20px;
    }

    .about-cta-title {
        font-size: 2rem;
    }

    .about-cta-btn {
        font-size: 0.9rem;
        padding: 14px 20px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        white-space: nowrap;
        max-width: 320px;
        margin: 0 auto;
    }
}

/* ========================================= */
/* PAGES - SERVIÇOS */
/* ========================================= */

.services-hero-section {
    padding: 120px 0 100px 0;
    background-color: #FAFAFA;
    background-image: radial-gradient(#CBD5E1 1px, transparent 1px);
    background-size: 20px 20px;
    position: relative;
    border-bottom: 1px solid var(--color-neutral-border);
}

.services-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Serviços Grid */
.services-grid-section {
    padding: 80px 0 120px 0;
    background-color: #FAFAFA;
}

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

.s-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.s-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.s-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #EEF2FF;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.s-card-icon svg {
    width: 24px;
    height: 24px;
}

.s-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-neutral);
    margin-bottom: 12px;
}

.s-card-desc {
    font-size: 1rem;
    color: var(--color-text-body);
    line-height: 1.6;
    margin-bottom: 24px;
}

.s-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.s-card-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--color-text-body);
    margin-bottom: 12px;
}

.s-card-list li svg {
    width: 16px;
    height: 16px;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.s-card-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
}

.s-card-link:hover {
    color: var(--color-primary-dark);
}

/* Card Largo */
.s-card-wide {
    grid-column: span 2;
    flex-direction: row;
    justify-content: space-between;
    gap: 32px;
}

.s-wide-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.s-wide-stats {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

.s-stat-box {
    background: #FAFAFA;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 140px;
}

.s-stat-val {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1;
}

.s-stat-lbl {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-body);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .services-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .s-card-wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .services-bento-grid {
        grid-template-columns: 1fr;
    }

    .s-card-wide {
        grid-column: 1;
        flex-direction: column;
    }

    .s-wide-stats {
        flex-direction: column;
        width: 100%;
    }
}

/* Como Operamos */
.process-section {
    padding: 100px 0;
    background-color: #FAFAFA;
    background-image: radial-gradient(#CBD5E1 1px, transparent 1px);
    background-size: 24px 24px;
}

.process-header {
    margin: 0 auto 60px auto;
    max-width: 600px;
    text-align: center;
}

.process-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-neutral);
    margin-top: 0;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.process-desc {
    font-size: 1.1rem;
    color: var(--color-text-body);
    line-height: 1.6;
    margin: 0;
}

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

.p-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.p-card-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #FFFFFF;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.p-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-neutral);
    margin-bottom: 12px;
}

.p-card-desc {
    font-size: 0.95rem;
    color: var(--color-text-body);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0 100px 0;
    background-color: var(--color-neutral-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid var(--color-neutral-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item[open] {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--color-primary);
}

.faq-question {
    padding: 24px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-neutral);
    cursor: pointer;
    list-style: none;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px 24px 24px;
    font-size: 1rem;
    color: var(--color-text-body);
    line-height: 1.6;
}

.faq-answer p {
    margin: 0;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0 80px 0;
    }

    .faq-question {
        padding: 20px;
        font-size: 1.05rem;
    }

    .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

/* Dark CTA Section */
.dark-cta-section {
    padding: 100px 0;
    background-color: #FAFAFA;
}

.dark-cta-card {
    background: var(--color-neutral);
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(30, 41, 59, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dark-cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    margin-top: 0;
}

.dark-cta-desc {
    font-size: 1.1rem;
    color: #94A3B8;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.dark-cta-btn {
    font-size: 1.1rem;
    padding: 16px 36px;
    border-radius: 30px;
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.4);
    display: inline-flex;
    align-items: center;
}

.dark-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(16, 185, 129, 0.5);
}

@media (max-width: 768px) {
    .dark-cta-card {
        padding: 50px 20px;
    }

    .dark-cta-title {
        font-size: 1.8rem;
    }

    .dark-cta-btn {
        font-size: 0.95rem;
        padding: 14px 20px;
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}

/* ========================================= */
/* PAGES - BLOG */
/* ========================================= */

.blog-hero-section {
    padding: 100px 0 80px 0;
    background-color: var(--color-neutral-light);
    border-bottom: 1px solid var(--color-neutral-border);
}

.blog-hero-inner {
    max-width: 900px;
    margin: 0;
}

.blog-badge {
    display: inline-block;
    background-color: #EDE9FE;
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.blog-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-neutral);
    line-height: 1.1;
    margin: 0 0 40px 0;
    letter-spacing: -1.5px;
}

.blog-controls {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.blog-search-box {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 320px;
    flex: 1;
    max-width: 400px;
}

.blog-search-box svg {
    position: absolute;
    left: 16px;
    color: #94A3B8;
}

.blog-search-box input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 1px solid var(--color-neutral-border);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--color-neutral);
    background-color: #FFFFFF;
    outline: none;
    transition: all 0.2s ease;
}

.blog-search-box input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.blog-cat-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cat-pill {
    padding: 10px 20px;
    border: 1px solid var(--color-neutral-border);
    border-radius: 24px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-body);
    text-decoration: none;
    background-color: #FFFFFF;
    transition: all 0.2s ease;
}

.cat-pill:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.cat-pill.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .blog-hero-title {
        font-size: 2.8rem;
    }

    .blog-controls {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-search-box {
        max-width: 100%;
        width: 100%;
        min-width: unset;
    }
}

/* Blog Listing & Featured Post */
.blog-list-section {
    padding: 60px 0 100px 0;
    background-color: var(--color-neutral-light);
}

.featured-post-card {
    display: flex;
    background: #FFFFFF;
    border: 1px solid var(--color-neutral-border);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.featured-img {
    flex: 1.2;
    min-height: 350px;
    background-size: cover;
    background-position: center;
}

.featured-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-meta {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-highlight,
.meta-cat {
    color: var(--color-primary);
}

.meta-sep,
.meta-time,
.meta-date {
    color: #94A3B8;
}

.featured-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-neutral);
    line-height: 1.4;
    margin: 0 0 16px 0;
}

.featured-excerpt {
    font-size: 0.95rem;
    color: var(--color-text-body);
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.read-more-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
}

.read-more-link:hover {
    text-decoration: underline;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.post-card {
    display: flex;
    flex-direction: column;
}

.post-img {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    margin-bottom: 20px;
}

.post-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-neutral);
    line-height: 1.4;
    margin: 0 0 12px 0;
}

.post-excerpt {
    font-size: 0.9rem;
    color: var(--color-text-body);
    line-height: 1.5;
    margin: 0 0 20px 0;
    flex: 1;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 60px;
}

.blog-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-neutral-border);
    background: #FFFFFF;
    color: var(--color-text-body);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.blog-pagination a.page-numbers:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.blog-pagination .page-numbers.current {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #FFFFFF;
}

.blog-pagination .page-numbers.dots {
    border: none;
    background: transparent;
    color: #94A3B8;
}

@media (max-width: 992px) {
    .featured-post-card {
        flex-direction: column;
    }

    .featured-img {
        min-height: 250px;
    }

    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog CTA Section */
.blog-cta-section {
    padding: 0 0 100px 0;
    background-color: var(--color-neutral-light);
}

.blog-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFF;
    border: 1px solid var(--color-neutral-border);
    border-radius: 16px;
    padding: 48px 60px;
    box-shadow: 20px 0 60px rgba(16, 185, 129, 0.04);
}

.cta-content {
    max-width: 65%;
}

.cta-content h3 {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--color-neutral);
    margin: 0 0 12px 0;
}

.cta-content p {
    font-size: 0.95rem;
    color: var(--color-text-body);
    line-height: 1.5;
    margin: 0;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #10B981;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px -6px rgba(16, 185, 129, 0.4);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px -6px rgba(16, 185, 129, 0.5);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .blog-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
        gap: 30px;
    }

    .cta-content {
        max-width: 100%;
    }

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

/* ========================================= */
/* PAGES - SINGLE POST */
/* ========================================= */

.single-post-wrapper {
    padding: 60px 0 100px 0;
    background-color: var(--color-neutral-light);
}

.single-top-section {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    margin-bottom: 30px;
}

.back-to-blog:hover {
    text-decoration: underline;
}

.single-meta-pills {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.s-pill {
    background-color: #EDE9FE;
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.single-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-neutral);
    line-height: 1.3;
    margin: 0 0 30px 0;
    letter-spacing: -1px;
    overflow-wrap: break-word;
    word-break: break-word;
}

.single-author-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

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

.author-info strong {
    font-size: 1rem;
    color: var(--color-neutral);
}

.author-info span {
    font-size: 0.85rem;
    color: #94A3B8;
}

.single-content-layout {
    display: grid;
    grid-template-columns: 80px 1fr 300px;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.social-sticky,
.widget-sticky {
    position: sticky;
    top: 100px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--color-neutral-border);
    background: #FFFFFF;
    color: var(--color-neutral);
    cursor: pointer;
    margin-bottom: 16px;
    transition: all 0.2s ease;
}

.social-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.single-featured-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 40px;
}

.post-the-content {
    font-size: 1.05rem;
    color: var(--color-text-body);
    line-height: 1.8;
}

.post-the-content h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--color-neutral);
    margin: 40px 0 20px 0;
    line-height: 1.4;
}

.post-the-content p {
    margin-bottom: 24px;
}

.post-the-content blockquote {
    background: #F8FAFC;
    border: none;
    border-left: 4px solid #10B981;
    border-radius: 0 12px 12px 0;
    padding: 30px;
    margin: 40px 0;
    position: relative;
}

.post-the-content blockquote::before {
    content: "INSIGHT ESPECIALIZADO";
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-neutral);
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.post-the-content blockquote p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--color-neutral);
    margin: 0 0 24px 0;
}

.post-the-content blockquote p:last-child {
    margin-bottom: 0;
}

/* Oculta citações vazias no frontend */
.post-the-content blockquote:empty,
.post-the-content blockquote:has(p:empty:only-child) {
    display: none;
}

/* Estilo para transformar links da citação em botões */
.post-the-content blockquote .btn-citacao a,
.post-the-content blockquote.btn-citacoes a,
.post-the-content blockquote.btn-citacao a,
.post-the-content blockquote a.btn-citacao {
    display: inline-block;
    background: #10B981;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-style: normal;
    margin-top: 15px;
    font-size: 1rem;
    transition: 0.2s ease;
    border: none;
}

.post-the-content blockquote .btn-citacao a:hover,
.post-the-content blockquote.btn-citacoes a:hover,
.post-the-content blockquote.btn-citacao a:hover,
.post-the-content blockquote a.btn-citacao:hover {
    background: #059669;
}

.post-the-content blockquote cite,
.post-the-content blockquote footer {
    display: block;
    margin-top: 24px;
    font-style: normal;
}

.post-the-content blockquote cite a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #10B981;
    color: #FFFFFF !important;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.post-the-content blockquote cite a::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'%3E%3C/path%3E%3Cpolyline points='15 3 21 3 21 9'%3E%3C/polyline%3E%3Cline x1='10' y1='14' x2='21' y2='3'%3E%3C/line%3E%3C/svg%3E");
    background-size: cover;
}

.post-the-content blockquote cite a:hover {
    background-color: #059669;
}

.sidebar-widget {
    background: #FFFFFF;
    border: 1px solid var(--color-neutral-border);
    border-radius: 16px;
    padding: 30px;
}

.widget-icon {
    width: 48px;
    height: 48px;
    background: #EDE9FE;
    color: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-neutral);
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.widget-desc {
    font-size: 0.9rem;
    color: var(--color-text-body);
    line-height: 1.5;
    margin: 0 0 24px 0;
}

.widget-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.widget-list li {
    font-size: 0.85rem;
    color: var(--color-neutral);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.widget-btn {
    display: flex;
    justify-content: center;
    background-color: #10B981;
    color: #FFF;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.widget-btn:hover {
    background-color: #059669;
    color: #FFF;
}

/* Bottom Author */
.single-bottom-author {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: #FFFFFF;
    border: 1px solid var(--color-neutral-border);
    border-radius: 16px;
    padding: 40px;
    margin-top: 60px;
}

.bottom-author-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

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

.bottom-author-info .written-by {
    font-size: 0.75rem;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.bottom-author-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-neutral);
    margin: 0 0 4px 0;
}

.bottom-author-info .author-role {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.bottom-author-info p {
    font-size: 0.95rem;
    color: var(--color-text-body);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1100px) {
    .single-content-layout {
        grid-template-columns: 80px 1fr;
    }

    .widget-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .single-content-layout {
        grid-template-columns: 1fr;
    }

    .social-sidebar {
        display: none;
    }

    .single-title {
        font-size: 2.2rem;
    }

    .single-bottom-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
    }
}

/* ==========================================================================
   404 PAGE STYLES
   ========================================================================== */
.error-404-main {
    padding: 100px 0;
    background-color: var(--color-background);
    overflow-x: hidden;
}

.error-404-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.error-title {
    font-size: 8rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    margin: 0 0 20px 0;
    letter-spacing: -3px;
}

.error-subtitle {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-neutral);
    margin: 0 0 20px 0;
    letter-spacing: -1px;
}

.error-desc {
    font-size: 1.1rem;
    color: var(--color-text-body);
    line-height: 1.6;
    margin: 0 0 40px 0;
}

.error-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.error-actions .btn-primary,
.error-actions .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.error-actions .btn-primary {
    background-color: #10B981;
    color: #FFFFFF;
}

.error-actions .btn-primary:hover {
    background-color: #059669;
    transform: translateY(-2px);
}

.error-actions .btn-outline {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

.error-actions .btn-outline:hover {
    background-color: var(--color-primary);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.error-404-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.visual-box {
    background: #FFFFFF;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--color-neutral-border);
    box-sizing: border-box;
}

.abstract-graphic {
    width: 100%;
    height: auto;
}

.visual-overlay-img {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 4px solid #FFFFFF;
}

.error-404-suggestions {
    background: #F1F5F9;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.error-404-suggestions h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-neutral);
    margin: 0 0 30px 0;
}

.suggestion-pills {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.s-pill-link {
    background: #FFFFFF;
    color: var(--color-text-body);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    border: 1px solid var(--color-neutral-border);
    transition: all 0.3s ease;
}

.s-pill-link:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.1);
}

@media (max-width: 992px) {
    .error-404-main {
        padding: 60px 0 120px 0;
    }

    .error-404-suggestions {
        padding: 40px 20px;
    }

    .visual-box {
        padding: 40px;
    }

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

    .error-actions {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .error-actions .btn-primary,
    .error-actions .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .error-title {
        font-size: 5rem;
    }

    .error-subtitle {
        font-size: 1.8rem;
    }

    .visual-overlay-img {
        right: 0;
        bottom: -10px;
        width: 100px;
        height: 100px;
    }
}

/* Contact Form Styling - Restricted to Contact Page */
.page-contato-main .dd-form-container {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--color-neutral-border);
}

.page-contato-main .dd-form-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.page-contato-main .dd-field-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.page-contato-main .dd-field-group:nth-child(n+3) {
    grid-column: 1 / -1;
}

.page-contato-main .dd-field-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748B;
    margin-bottom: 8px;
}

.page-contato-main .dd-form-fields input,
.page-contato-main .dd-form-fields textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-neutral-border);
    border-radius: 8px;
    font-family: var(--font-inter);
    font-size: 0.95rem;
    color: var(--color-neutral);
    background: #FFFFFF;
    transition: all 0.2s ease;
}

.page-contato-main .dd-form-fields textarea {
    min-height: 120px;
    resize: vertical;
}

.page-contato-main .dd-form-fields input:focus,
.page-contato-main .dd-form-fields textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.page-contato-main .dd-form-fields input::placeholder,
.page-contato-main .dd-form-fields textarea::placeholder {
    color: #94A3B8;
}

.page-contato-main .dd-form-footer {
    text-align: center;
}

.page-contato-main .dd-form-footer .dd-submit-btn {
    width: 100%;
    background-color: var(--color-secondary);
    color: #FFFFFF;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.page-contato-main .dd-form-footer .dd-submit-btn::after {
    content: "►";
    font-size: 0.8rem;
}

.page-contato-main .dd-form-fields select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-neutral-border);
    border-radius: 8px;
    font-family: var(--font-inter);
    font-size: 0.95rem;
    color: var(--color-neutral);
    background: #FFFFFF;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.page-contato-main .dd-form-fields select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.page-contato-main .dd-form-footer .dd-submit-btn:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.2);
}

.page-contato-main .dd-form-footer::after {
    content: "Responderemos em até 24 horas úteis.";
    display: block;
    font-size: 0.8rem;
    color: #94A3B8;
    margin-top: 16px;
}

@media (max-width: 768px) {
    .dd-form-fields {
        grid-template-columns: 1fr;
    }

    .dd-field-group:nth-child(n) {
        grid-column: 1 / -1;
    }

    .dd-form-container {
        padding: 30px 20px;
    }
}

/* Contact Page Layout */
.page-contato-main {
    padding: 80px 0;
    background-color: #F8FAFC;
    min-height: calc(100vh - 70px);
}

.contato-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.contato-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-neutral);
    margin-bottom: 20px;
    line-height: 1.2;
}

.contato-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-body);
    line-height: 1.6;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contato-info-box {
    padding-right: 40px;
}

.contato-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-neutral);
    margin-bottom: 30px;
}

.contato-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.c-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.c-icon {
    width: 48px;
    height: 48px;
    background: #EEF2FF;
    color: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.c-text {
    display: flex;
    flex-direction: column;
}

.c-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.c-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-neutral);
}

.contato-social {
    margin-bottom: 40px;
}

.social-icons-wrap {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.s-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-neutral-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-body);
    transition: all 0.3s ease;
}

.s-icon:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.1);
}

.contato-image-wrap {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    background: #E2E8F0;
}

.contato-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.office-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #E2E8F0 0%, #CBD5E1 100%);
    color: #94A3B8;
}

@media (max-width: 992px) {
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contato-info-box {
        padding-right: 0;
    }

    .page-contato-main {
        padding: 40px 0;
    }

    .contato-title {
        font-size: 2rem;
    }
}

/* Contact FAQ Section */
.contato-faq-section {
    background-color: #EEF2FF;
    padding: 80px 0;
    border-top: 1px solid #E0E7FF;
}

.faq-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.faq-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-neutral);
    margin-bottom: 16px;
}

.faq-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-body);
}

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

.faq-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--color-neutral-border);
    transition: all 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.faq-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.faq-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-neutral);
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-card-text {
    font-size: 0.95rem;
    color: var(--color-text-body);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contato-faq-section {
        padding: 50px 0;
    }

    .faq-title {
        font-size: 1.8rem;
    }
}

.footer-social-icons a:hover {
    color: var(--color-primary) !important;
}

/* ==========================================================================
   LP Automação Template Styles
   ========================================================================== */

.lp-main {
    background-color: #FFFFFF;
}

.lp-hero-centered {
    position: relative;
    padding: 160px 0 120px;
    background-color: #FAFAFA;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

/* Voltando o dot-bg apenas para o Hero e bem suave */
.lp-dot-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(#CBD5E1 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    opacity: 0.15; /* Muito suave, quase imperceptível */
    z-index: 1;
}

.lp-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,255,255,0.85) 40%, rgba(255,255,255,0) 70%);
    z-index: 2;
    pointer-events: none;
}

.relative { position: relative; }
.z-10 { z-index: 10; }

.lp-hero-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F3E8FF;
    color: #9333EA;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.lp-badge-icon {
    width: 16px;
    height: 16px;
}

.lp-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-neutral);
    margin-bottom: 30px;
    letter-spacing: -0.03em;
    text-align: center;
}

.lp-hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--color-text-body);
    max-width: 760px;
    margin: 0 auto 50px auto;
    text-align: center;
}

.lp-hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.lp-hero-actions .lp-btn {
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .lp-hero-centered {
        padding: 100px 0 60px;
        min-height: 60vh;
    }
    
    .lp-hero-title {
        font-size: 2.8rem;
    }
    
    .lp-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .lp-hero-subtitle br {
        display: none;
    }
    
    .lp-hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }
    
    .lp-hero-actions .lp-btn {
        width: 100%;
    }
}

/* ==========================================================================
   LP Automação - Architecture Section
   ========================================================================== */

.lp-architecture-section {
    position: relative;
    padding: 100px 0;
    background-color: #FFFFFF; /* Fundo branco ocupando toda a horizontal */
    z-index: 10;
}

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

.lp-arch-content {
    max-width: 500px;
}

.lp-arch-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-neutral);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.lp-arch-desc {
    font-size: 1.15rem;
    color: var(--color-text-body);
    line-height: 1.6;
    margin-bottom: 40px;
}

.lp-arch-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-arch-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: var(--color-neutral);
    margin-bottom: 20px;
    line-height: 1.6;
}

.lp-check-icon {
    width: 24px;
    height: 24px;
    color: #6366F1;
    flex-shrink: 0;
    margin-top: 2px;
}

.lp-arch-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.lp-arch-image-wrapper {
    position: relative;
    border-radius: 16px;
    width: 100%;
}

.lp-arch-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.lp-arch-floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #FFFFFF;
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #F1F5F9;
    max-width: 280px;
    z-index: 20;
    animation: float-anim 6s ease-in-out infinite;
}

.lp-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.lp-card-icon-wrapper {
    width: 32px;
    height: 32px;
    background: #DCFCE7;
    color: #16A34A;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-card-icon-wrapper svg {
    width: 18px;
    height: 18px;
}

.lp-card-header strong {
    color: var(--color-neutral);
    font-size: 1.05rem;
    font-weight: 700;
}

.lp-arch-floating-card p {
    font-size: 0.95rem;
    color: var(--color-text-body);
    margin: 0;
    line-height: 1.4;
}

/* ==========================================================================
   LP Automação - Scalability Section
   ========================================================================== */

.lp-scalability-section {
    padding: 100px 0 100px 0;
    background-color: #FAFAFA;
}

.lp-scale-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.lp-scale-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-neutral);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    text-align: center;
}

.lp-scale-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-body);
    text-align: center;
}

.lp-scale-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lp-scale-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #F1F5F9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-scale-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.lp-scale-icon {
    width: 50px;
    height: 50px;
    background: #F3E8FF;
    color: #9333EA; /* Light purple to match badge */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.lp-scale-icon svg {
    width: 24px;
    height: 24px;
}

.lp-scale-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-neutral);
    margin-bottom: 16px;
    line-height: 1.3;
}

.lp-scale-card p {
    font-size: 1.05rem;
    color: var(--color-text-body);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   LP Automação - Methodology Section
   ========================================================================== */

.lp-methodology-section {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.lp-steps-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.lp-steps-line {
    position: absolute;
    top: 24px; /* Centered with the step numbers */
    left: 10%;
    right: 10%;
    height: 1px;
    background-image: linear-gradient(to right, transparent, #E2E8F0 20%, #E2E8F0 80%, transparent);
    z-index: 1;
}

.lp-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.lp-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lp-step-number {
    width: 48px;
    height: 48px;
    background-color: #0F172A; /* Slate-900 / Dark blue */
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: 0 0 0 8px #FFFFFF; /* Makes line cut off before number */
}

.lp-step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-neutral);
    margin-bottom: 12px;
    text-align: center;
}

.lp-step-desc {
    font-size: 0.95rem;
    color: var(--color-text-body);
    line-height: 1.5;
    text-align: center;
}

/* ==========================================================================
   LP Automação - CTA Section
   ========================================================================== */

.lp-cta-section {
    padding: 120px 0;
    background-color: transparent; /* Allows dot grid from body to show */
}

.lp-cta-card {
    background: linear-gradient(135deg, #1E1B4B 0%, #4F46E5 100%);
    border-radius: 24px;
    padding: 80px 40px;
    box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.lp-cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-align: center;
}

.lp-cta-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: center;
}

.lp-btn-large {
    padding: 20px 40px;
    font-size: 1.15rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.lp-btn-icon {
    width: 24px;
    height: 24px;
}

/* ==========================================================================
   Manutenção Template
   ========================================================================== */

.maint-main {
    background-color: #FAFAFA;
    position: relative;
    min-height: 100vh;
}

.maint-dot-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(#CBD5E1 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    opacity: 0.15;
    z-index: 1;
}

.maint-hero-section {
    position: relative;
    padding: 120px 0 60px;
    z-index: 10;
}

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

.maint-content {
    max-width: 550px;
}

.maint-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-neutral);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.maint-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text-body);
    margin-bottom: 40px;
}

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

.maint-btn, .maint-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
}

.maint-btn-outline {
    border: 1px solid #E2E8F0;
    color: var(--color-neutral);
    background: transparent;
}

.maint-btn-outline:hover {
    background: #F8FAFC;
    color: var(--color-neutral);
}

.maint-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.maint-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    animation: float-anim 6s ease-in-out infinite;
}

.maint-support-section {
    padding: 60px 0 120px;
    position: relative;
    z-index: 10;
}

.maint-support-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    max-width: 900px;
    margin: 0 auto;
}

.maint-support-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-neutral);
    margin-bottom: 40px;
}

.maint-contact-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.maint-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.maint-contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.maint-contact-icon.purple-bg {
    background: #F3E8FF;
    color: #9333EA;
}

.maint-contact-icon.green-bg {
    background: #DCFCE7;
    color: #16A34A;
}

.maint-contact-icon svg {
    width: 24px;
    height: 24px;
}

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

.maint-contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #94A3B8;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.maint-contact-value {
    display: block;
    font-size: 1.1rem;
    color: var(--color-neutral);
}

@media (max-width: 992px) {
    .lp-arch-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .lp-scale-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lp-steps-line {
        display: none;
    }
    
    .lp-steps-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .lp-architecture-section,
    .lp-scalability-section,
    .lp-methodology-section {
        padding: 60px 0;
    }
    
    .lp-cta-section {
        padding: 60px 0 80px 0;
    }
    
    .lp-arch-title, .lp-scale-title {
        font-size: 1.8rem;
    }

    .lp-arch-desc {
        font-size: 1rem;
    }

    .lp-arch-list li {
        font-size: 0.95rem;
        gap: 10px;
    }

    .lp-arch-list li strong {
        display: inline;
    }

    /* Oculta o bloco visual completo no mobile */
    .lp-arch-visual {
        display: none;
    }
    
    .lp-cta-card {
        padding: 50px 20px;
    }
    
    .lp-cta-title {
        font-size: 2rem;
    }
    
    .lp-cta-title br, .lp-cta-desc br {
        display: none;
    }
    
    .lp-btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .maint-hero-section {
        padding: 60px 0 40px;
    }
    
    .maint-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .maint-title {
        font-size: 2.2rem;
    }
    
    .maint-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .maint-btn, .maint-btn-outline {
        width: 100%;
    }
    
    .maint-support-section {
        padding: 40px 0 60px;
    }
    
    .maint-support-card {
        padding: 40px 20px;
    }
    
    .maint-support-title {
        font-size: 1.5rem;
    }
    
    .maint-contact-grid {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
}

/* ==========================================================================
   DD DASHBOARD MOCKUP (LP)
   ========================================================================== */
.dd-dash-mockup {
    display: flex;
    width: 800px;
    max-width: none;
    height: 450px;
    background: #f8fafc;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    border: 1px solid #e2e8f0;
    -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, black 85%, transparent 100%);
}

.dd-dash-sidebar {
    width: 200px;
    background: #0f172a;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

.dd-dash-logo {
    padding: 0 20px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.dd-dash-menu-item {
    padding: 12px 20px;
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dd-dash-menu-item.active {
    color: #fff;
    background: #4f46e5;
    border-radius: 0 8px 8px 0;
    margin-right: 15px;
}

.dd-dash-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
    overflow: hidden;
}

.dd-dash-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.dd-dash-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dd-dash-badge {
    background: #dcfce7;
    color: #166534;
    font-size: 0.65rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.dd-dash-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.dd-dash-kpi {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.kpi-title {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
}

.kpi-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
}

.kpi-trend {
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dd-dash-charts {
    display: flex;
    gap: 16px;
    flex: 1;
}

.dd-dash-chart-card {
    flex: 1;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.chart-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.bar-row {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bar-label {
    width: 60px;
    font-size: 0.65rem;
    color: #64748b;
    text-align: right;
}

.bar-track {
    flex: 1;
    height: 12px;
    background: #f1f5f9;
    border-radius: 6px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: #4f46e5;
    border-radius: 6px;
    transform-origin: left;
}

/* Animations */
@keyframes barGrow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@keyframes numberCount {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-bar {
    animation: barGrow 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-num {
    animation: numberCount 1s ease-out forwards;
}

/* ==========================================================================
   LOOMA MOCKUP (LP AUTOMAÇÃO)
   ========================================================================== */
.dd-looma-mockup {
    display: flex;
    width: 800px; /* Force wide width to crop on the right */
    max-width: none;
    height: 450px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    border: 1px solid #e2e8f0;
    position: relative;
    /* Adicionando um fade na direita para efeito de continuação */
    -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, black 85%, transparent 100%);
}

.looma-sidebar {
    width: 200px;
    background: #fff;
    border-right: 1px solid #e2e8f0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}

.looma-logo {
    padding: 0 20px 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4f46e5;
    font-weight: 800;
    font-size: 1.2rem;
}

.looma-menu-item {
    padding: 10px 20px;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.looma-menu-item.active {
    color: #4f46e5;
    background: #eef2ff;
    border-right: 3px solid #4f46e5;
    font-weight: 600;
}

.looma-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #f8fafc;
}

.looma-header {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 15px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.looma-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
}

.looma-subtitle {
    font-size: 0.75rem;
    color: #64748b;
}

.looma-calendar {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.looma-cal-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 10px;
}

.looma-cal-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(5, 1fr);
    gap: 1px;
    background: #e2e8f0;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.looma-cal-day {
    background: #fff;
    padding: 5px;
    font-size: 0.75rem;
    color: #334155;
    position: relative;
}

.looma-event {
    background: #4f46e5;
    color: #fff;
    font-size: 0.6rem;
    padding: 2px 4px;
    border-radius: 4px;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0;
}

/* Animations for Events - Stays on Calendar */
@keyframes popupEvent1 {
    0%, 20% { opacity: 0; transform: scale(0.8); }
    25%, 95% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.8); }
}
@keyframes popupEvent2 {
    0%, 40% { opacity: 0; transform: scale(0.8); }
    45%, 95% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.8); }
}
@keyframes popupEvent3 {
    0%, 60% { opacity: 0; transform: scale(0.8); }
    65%, 95% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.8); }
}

.looma-event.e1 { animation: popupEvent1 15s infinite; }
.looma-event.e2 { animation: popupEvent2 15s infinite; }
.looma-event.e3 { animation: popupEvent3 15s infinite; }

/* Floating Cards */
.looma-floating-wrapper {
    position: absolute;
    bottom: 20px;
    left: -40px;
    width: 260px;
    height: 100px;
    z-index: 20;
}

.looma-floating-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 16px;
    border: 1px solid #f1f5f9;
    opacity: 0;
}

.looma-floating-card .lp-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #10b981;
}

.looma-floating-card p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
}

@keyframes cycleCard1 {
    0%, 10% { opacity: 0; transform: translateY(20px); }
    15%, 30% { opacity: 1; transform: translateY(0); }
    35%, 100% { opacity: 0; transform: translateY(-20px); }
}
@keyframes cycleCard2 {
    0%, 35% { opacity: 0; transform: translateY(20px); }
    40%, 55% { opacity: 1; transform: translateY(0); }
    60%, 100% { opacity: 0; transform: translateY(-20px); }
}
@keyframes cycleCard3 {
    0%, 60% { opacity: 0; transform: translateY(20px); }
    65%, 80% { opacity: 1; transform: translateY(0); }
    85%, 100% { opacity: 0; transform: translateY(-20px); }
}

.looma-floating-card.c1 { animation: cycleCard1 15s infinite; }
.looma-floating-card.c2 { animation: cycleCard2 15s infinite; }
.looma-floating-card.c3 { animation: cycleCard3 15s infinite; }
/* ==========================================================================
   MASTER SUITE LP
   ========================================================================== */

/* HERO SPLIT */
.lp-hero-split {
    position: relative;
    padding: 100px 0 80px;
    background: #fff;
    overflow: hidden;
}

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

.ms-hero-content {
    color: #0f172a;
}

.ms-hero-content .lp-badge {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.25);
    color: #4f46e5;
}

.ms-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.15;
    margin: 20px 0 24px;
}

.ms-hero-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 36px;
}

.ms-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.ms-hero-actions .dd-btn-outline {
    border-color: rgba(15,23,42,0.25);
    color: #0f172a;
}

.ms-hero-actions .dd-btn-outline:hover {
    background: rgba(15,23,42,0.05);
    border-color: rgba(15,23,42,0.5);
}

.ms-hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.ms-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

/* Hub Mockup */
.ms-hero-visual {
    display: flex;
    justify-content: center;
}

.ms-hub-mockup {
    background: #1e293b;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    max-width: 420px;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
}

.ms-hub-top {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #0f172a;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ms-hub-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.ms-hub-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ms-hub-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ms-hub-stat {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ms-hub-stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ms-hub-stat-label {
    font-size: 0.7rem;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}

.ms-hub-stat-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
}

.ms-hub-license-bar {
    background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(16,185,129,0.15));
    border: 1px solid rgba(99,102,241,0.3);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #a5b4fc;
    font-weight: 600;
}

.ms-license-badge {
    margin-left: auto;
    background: #10b981;
    color: #fff;
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* SUITE SECTION */
.ms-suite-section {
    padding: 100px 0;
    background: #f8fafc;
}

.ms-suite-header {
    text-align: center;
    margin-bottom: 60px;
}

.ms-suite-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.ms-suite-subtitle {
    font-size: 1.1rem;
    color: #64748b;
}

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

.ms-plugin-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ms-plugin-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1);
}

.ms-plugin-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.ms-plugin-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.ms-plugin-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* FEATURES (Migration + Dashboard) */
.ms-features-section {
    padding: 100px 0;
}

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

.ms-feature-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.ms-feature-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.ms-feature-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
}

.ms-feature-desc {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 24px;
}

.ms-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ms-feature-list li {
    font-size: 0.925rem;
    color: #475569;
    padding-left: 22px;
    position: relative;
}

.ms-feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* THEME BANNER */
.ms-theme-section {
    padding: 0 0 100px;
}

.ms-theme-card {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e40af 100%);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.ms-theme-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #a5b4fc;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 6px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.ms-theme-title {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}

.ms-theme-desc {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 600px;
    margin: 0;
}

.ms-theme-actions {
    flex-shrink: 0;
}

/* COMPARE SECTION */
.ms-compare-section {
    padding: 100px 0;
    background: #f8fafc;
}

.ms-compare-header {
    text-align: center;
    margin-bottom: 60px;
}

.ms-compare-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.ms-compare-subtitle {
    font-size: 1.1rem;
    color: #64748b;
}

.ms-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.ms-compare-col {
    border-radius: 16px;
    padding: 36px;
}

.ms-compare-bad {
    background: #fff5f5;
    border: 1px solid #fecaca;
}

.ms-compare-good {
    background: #f0fdf4;
    border: 2px solid #86efac;
}

.ms-compare-col-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ms-compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ms-compare-list li {
    font-size: 0.925rem;
    color: #475569;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .ms-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ms-plugins-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ms-features-grid {
        grid-template-columns: 1fr;
    }

    .ms-compare-grid {
        grid-template-columns: 1fr;
    }

    .ms-theme-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .lp-hero-split {
        padding: 70px 0 60px;
    }

    .ms-hero-title {
        font-size: 1.8rem;
    }

    .ms-hero-actions {
        flex-direction: column;
    }

    .ms-hero-actions .dd-btn {
        text-align: center;
        justify-content: center;
    }

    .ms-hero-trust {
        flex-direction: column;
        gap: 12px;
    }

    .ms-hero-visual {
        display: none;
    }

    .ms-plugins-grid {
        grid-template-columns: 1fr;
    }

    .ms-feature-card {
        padding: 28px 20px;
    }

    .ms-theme-card {
        padding: 36px 24px;
    }

    .ms-theme-title {
        font-size: 1.5rem;
    }
}

/* ==========================================================================
   CHECKOUT DDPAY (template-checkout.php)
   ========================================================================== */

/* ---- PAGE RESET ---- */
.ddco-page {
    background: #f5f7fa;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
    color: #1e293b;
    margin: 0;
    padding: 0;
}

/* ---- HEADER ---- */
.ddco-header {
    background: #fff;
    border-bottom: 1px solid #e8ecf0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.ddco-header-logo {
    text-decoration: none;
}

.ddco-header-logo img {
    height: 36px;
    width: auto;
}

.ddco-logo-text {
    font-size: 1.1rem;
    font-weight: 400;
    color: #1e293b;
    letter-spacing: -0.01em;
}

.ddco-logo-text strong {
    color: #3b82f6;
    font-weight: 700;
}

.ddco-header-secure {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #64748b;
}

/* ---- MAIN / WRAPPER ---- */
.ddco-main {
    min-height: 100vh;
}

.ddco-wrapper {
    padding: 40px 24px 80px;
}

.ddco-container {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: flex-start;
}

/* ---- FORM COLUMN ---- */
.ddco-form-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ---- FORM CARD (wrapper do shortcode) ---- */
.ddco-form-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Cada seção do plugin vira um card branco */
.ddco-form-card .dd-checkout-section {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 12px;
    padding: 28px 32px;
}

/* Título de seção: círculo numerado + texto */
.ddco-form-card h3.ddco-sec-title {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin: 0 0 24px 0 !important;
    padding: 0 !important;
    border: none !important;
}

.ddco-form-card h3.ddco-sec-title span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #1e293b;
    color: #fff;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ---- LABELS ---- */
.ddco-form-card .dd-form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 6px;
    text-transform: none;
    letter-spacing: 0;
}

/* ---- INPUTS & SELECTS ---- */
.ddco-form-card .dd-form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.ddco-form-card .dd-form-row:last-child {
    margin-bottom: 0;
}

.ddco-form-card .dd-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ddco-form-card .dd-form-group input,
.ddco-form-card .dd-form-group select {
    width: 100% !important;
    padding: 11px 14px !important;
    border: 1px solid #d1d9e0 !important;
    border-radius: 8px !important;
    font-size: 0.9rem !important;
    color: #1e293b !important;
    background: #fff !important;
    box-sizing: border-box !important;
    font-family: inherit !important;
    transition: border-color 0.15s, box-shadow 0.15s !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    appearance: none;
}

.ddco-form-card .dd-form-group input::placeholder {
    color: #a8b5c2 !important;
}

.ddco-form-card .dd-form-group input:focus,
.ddco-form-card .dd-form-group select:focus {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.12) !important;
}

.ddco-form-card .dd-form-group input[readonly] {
    background: #f8fafc !important;
    color: #94a3b8 !important;
    cursor: default;
}

/* Select arrow */
.ddco-form-card .dd-form-group select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5'><polyline points='6 9 12 15 18 9'/></svg>") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 16px !important;
    padding-right: 36px !important;
}

/* ---- LOGIN NOTICE ---- */
.dd-login-notice {
    background: #f0f7ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 20px;
}

.dd-login-notice a {
    color: #3b82f6;
    font-weight: 600;
}

/* ---- PAYMENT TABS ---- */
.ddco-form-card .dd-var-options {
    display: flex !important;
    gap: 12px !important;
    margin-bottom: 24px !important;
    flex-wrap: wrap;
}

.ddco-form-card .dd-var-label {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 12px 20px !important;
    border: 1.5px solid #d1d9e0 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.15s !important;
    background: #fff !important;
    min-width: 100px;
}

.ddco-form-card .dd-var-label input[type="radio"] {
    display: none !important;
}

.ddco-form-card .dd-var-label:has(input:checked) {
    border-color: #6366f1 !important;
    background: #f5f3ff !important;
    color: #6366f1 !important;
}

.ddco-form-card .dd-var-name {
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: #475569 !important;
    margin: 0 !important;
}

.ddco-form-card .dd-var-label:has(input:checked) .dd-var-name {
    color: #6366f1 !important;
}

/* Subtitle text inside tab (Aprovação imediata, etc) */
.ddco-form-card .dd-var-content > div:last-child {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-top: 2px;
}

/* ---- CC FIELDS ---- */
#dd-cc-fields {
    margin-top: 8px;
}

.ddco-cc-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 16px 0;
}

/* ---- TESTIMONIAL ---- */
.ddco-testimonial {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 12px;
    padding: 24px 28px;
}

.ddco-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #e2e8f0;
}

.ddco-testimonial-avatar img,
.ddco-testimonial-avatar svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ddco-testimonial-text {
    font-size: 0.875rem;
    color: #475569;
    font-style: italic;
    line-height: 1.6;
    margin: 0 0 8px;
}

.ddco-testimonial-author {
    font-size: 0.8rem;
    font-weight: 700;
    color: #1e293b;
}

/* ---- SUMMARY COLUMN ---- */
.ddco-summary-col {
    position: sticky;
    top: 80px;
}

.ddco-summary-card {
    background: #fff;
    border: 1px solid #e8ecf0;
    border-radius: 12px;
    padding: 28px;
}

.ddco-summary-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 20px 0;
}

/* Product block */
.ddco-summary-product {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.ddco-product-info {
    flex: 1;
}

.ddco-product-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.ddco-product-badge {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    color: #64748b;
    background: #f1f5f9;
    padding: 2px 7px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.ddco-product-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ddco-product-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #475569;
}

.ddco-product-price {
    font-size: 0.95rem;
    font-weight: 800;
    color: #1e293b;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Coupon */
.ddco-coupon-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 8px;
}

.ddco-coupon-field {
    display: flex;
    gap: 0;
    border: 1px solid #d1d9e0;
    border-radius: 8px;
    overflow: hidden;
}

.ddco-coupon-input {
    flex: 1;
    border: none !important;
    outline: none !important;
    padding: 11px 14px;
    font-size: 0.875rem;
    color: #1e293b;
    font-family: inherit;
    background: #fff;
}

.ddco-coupon-input::placeholder {
    color: #a8b5c2;
}

.ddco-coupon-btn {
    background: #1e293b;
    color: #fff;
    border: none;
    padding: 11px 18px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: background 0.15s;
    border-radius: 0 8px 8px 0;
}

.ddco-coupon-btn:hover {
    background: #334155;
}

.ddco-coupon-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.ddco-coupon-msg {
    font-size: 0.78rem;
    margin-top: 6px;
    min-height: 16px;
}

.ddco-divider {
    border: none;
    border-top: 1px solid #f1f5f9;
    margin: 20px 0;
}

/* Totals */
.ddco-totals {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 4px;
}

.ddco-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #64748b;
}

.ddco-discount-label {
    color: #10b981;
    font-weight: 600;
}

.ddco-discount-value {
    color: #10b981;
    font-weight: 600;
}

.ddco-grand-total {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1e293b;
    padding-top: 8px;
    border-top: 1px solid #f1f5f9;
    margin-top: 4px;
}

/* Submit button */
.ddco-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px;
    background: #16a34a;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    font-family: inherit;
    transition: background 0.15s, transform 0.1s;
    letter-spacing: -0.01em;
}

.ddco-submit-btn:hover {
    background: #15803d;
    transform: translateY(-1px);
}

.ddco-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Guarantee */
.ddco-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #10b981;
    margin-top: 14px;
    text-align: center;
}

/* Trust badges */
.ddco-trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.ddco-trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.6rem;
    color: #94a3b8;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
}

/* ---- FOOTER ---- */
.ddco-footer {
    background: #fff;
    border-top: 1px solid #e8ecf0;
    padding: 28px 24px;
    margin-top: 40px;
}

.ddco-footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.ddco-footer-brand p {
    font-size: 0.78rem;
    color: #94a3b8;
    margin: 4px 0 0;
}

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

.ddco-footer-links a {
    font-size: 0.8rem;
    color: #64748b;
    text-decoration: none;
    transition: color 0.15s;
}

.ddco-footer-links a:hover {
    color: #1e293b;
}

/* ---- ANIMATIONS ---- */
@keyframes ddco-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ---- ERROR / STATUS ---- */
.dd-error-msg {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.85rem;
    margin-bottom: 16px;
    display: none;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .ddco-container {
        grid-template-columns: 1fr;
    }

    .ddco-summary-col {
        position: static;
        order: 2;
    }

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

    .ddco-footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .ddco-wrapper {
        padding: 24px 16px 60px;
    }

    .ddco-form-card .dd-checkout-section {
        padding: 20px;
    }

    .ddco-summary-card {
        padding: 20px;
    }

    .ddco-form-card .dd-form-row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }

    .ddco-form-card .dd-form-row .dd-form-group {
        margin-bottom: 16px;
    }

    .ddco-form-card .dd-var-options {
        flex-direction: column !important;
    }

    .ddco-grand-total {
        font-size: 1.1rem;
    }

    .ddco-testimonial {
        padding: 20px;
    }

    .ddco-header-secure span:not(svg) {
        display: none;
    }
}

/* 
 * CSS do Portal do Assinante
 */
.dd-portal-wrapper {
    background-color: #F8FAFC;
    padding: 60px 0 100px;
    min-height: calc(100vh - 80px);
}

.dd-portal-header {
    margin-bottom: 40px;
    text-align: center;
}

.dd-portal-header h1 {
    font-size: 2.2rem;
    color: #0F172A;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.dd-portal-header p {
    color: #64748B;
    font-size: 1.1rem;
}

/* Tela Pendente */
.dd-portal-pending {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 50px 30px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.dd-portal-pending-icon {
    width: 80px;
    height: 80px;
    background: #FEF3C7;
    color: #D97706;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.dd-portal-pending h2 {
    font-size: 1.5rem;
    color: #1E293B;
    margin-bottom: 16px;
}

.dd-portal-pending p {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
}

.dd-portal-profile-mini {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    margin-top: 30px;
}

.dd-portal-profile-mini h3 {
    font-size: 1rem;
    color: #334155;
    margin-bottom: 12px;
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 8px;
}

.dd-portal-profile-mini ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dd-portal-profile-mini ul li {
    color: #64748B;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}
.dd-portal-profile-mini ul li strong {
    color: #1E293B;
}

/* Tela Confirmado - Tabs */
.dd-portal-dashboard {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.dd-portal-sidebar {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 24px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    align-self: start;
    position: sticky;
    top: 90px;
    z-index: 10;
}

.dd-portal-user-info {
    padding: 0 24px 24px;
    border-bottom: 1px solid #E2E8F0;
    margin-bottom: 16px;
    text-align: center;
}

.dd-portal-avatar {
    width: 64px;
    height: 64px;
    background: #4F46E5;
    color: #FFF;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 12px;
}

.dd-portal-user-info h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #1E293B;
}

.dd-portal-user-info p {
    margin: 4px 0 0;
    font-size: 0.85rem;
    color: #64748B;
}

.dd-portal-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dd-portal-nav li {
    margin: 0;
}

.dd-portal-nav-btn {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 14px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    font-family: 'Inter', sans-serif;
}

.dd-portal-nav-btn:hover {
    background: #F8FAFC;
    color: #4F46E5;
}

.dd-portal-nav-btn.active {
    background: #EEF2FF;
    color: #4F46E5;
    border-left-color: #4F46E5;
}

.dd-portal-content-area {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.dd-tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.dd-tab-content.active {
    display: block;
}

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

.dd-tab-title {
    font-size: 1.5rem;
    color: #0F172A;
    margin-bottom: 24px;
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 16px;
}

/* Cards e Elementos Internos */
.dd-data-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.dd-data-box {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 20px;
}

.dd-data-box-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #64748B;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    display: block;
}

.dd-data-box-value {
    font-size: 1.1rem;
    color: #1E293B;
    font-weight: 600;
}

.dd-key-box {
    background: #EEF2FF;
    border: 2px dashed #818CF8;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    margin-top: 10px;
}

.dd-key-box h4 {
    color: #4F46E5;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.dd-key-display {
    font-family: monospace;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: #1E293B;
    background: #FFFFFF;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid #C7D2FE;
    display: inline-block;
    margin-bottom: 16px;
    font-weight: 700;
}

.dd-copy-btn {
    background: #4F46E5;
    color: #FFF;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.dd-copy-btn:hover {
    background: #4338CA;
}

/* Suporte */
.dd-support-box {
    text-align: center;
    padding: 40px 20px;
}

.dd-support-icon {
    width: 64px;
    height: 64px;
    background: #F1F5F9;
    color: #4F46E5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

@media (max-width: 768px) {
    .dd-portal-dashboard {
        grid-template-columns: 1fr;
    }
    .dd-data-grid {
        grid-template-columns: 1fr;
    }
    .dd-portal-sidebar {
        position: relative;
        top: 0;
        z-index: 1;
    }
}

/* Estilos da Sanfona de Compras */
.dd-purchase-card {
    background: #fff; 
    border: 1px solid #E2E8F0; 
    border-radius: 12px; 
    margin-bottom: 20px; 
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
}
.dd-purchase-card:hover {
    border-color: #CBD5E1;
}
.dd-purchase-card summary {
    padding: 20px 25px; 
    cursor: pointer; 
    font-size: 1.15rem; 
    font-weight: 700; 
    color: #0F172A; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    list-style: none;
}
.dd-purchase-card summary::-webkit-details-marker {
    display: none;
}
.dd-purchase-card[open] summary {
    border-bottom: 1px solid #F1F5F9;
    margin-bottom: 15px;
}
.dd-purchase-summary-icon {
    display: flex;
    align-items: center;
    gap: 12px;
}
.dd-purchase-chevron {
    color: #94A3B8;
    transition: transform 0.2s ease;
}
.dd-purchase-card[open] .dd-purchase-chevron {
    transform: rotate(180deg);
}
.dd-purchase-content {
    padding: 0 25px 25px 25px;
}