/* =========================================
   NELJS - HIGH PERFORMANCE CSS
   ========================================= */

:root {
    /* Paleta de Cores */
    --color-bg: #080b0b;
    --color-bg-card: #121515;
    --color-bg-subtle: #1a1d1d;
    --color-text: #e7e5e4;
    --color-text-muted: #a09e9d;
    --color-brand: #ff4917;
    --color-brand-hover: #e03b10;
    --color-brand-glow: rgba(255, 73, 23, 0.15);
    --color-brand-subtle: rgba(255, 73, 23, 0.08);

    /* Tipografia */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', 'Inter', sans-serif;

    /* Espaçamentos e Medidas */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --container-width: 1200px;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.title-xl {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    letter-spacing: -0.035em;
    margin-bottom: var(--spacing-sm);
    font-weight: 800;
}

.title-lg {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    letter-spacing: -0.025em;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.title-md {
    font-size: 1.35rem;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
}

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

.subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    color: var(--color-text-muted);
    font-weight: 400;
    max-width: 700px;
    line-height: 1.7;
}

p {
    line-height: 1.75;
    font-weight: 400;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--color-brand);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--color-brand-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--color-text);
}

.btn-outline:hover {
    border-color: var(--color-brand);
    color: var(--color-brand);
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

/* =========================================
   HEADER & LOGO DROPDOWN
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(8, 11, 11, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

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

/* Hamburger Menu Toggle (2 lines) */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    transition: var(--transition);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.06);
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active .hamburger-line:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.active .hamburger-line:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

/* Dropdown Menu */
.logo-dropdown {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    min-width: 200px;
    background: rgba(18, 21, 21, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.logo-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-link {
    display: block;
    padding: 0.7rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    transition: var(--transition);
}

.dropdown-link:hover {
    background: rgba(255, 73, 23, 0.1);
    color: var(--color-brand);
}

/* Nav CTA (Header Button) */
.nav-cta {
    padding: 0.55rem 1.2rem;
    font-size: 0.85rem;
    white-space: nowrap;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* =========================================
   SECTIONS & LAYOUT
   ========================================= */
section {
    padding: var(--spacing-xl) 0;
}

/* Section Split (2 columns) */
.section-split {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
}

.section-split--reverse {
    flex-direction: column-reverse;
}

.section-text {
    flex: 1;
}

.section-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.section-img {
    width: 100%;
    max-width: 560px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Section Bleed (Edge-to-Edge Split Layout) */
.section-bleed {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.bleed-image-wrapper {
    width: 100%;
}

.bleed-image {
    width: 100%;
    height: 50vh;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

.bleed-content {
    padding: var(--spacing-xl) 1rem;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .section-bleed {
        flex-direction: row;
        align-items: center;
        min-height: 100vh;
        margin: 0;
    }

    
    .section-bleed--reverse {
        flex-direction: row-reverse;
    }

    .bleed-image-wrapper {
        flex: 1;
        width: 50vw;
        height: 100vh;
        position: relative;
    }

    .bleed-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100vh;
        object-fit: cover;
        box-shadow: none;
        border-radius: 0;
    }

    .bleed-content {
        flex: 1;
        padding: 4rem 6%;
        max-width: none;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* Section with Background Cover */
.section-bg-cover {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.section-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(8, 11, 11, 0.85) 0%,
        rgba(8, 11, 11, 0.75) 50%,
        rgba(8, 11, 11, 0.9) 100%
    );
    z-index: 1;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

/* Glow effect — more visible */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, rgba(255, 73, 23, 0.18) 0%, rgba(8, 11, 11, 0) 65%);
    z-index: 0;
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -10%;
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, rgba(255, 73, 23, 0.08) 0%, rgba(8, 11, 11, 0) 70%);
    z-index: 0;
    border-radius: 50%;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: var(--spacing-md);
}

/* Hero Photo */
.hero-photo-wrapper {
    position: relative;
    max-width: 350px;
    width: 100%;
}

.hero-photo {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.hero-photo-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, var(--color-bg) 0%, rgba(8, 11, 11, 0.6) 40%, transparent 100%);
    z-index: 2;
    border-radius: 0 0 16px 16px;
    pointer-events: none;
}

.hero-photo-wrapper::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 73, 23, 0.3), transparent 60%);
    z-index: 0;
}

/* =========================================
   IMPACTO SECTION
   ========================================= */
.impacto-card {
    background-color: var(--color-bg-card);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    margin-top: var(--spacing-md);
    border: 1px solid rgba(255, 255, 255, 0.02);
}

/* =========================================
   PREMIUM LISTS
   ========================================= */
.list-premium {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.list-premium li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(255, 73, 23, 0.06) 0%, rgba(255, 73, 23, 0.02) 100%);
    border-left: 3px solid rgba(255, 73, 23, 0.3);
    border-radius: 0 8px 8px 0;
    transition: var(--transition);
}

.list-premium li:hover {
    background: linear-gradient(135deg, rgba(255, 73, 23, 0.1) 0%, rgba(255, 73, 23, 0.04) 100%);
    border-left-color: var(--color-brand);
}

.list-premium li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.list-premium.list-check li {
    padding: 1rem 1.25rem;
}

/* =========================================
   SERVIÇOS SECTION
   ========================================= */
.servicos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: var(--spacing-md);
}

.servico-item {
    background-color: var(--color-bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-top: 3px solid transparent;
    transition: var(--transition);
}

.servico-item:hover {
    border-top-color: var(--color-brand);
    background-color: var(--color-bg-subtle);
    transform: translateY(-5px);
}

.icon-service {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.4rem;
    margin-bottom: 2px;
}

/* =========================================
   PORTFÓLIO SECTION
   ========================================= */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: var(--spacing-md);
}

.portfolio-card {
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 73, 23, 0.15);
}

.portfolio-img-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.portfolio-info h3 {
    color: var(--color-text);
    font-size: 1.15rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.portfolio-info .btn {
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--color-text);
}

.portfolio-info .btn:hover {
    border-color: var(--color-brand);
    color: var(--color-brand);
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq {
    background-color: var(--color-bg-subtle);
}

.faq-list {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.faq-item {
    background: var(--color-bg-card);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 73, 23, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--color-text);
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--color-brand);
}

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    color: var(--color-brand);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* =========================================
   SOBRE SECTION
   ========================================= */
.sobre {
    position: relative;
}

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

.sobre-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.sobre-tag {
    padding: 0.5rem 1rem;
    background: var(--color-bg-card);
    border-radius: 50px;
    font-size: 0.95rem;
}

.sobre-highlight {
    background: linear-gradient(135deg, rgba(255, 73, 23, 0.08), rgba(255, 73, 23, 0.03));
    border: 1px solid rgba(255, 73, 23, 0.12);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2.5rem;
    text-align: left;
    line-height: 1.8;
    font-size: 1.05rem;
}

.sobre-coworking {
    margin-top: 3rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.sobre-coworking img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   CTA FINAL SECTION
   ========================================= */
.cta-final {
    position: relative;
    text-align: center;
    padding: var(--spacing-xl) 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-final .section-bg-overlay {
    background: linear-gradient(
        to bottom,
        rgba(8, 11, 11, 0.88) 0%,
        rgba(8, 11, 11, 0.8) 50%,
        rgba(8, 11, 11, 0.92) 100%
    );
}

.cta-final .container {
    position: relative;
    z-index: 2;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background-color: var(--color-bg-card);
    padding: var(--spacing-lg) 0 var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-info {
    margin-bottom: var(--spacing-md);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: var(--spacing-sm);
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-link {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--color-brand);
}

/* =========================================
   LGPD BANNER
   ========================================= */
.lgpd-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.lgpd-banner.active {
    transform: translateY(0);
}

.lgpd-banner-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(18, 21, 21, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
}

.lgpd-text {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.lgpd-icon {
    flex-shrink: 0;
    color: var(--color-brand);
    margin-top: 2px;
}

.lgpd-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: 0;
}

.lgpd-text a {
    color: var(--color-brand);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.lgpd-text a:hover {
    color: var(--color-text);
}

.lgpd-text strong {
    color: var(--color-text);
}

.lgpd-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    align-self: flex-end;
}

.lgpd-accept {
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    white-space: nowrap;
}

.lgpd-reject {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    transition: var(--transition);
    font-family: var(--font-main);
    white-space: nowrap;
}

.lgpd-reject:hover {
    color: var(--color-text);
}

/* =========================================
   PRIVACY POLICY PAGE
   ========================================= */
.page-content {
    padding-top: 120px;
    padding-bottom: var(--spacing-xl);
}

.page-updated {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-lg);
}

.policy-content {
    max-width: 800px;
}

.policy-section {
    margin-bottom: var(--spacing-lg);
}

.policy-section h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.policy-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.policy-section p {
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.policy-section ul {
    margin: 0.75rem 0 1rem 1.25rem;
    list-style: disc;
}

.policy-section ul li {
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.policy-section ul li strong {
    color: var(--color-text);
}

.policy-section a {
    color: var(--color-brand);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.policy-section a:hover {
    color: var(--color-text);
}

.policy-contact {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-top: 1rem;
}

.policy-contact p {
    margin-bottom: 0.4rem;
    color: var(--color-text);
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-hero {
    padding-top: 120px;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255, 73, 23, 0.1) 0%, rgba(8, 11, 11, 0) 65%);
    z-index: 0;
    border-radius: 50%;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.contact-section {
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-xl);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

/* Contact Info */
.contact-info-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 73, 23, 0.08);
    border-radius: 10px;
    border: 1px solid rgba(255, 73, 23, 0.12);
}

.contact-info-item h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 2px;
}

.contact-info-item p,
.contact-info-item a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.contact-info-item a:hover {
    color: var(--color-brand);
}

/* Trust Signals */
.contact-trust {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.contact-trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Form Wrapper */
.contact-form-wrapper {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-brand), rgba(255, 73, 23, 0.3), transparent);
    border-radius: 12px 12px 0 0;
}

/* Honeypot — invisible */
.form-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    overflow: hidden;
}

/* Form Layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: 0.01em;
}

.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    background: var(--color-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: var(--color-text);
    font-family: var(--font-main);
    font-size: 0.95rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
}

.form-input::placeholder {
    color: rgba(160, 158, 157, 0.5);
}

.form-input:focus {
    border-color: var(--color-brand);
    box-shadow: 0 0 0 3px rgba(255, 73, 23, 0.12);
}

.form-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input.success {
    border-color: #22c55e;
}

/* Select */
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23a09e9d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-select option {
    background: var(--color-bg-card);
    color: var(--color-text);
}

/* Textarea */
.form-textarea {
    resize: vertical;
    min-height: 120px;
    max-height: 300px;
    line-height: 1.6;
}

/* Error Message */
.form-error {
    font-size: 0.8rem;
    color: #ef4444;
    min-height: 1.1rem;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.form-error.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-submit .btn-loading {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit.loading .btn-loading {
    display: inline-flex;
}

.btn-submit.loading {
    pointer-events: none;
    opacity: 0.85;
}

/* Spinner Animation */
.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* =========================================
   TOAST NOTIFICATION
   ========================================= */
.toast {
    position: fixed;
    top: 90px;
    right: 1rem;
    z-index: 10000;
    transform: translateX(calc(100% + 2rem));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.toast.active {
    transform: translateX(0);
    pointer-events: auto;
}

.toast-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(18, 21, 21, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    max-width: 380px;
}

.toast-icon {
    flex-shrink: 0;
    display: none;
}

.toast.toast--success .toast-icon--success {
    display: block;
    color: #22c55e;
}

.toast.toast--error .toast-icon--error {
    display: block;
    color: #ef4444;
}

.toast-message {
    font-size: 0.9rem;
    color: var(--color-text);
    line-height: 1.4;
}

/* =========================================
   ANIMATIONS
   ========================================= */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-onload {
    animation: fadeUpOnLoad 0.8s ease forwards;
}

@keyframes fadeUpOnLoad {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   MEDIA QUERIES
   ========================================= */

/* Mobile small */
@media (max-width: 480px) {
    .nav-cta {
        padding: 0.4rem 0.85rem;
        font-size: 0.75rem;
    }
}

/* Tablet */
@media (min-width: 768px) {
    .hero-grid {
        flex-direction: row;
        gap: 3rem;
    }

    .hero-photo-wrapper {
        max-width: 380px;
    }

    .hero-actions {
        flex-direction: row;
    }

    .section-split {
        flex-direction: row;
        gap: 3rem;
    }

    .section-split--reverse {
        flex-direction: row;
    }

    .section-image {
        flex: 1.2;
    }

    .section-img {
        max-width: 100%;
    }

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

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

    .faq-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .footer-grid {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-info {
        margin-bottom: 0;
    }

    .lgpd-banner-inner {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
    }

    .lgpd-actions {
        align-self: center;
        flex-shrink: 0;
    }

    /* Contact page — tablet */
    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 2.5rem;
        align-items: start;
    }

    .contact-form-wrapper {
        padding: 2.5rem;
    }

    .btn-submit {
        width: auto;
        min-width: 220px;
    }

    .toast {
        right: 2rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero-photo-wrapper {
        max-width: 420px;
    }

    .servicos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .logo-img {
        height: 28px;
    }

    /* Contact page — desktop */
    .contact-grid {
        grid-template-columns: 340px 1fr;
        gap: 3rem;
    }
}

/* Touch devices: overlay always visible */
@media (hover: none) {
    .portfolio-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(8, 11, 11, 0.85) 0%, rgba(8, 11, 11, 0.3) 35%, transparent 60%);
    }

    .portfolio-info {
        transform: translateY(0);
    }
}

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background-color: var(--color-brand);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 73, 23, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: var(--color-brand-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(255, 73, 23, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 54px;
        height: 54px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* =========================================
   CRM PROMO SECTION (CSS FLOATING ICONS BG)
   ========================================= */
.crm-promo {
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xl) 0;
    background-color: #080b0b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.crm-radial-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(
        circle 600px at 50% 50%,
        rgba(255, 73, 23, 0.06) 0%,
        rgba(255, 73, 23, 0.01) 60%,
        transparent 100%
    );
    overflow: hidden;
}

/* Container individual dos ícones flutuantes */
.crm-floating-wrapper {
    position: absolute;
    bottom: -60px;
    left: var(--left);
    opacity: var(--opacity);
    animation: floatUp var(--duration) linear infinite;
    animation-delay: var(--delay);
    pointer-events: auto;
    z-index: 1;
    will-change: transform;
}

/* Estilo visual do ícone */
.crm-floating-icon {
    color: var(--color-text-muted, #a09e9d);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease, filter 0.3s ease;
}

.crm-floating-icon svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

/* Efeito Hover em Desktop */
@media (hover: hover) and (min-width: 768px) {
    .crm-floating-wrapper:hover {
        animation-play-state: paused;
        z-index: 10;
    }

    .crm-floating-wrapper:hover .crm-floating-icon {
        transform: scale(1.3) rotate(15deg);
        color: #ff4917; /* Destaque na cor laranja da marca */
        filter: drop-shadow(0 0 10px rgba(255, 73, 23, 0.6));
    }
}

/* Animações de flutuação */
@keyframes floatUp {
    0% {
        transform: translateY(0) scale(var(--scale)) rotate(0deg);
    }
    100% {
        transform: translateY(-800px) scale(var(--scale)) rotate(360deg);
    }
}

/* Responsividade e otimizações para Mobile */
@media (max-width: 767px) {
    .crm-floating-wrapper {
        opacity: calc(var(--opacity) * 0.75);
        animation: floatUpMobile var(--duration) linear infinite;
        animation-delay: var(--delay);
    }
}

@keyframes floatUpMobile {
    0% {
        transform: translateY(0) scale(calc(var(--scale) * 0.75)) rotate(0deg);
    }
    100% {
        transform: translateY(-550px) scale(calc(var(--scale) * 0.75)) rotate(360deg);
    }
}

.crm-promo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.crm-promo-content {
    text-align: left;
}

.crm-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

.crm-promo-content .title-lg {
    margin-bottom: var(--spacing-sm);
    line-height: 1.25;
}

.crm-promo-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.crm-promo-actions .btn {
    padding: 0.9rem 1.8rem;
    font-family: var(--font-heading);
}

.crm-promo-media {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Container com perspectiva 3D para a imagem */
.crm-image-skew-wrapper {
    position: relative;
    max-width: 320px;
    width: 100%;
    perspective: 1200px;
    transform-style: preserve-3d;
}

/* Imagem inclinada em diagonal */
.crm-promo-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: rotateX(12deg) rotateY(-18deg) rotateZ(8deg);
    box-shadow: 
        -20px 20px 40px rgba(0, 0, 0, 0.6),
        -10px 10px 20px rgba(239, 68, 68, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
    backface-visibility: hidden;
}

/* Efeito flutuante de hover */
.crm-promo:hover .crm-promo-img {
    transform: rotateX(8deg) rotateY(-12deg) rotateZ(10deg) translateY(-10px);
    box-shadow: 
        -30px 30px 50px rgba(0, 0, 0, 0.7),
        -15px 15px 30px rgba(239, 68, 68, 0.18),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

/* Iluminação de fundo atrás da imagem */
.crm-image-skew-wrapper::before {
    content: '';
    position: absolute;
    inset: -15px;
    border-radius: 40px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
    z-index: -1;
    transform: translateZ(-20px) rotateX(12deg) rotateY(-18deg) rotateZ(8deg);
    filter: blur(20px);
    pointer-events: none;
}

@media (min-width: 992px) {
    .crm-promo-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 5rem;
    }
}
