/* ==========================================================================
   1. VARIÁVEIS, RESET E CONFIGURAÇÕES GERAIS
   ========================================================================== */

:root {
    /* Paleta Neutra */
    --neutral-100: #0A0A0A;
    --neutral-90: #424242;
    --neutral-80: #616161;
    --neutral-70: #757575;
    --neutral-60: #9E9E9E;
    --neutral-50: #C2C2C2;
    --neutral-40: #EDEDED;
    --neutral-30: #DEEDED;
    --neutral-20: #F5F5F5;
    --neutral-10: #FFFFFF;

    /* Paleta Primária (Roxo) */
    --primary-100: #4536C3;
    --primary-90: #301EA7;
    --primary-80: #9B0BBF;
    --primary-70: #B80BA6;
    --primary-60: #E20CFF;
    --primary-50: #BCB0F5;

    /* Paleta Secundária e Accent */
    --secondary-100: #7C3AED;
    --secondary-90: #A788FA;
    --secondary-80: #C4B5FD;

    --accent-100: #22D3EE;
    --accent-90: #14B8A6;
    --accent-80: #64C5F0;
    --accent-70: #6B7280;
    --accent-60: #111827;
}

/* Fix para rolagem horizontal sem cortar imagens internas */
html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--neutral-10);
    color: var(--neutral-100);
    padding-top: 88px;
    /* Espaço para o header fixo */
    transition: overflow 0.3s ease;
}

body.no-scroll {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Reset de mídia para evitar quebra de layout */
img,
video,
iframe,
table {
    max-width: 100%;
    height: auto;
    display: block;
}

.hidden {
    display: none;
}

/* ==========================================================================
   2. ESTRUTURA GLOBAL (Header, Footer, Nav, Cookies)
   ========================================================================== */

/* HEADER */
.main-header {
    background-color: white;
    padding: 24px 0;
    /* Ajustado para um padrão visual agradável */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-container img {
    height: 40px;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
}

.main-nav a {
    text-decoration: none;
    color: var(--neutral-100);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-100);
}

.btn-contact {
    padding: 12px 24px;
    background-color: var(--primary-100);
    color: var(--neutral-10);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-contact:hover {
    background-color: var(--primary-90);
    color: var(--neutral-10);
}

/* MENU MOBILE */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--neutral-100);
    padding: 0;
    z-index: 102;
    position: relative;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background-color: var(--neutral-10);
    box-shadow: -6px 0 20px rgba(0, 0, 0, 0.25);
    padding: 24px;
    display: flex;
    flex-direction: column;
    z-index: 102;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    box-sizing: border-box;
    align-items: flex-start;
}

.mobile-nav.visible {
    transform: translateX(0);
}

.mobile-nav-header {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--neutral-40);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: var(--neutral-70);
    transition: color 0.2s ease, transform 0.2s ease;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.mobile-menu-close:hover {
    color: var(--primary-100);
    transform: rotate(90deg);
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.mobile-nav li {
    width: 100%;
}

.mobile-nav a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 17px;
    color: var(--neutral-90);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-nav a i {
    margin-right: 12px;
    font-size: 20px;
    color: var(--neutral-70);
    transition: color 0.2s ease;
}

.mobile-nav a:hover {
    background-color: var(--neutral-30);
    color: var(--primary-100);
}

.mobile-nav a:hover i {
    color: var(--primary-100);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 101;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.menu-overlay.visible {
    opacity: 1;
    visibility: visible;
}

/* FOOTER */
footer {
    background-color: var(--neutral-10);
    color: var(--neutral-100);
    padding: 40px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-logo {
    height: 40px;
    margin-bottom: 10px;
}

.copyright {
    font-size: 14px;
    color: var(--neutral-90);
}

.footer-nav ul {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
    display: flex;
    gap: 24px;
}

.footer-nav a {
    text-decoration: none;
    color: var(--neutral-100);
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary-100);
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons .bi {
    font-size: 24px;
    color: var(--neutral-100);
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover .bi {
    transform: translateY(-2px);
    color: var(--primary-100);
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: var(--neutral-10);
    border: 1px solid var(--neutral-40);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 24px;
    max-width: 480px;
    z-index: 1000;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.cookie-banner-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.cookie-header h4 {
    color: var(--neutral-100);
    font-size: 20px;
    margin: 0;
    font-weight: 600;
}

.cookie-header img {
    height: 30px;
}

.cookie-banner-content p {
    font-size: 15px;
    color: var(--neutral-90);
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-content a {
    color: var(--primary-100);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 15px;
    align-items: center;
}

.btn-personalize {
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    background-color: transparent;
    border: 2px solid var(--primary-100);
    color: var(--primary-100);
    transition: background-color 0.2s, color 0.2s;
}

.btn-personalize:hover {
    background-color: var(--primary-100);
    color: var(--neutral-10);
}

.btn-accept,
.btn-reject {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s, color 0.2s, border 0.2s;
}

.btn-reject {
    background-color: var(--primary-50);
    color: var(--primary-100);
}

.btn-reject:hover {
    background-color: var(--primary-100);
    color: var(--neutral-10);
}

.btn-accept {
    background-color: var(--primary-100);
    color: var(--neutral-10);
}

.btn-accept:hover {
    background-color: var(--primary-90);
}

/* BOTÃO VOLTAR AO TOPO */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-100);
    color: var(--neutral-10);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 99;
}

.back-to-top:hover {
    background-color: var(--primary-90);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* MODAL DE PREFERÊNCIAS DE COOKIES */
.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1010;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.cookie-modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background-color: var(--neutral-10);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    padding: 32px;
    width: 90%;
    max-width: 500px;
    color: var(--neutral-100);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform: scale(0.9);
    transition: transform 0.3s ease-in-out;
}

.cookie-modal-overlay.visible .cookie-modal-content {
    transform: scale(1);
}

.modal-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 10px 0;
    text-align: center;
}

.modal-header-desc {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    border-bottom: 1px solid var(--neutral-40);
    padding-bottom: 20px;
}

.modal-header-desc p {
    font-size: 14px;
    color: var(--neutral-90);
    line-height: 1.5;
}

.modal-close-btn {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: none;
    font-size: 30px;
    color: var(--neutral-80);
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close-btn:hover {
    color: var(--neutral-100);
}

.modal-category {
    border-bottom: 1px solid var(--neutral-40);
    padding-bottom: 20px;
}

.modal-category:last-of-type {
    border-bottom: none;
}

.modal-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.modal-category-header h5 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.modal-category p {
    font-size: 13px;
    color: var(--neutral-80);
    margin: 0;
    line-height: 1.4;
}

.always-active {
    font-size: 12px;
    font-weight: bold;
    color: var(--primary-100);
}

/* Switch (toggle) */
.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 25px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--neutral-60);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 17px;
    width: 17px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--primary-100);
}

input:checked+.slider:before {
    transform: translateX(20px);
}

.modal-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}

.btn-reject-modal,
.btn-submit,
.btn-accept-modal {
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    border: none;
    transition: background-color 0.2s, color 0.2s;
    text-align: center;
}

.btn-reject-modal {
    background-color: var(--neutral-40);
    color: var(--neutral-90);
}

.btn-reject-modal:hover {
    background-color: var(--neutral-50);
}

.btn-submit,
.btn-accept-modal {
    background-color: var(--primary-100);
    color: var(--neutral-10);
}

.btn-submit:hover,
.btn-accept-modal:hover {
    background-color: var(--primary-90);
}

/* ==========================================================================
   3. ESTILOS ESPECÍFICOS DA HOME (SEÇÕES)
   ========================================================================== */

/* ANIMAÇÕES GERAIS */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-from-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-from-left.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Efeito Typing */
.typing-text {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: inline-block;
}

.typing-text::after {
    content: '|';
    display: inline-block;
    vertical-align: middle;
    width: 2px;
    height: 1em;
    background-color: #1a1a1a;
    margin-left: 2px;
    animation: blink-caret .75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink-caret {

    from,
    to {
        opacity: 0
    }

    50% {
        opacity: 1;
    }
}

/* HERO SECTION */
.hero-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    color: var(--neutral-100);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding-bottom: 0;
    height: 700px;
}

.hero-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 80px;
    width: 100%;
    max-width: 90%;
    padding: 0;
}

.hero-content {
    max-width: none;
    text-align: left;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 100px;
    line-height: 110px;
    letter-spacing: -2px;
    margin: 0 0 24px 0;
    color: #1a1a1a;
}

.hero-title .text-secondary-100 {
    color: #6366f1;
    font-weight: 600;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    line-height: 32px;
    color: #4a4a4a;
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Animação On Load */
.animate-on-load {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.animate-on-load.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Blocos de Imagem Hero */
.hero-image-container {
    position: relative;
    width: 650px;
    height: 550px;
    flex-shrink: 0;
}

.hero-blocks-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    transition-delay: 0.2s;
}

.main-block-back {
    position: absolute;
    width: 440px;
    height: 510px;
    right: 0;
    top: 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, #7c3aed 0%, #4338ca 50%, #1e1b4b 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1);
}

.main-block-front {
    position: absolute;
    width: 340px;
    height: 450px;
    top: 50px;
    left: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #3730a3 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 3;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Botões Globais */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.02em;
    text-align: center;
    height: 48px;
    padding: 0 24px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #6366f1;
    color: white;
    border: 1px solid #6366f1;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

.btn-primary:hover {
    background-color: #5855eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: #6366f1;
    border: 1px solid #6366f1;
}

.btn-secondary:hover {
    background-color: #6366f1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

/* Detalhes Visuais Hero */
.dots-container {
    display: flex;
    gap: 8px;
    padding: 16px;
    justify-content: flex-start;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

.content-line-top {
    width: 200px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 8px;
    opacity: 0.8;
    margin: 16px 0 0 16px;
}

.symbol-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.block-symbol {
    width: 80px;
    height: 80px;
}

.content-lines-bottom {
    position: absolute;
    bottom: 24px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.line-bottom-1 {
    width: 80px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
}

.line-bottom-2 {
    width: 100px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
}

.header-logo-container {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.block-logo {
    width: 120px;
    height: auto;
}

.content-lines {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.line {
    width: 180px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
}

.line-long {
    width: 200px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
}

.gradient-block-1,
.gradient-block-2 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 8px;
    margin: 16px 20px 8px 20px;
    backdrop-filter: blur(10px);
}

.gradient-block-1 {
    width: 130px;
    height: 80px;
}

.gradient-block-2 {
    width: 180px;
    height: 45px;
}

.lines-bottom-container {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.line-small-1 {
    width: 100px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
}

.line-small-2 {
    width: 80px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
}

/* ABOUT US SECTION */
.about-us-section {
    background-color: #ffffff;
    padding: 20px 0;
}

.about-us-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 80px;
}

.about-us-content {
    max-width: 559px;
    color: var(--neutral-100);
}

.about-us-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    color: var(--neutral-100);
    margin: 0;
}

.services-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.service-item {
    text-align: center;
    max-width: 140px;
}

.service-icon-box {
    width: 85px;
    height: 85px;
    background-color: #414CA3;
    border-radius: 23px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 16px;
    position: relative;
    transition: all 0.3s ease;
}

.service-icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(65, 76, 163, 0.3);
}

/* Ícones de Serviço */
.icon-border-color {
    border: 5px solid #9990F4;
}

.service-icon-box.icon-1 .icon-inner-1 {
    position: absolute;
    width: 57px;
    height: 57px;
    border: 5px solid #9990F4;
    border-radius: 13px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-icon-box.icon-1 .icon-inner-2 {
    position: absolute;
    width: 35px;
    height: 35px;
    border: 5px solid #9990F4;
    border-radius: 13px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-icon-box.icon-2 .icon-inner-3 {
    position: absolute;
    width: 57px;
    height: 57px;
    border: 5px solid #9990F4;
    border-radius: 13px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-icon-box.icon-2 .icon-inner-4 {
    position: absolute;
    width: 36px;
    height: 36px;
    border: 5px solid #9990F4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-icon-box.icon-3 .icon-inner-5 {
    position: absolute;
    width: 57px;
    height: 57px;
    border: 5px solid #9990F4;
    border-radius: 13px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-icon-box.icon-3 .icon-inner-6 {
    position: absolute;
    width: 39px;
    height: 39px;
    border: 5px solid #9990F4;
    border-radius: 13px;
    transform: translate(-50%, -50%) rotate(-33.72deg);
    top: 50%;
    left: 50%;
}

.service-item h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    margin: 0;
    color: var(--neutral-100);
}

.service-item p {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    color: var(--neutral-90);
    margin: 8px 0 0;
}

.service-item span {
    color: var(--primary-100);
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.service-item span:hover {
    color: var(--primary-90);
}

/* Bloco Protótipo About */
.about-us-image-container {
    position: relative;
    width: 600px;
    height: 300px;
}

.prototype-background {
    position: absolute;
    width: 100%;
    height: 75%;
    background-color: #DFE6EA;
    border-radius: 16px;
    top: 0;
    left: 0;
}

.prototype-inner-background {
    position: absolute;
    width: 80%;
    height: 67%;
    background-color: #D3DCE4;
    border-radius: 16px;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
}

.prototype-screen {
    position: absolute;
    width: 78%;
    height: 65%;
    border-radius: 16px;
    overflow: hidden;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.prototype-dashboard-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.prototype-stand-1 {
    position: absolute;
    width: 84%;
    height: 28.5px;
    background-color: #CCD2DE;
    top: 220px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 16px 16px;
}

.prototype-stand-2 {
    position: absolute;
    width: 84%;
    height: 29px;
    background-color: #959BB0;
    top: 230px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 16px 16px;
}

.prototype-caption {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    color: var(--neutral-100);
    text-align: center;
    position: absolute;
    bottom: -60px;
    width: 100%;
}

/* SECTION HEADINGS */
.section-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 75px;
    margin: 0 0 24px 0;
    color: transparent;
    background: linear-gradient(91.16deg, #4536C3 1.74%, #000000 43.71%, #000000 61.62%, #4536C3 102.48%);
    background-clip: text;
    -webkit-background-clip: text;
}

/* WHAT WE DO SECTION */
.what-we-do-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.what-we-do-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.what-we-do-section .section-header .section-subtitle {
    color: var(--neutral-100);
}

.services-videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.video-card {
    background-color: #202052;
    border-radius: 16px;
    backdrop-filter: blur(30px);
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(32, 32, 82, 0.3);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 135px;
    background-color: #3D3B8D;
    border-radius: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-overlay {
    position: absolute;
    width: 106px;
    height: 103px;
    border-radius: 13px;
    background-color: #212157;
    border: 1px solid #3E3AA1;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: -8px;
    right: -1px;
}

.overlay-shape-1 {
    width: 47.75px;
    height: 47.75px;
    border-radius: 50%;
    background-color: #BD6DDB;
    position: absolute;
}

.overlay-play-button {
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 26px solid #212157;
    margin-left: 5px;
    position: relative;
    z-index: 10;
}

.video-card-content {
    padding-top: 45px;
    position: relative;
}

.card-globe {
    position: absolute;
    bottom: 25px;
    left: 16px;
    width: 25px;
    height: 25px;
    background-image: url("../assets/img/nucleo/globe-icon.svg");
    /* Caminho ajustado */
    background-size: cover;
}

.card-line-top {
    width: 73.43px;
    height: 9.73px;
    background-color: #5B59A3;
    border-radius: 5.5px;
    margin-bottom: 16px;
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #FFFFFF;
    margin: 0 0 8px 0;
}

.card-description {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 20px;
    color: #FFFFFF;
    margin: 0 0 16px 0;
}

.btn-card-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #A788FA;
    text-decoration: none;
    transition: color 0.3s ease;
}

.btn-card-link:hover {
    color: #C4B5FD;
}

/* NEGOTIATION SECTION */
.negotiation-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.negotiation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.negotiation-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 59px;
    margin: 0 0 24px 0;
    text-align: center;
    color: transparent;
    background: linear-gradient(91.16deg, #4536C3 1.74%, #000000 43.71%, #000000 61.62%, #4536C3 102.48%);
    background-clip: text;
    -webkit-background-clip: text;
}

.negotiation-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    color: #000000;
    max-width: 700px;
    margin: 0 auto 40px;
}

.steps-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
}

.step-card {
    width: 320px;
    height: 123px;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(69, 54, 195, 0.2);
}

.step-card.active {
    background: linear-gradient(180deg, rgba(69, 54, 195, 0.22) 0%, rgba(69, 54, 195, 0.22) 100%);
    border: 3px solid #4536C3;
}

.step-card:not(.active) {
    background-color: #ffffff;
    border: 3px solid #9C8DE6;
}

.step-connector {
    width: 40px;
    height: 3px;
    background-color: #9C8DE6;
    flex-shrink: 0;
}

.step-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 24px;
    margin: 0 0 8px 0;
    color: #000000;
}

.step-description {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
    margin: 0;
    max-width: 250px;
}

/* PORTFOLIO SECTION */
.portfolio-section {
    position: relative;
    padding: 60px 0;
    color: #ffffff;
    background-color: #3B2EA6;
    overflow: hidden;
    background-image: url("https://i.postimg.cc/1zr9Yc9J/Rectangle-9408.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.portfolio-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.portfolio-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 75px;
    margin-bottom: 24px;
    color: #ffffff;
}

.portfolio-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    color: #C2C2C2;
    max-width: 700px;
    margin: 0 0 40px 0;
}

.portfolio-nav ul {
    list-style: none;
    margin: 0 0 40px 0;
    padding: 0;
    display: flex;
    gap: 24px;
}

.portfolio-nav a {
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #C2C2C2;
    transition: color 0.3s ease;
}

.portfolio-nav a:hover,
.portfolio-nav a.active {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-thickness: 2px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.portfolio-card {
    background-color: transparent;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-image-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.portfolio-image-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    filter: brightness(50%);
}

.portfolio-card:hover .portfolio-image-background {
    transform: scale(1.05);
}

.portfolio-image-foreground {
    position: absolute;
    width: 80%;
    height: 152px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    border-radius: 8px;
}

.portfolio-card-content {
    padding: 24px;
    position: relative;
    text-align: center;
    background-color: #3B2EA6;
}

.portfolio-card-content .card-tag {
    position: absolute;
    top: -40px;
    left: 20px;
    background-color: transparent;
    border: 2px solid #3B2EA6;
    color: #ffffff;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.portfolio-card-content .card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    margin: 0 0 8px 0;
    color: #ffffff;
}

.portfolio-card-content .card-description {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    color: #ffffff;
    margin: 0 0 16px 0;
}

/* BUSINESS IMPACT SECTION */
.business-impact-section {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
}

.business-impact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 60px;
}

.business-impact-content {
    max-width: 450px;
    flex-shrink: 0;
    text-align: left;
}

.business-impact-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    margin: 0 0 20px 0;
    background: linear-gradient(91.16deg, #4536C3 1.74%, #000000 43.71%, #000000 61.62%, #4536C3 102.48%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.business-impact-subtitle {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 40px;
}

.impact-cards-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.impact-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 400px;
    padding: 20px 32px;
    border-radius: 50px;
    border: 2px solid transparent;
    background-color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.impact-card:not(.active) {
    border: 2px solid #e5e5e5;
}

.impact-card:hover:not(.active) {
    border-color: #4536C3;
    transform: translateY(-2px);
}

.impact-card.active {
    background: #2D2B5B;
    border: 2px solid #2D2B5B;
    color: #ffffff;
}

.impact-card .impact-number {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #4536C3;
    min-width: 30px;
}

.impact-card.active .impact-number {
    color: #ffffff;
}

.impact-card .impact-text {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #333333;
    margin: 0;
    flex-grow: 1;
    margin-left: 20px;
}

.impact-card.active .impact-text {
    color: #ffffff;
}

.impact-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.impact-arrow svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.impact-card:hover .impact-arrow svg {
    transform: translateX(3px);
}

.business-center-area {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.business-main-image {
    width: 437px;
    height: 661px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.business-metrics-container{
  width: 320px;         /* ou 280px, 340px */
  max-width: 320px;
  flex: 0 0 320px;      /* não cresce, não encolhe, fixa */
  gap: 80px;
}

.info-card {
    width: 100%;
    max-width: 280px;
    padding: 32px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 230px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card-1 {
    background: #2D2B5B;
    color: #ffffff;
}

.info-card-2 {
    background: #ffffff;
    color: #000000;
    border: 5px solid #3B2EA6;
}

.info-text {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.info-card-2 .info-text {
    color: #666666;
}

.info-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.info-link p {
    font-family: 'Archivo', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 90%;
    letter-spacing: -1%;
    margin: 0;
    color: inherit;
}

.info-link-arrow {
    width: 48px;
    height: 48px;
    background-color: #9990F4;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.info-link-arrow svg {
    width: 20px;
    height: 20px;
}

.info-card-1 .info-link-arrow {
    background-color: #9990F4;
}

.info-card-1 .info-link-arrow svg path {
    fill: #ffffff;
}

.info-card-2 .info-link-arrow {
    background-color: #ffffff;
}

.info-card-2 .info-link-arrow svg path {
    fill: #2D2B5B;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    position: relative;
    background-color: #3B2EA6;
    padding: 80px 0;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.testimonials-title {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 48px;
    line-height: 1.2;
    margin: 0 0 20px 0;
    color: #ffffff;
}

.testimonials-subtitle {
    font-family: 'Archivo', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto 60px;
}

.testimonials-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonials-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    padding: 24px 40px;
    border-radius: 32px;
    flex-shrink: 0;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
    position: relative;
    text-align: left;
}

.testimonial-card .quote-icon {
    position: absolute;
    top: 24px;
    right: 40px;
    width: 40px;
    height: 40px;
}

.testimonial-card.active-card {
    width: 680px;
    min-height: 292px;
    background-color: #6F61DB;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-card.left-card,
.testimonial-card.right-card {
    width: 800px;
    min-height: 264px;
    opacity: 0.4;
    background-color: #2A2A2A;
    position: absolute;
    transform: scale(0.9);
}

.testimonial-card.left-card {
    left: -525px;
}

.testimonial-card.right-card {
    right: -520px;
}

.testimonial-text {
    font-family: 'Archivo', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    margin-top: 80px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 0;
    position: absolute;
    top: 24px;
    left: 40px;
}

.author-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.author-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 0;
    line-height: 1.2;
}

.author-role {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #cccccc;
    margin: 0;
    line-height: 1.2;
}

.carousel-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.nav-arrow {
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-arrow:hover {
    background-color: #6F61DB;
}

.nav-arrow svg {
    width: 24px;
    height: 24px;
}
/* CONTACT SECTION */
.contact-section {
    background-color: var(--neutral-20);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* (Recomendado) garante que padding/borda não “some” na largura */
.contact-section *,
.contact-section *::before,
.contact-section *::after {
    box-sizing: border-box;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.contact-text-content-card {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--neutral-10);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid var(--neutral-40);
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-100), var(--secondary-100));
    color: var(--neutral-10);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(69, 54, 195, 0.3);
}

.contact-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(40px, 4vw, 56px);
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--neutral-100) 40%, var(--primary-80) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.contact-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--neutral-80);
    margin-bottom: 40px;
}

.contact-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-100);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--neutral-70);
    font-weight: 500;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    width: fit-content;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp .bi-whatsapp {
    font-size: 20px;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-whatsapp:hover .btn-shine {
    left: 100%;
}

.contact-form-wrapper {
    flex: 1;
    max-width: 700px;
    position: relative;
}

.contact-form-card {
    background: var(--neutral-10);
    border-radius: 24px;
    padding: 48px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid var(--neutral-40);
    backdrop-filter: blur(10px);

    /* evita qualquer “vazamento” visual de filhos */
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-100), var(--secondary-100), var(--accent-100));
    border-radius: 24px 24px 0 0;
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--neutral-100);
    margin-bottom: 8px;
}

.form-subtitle {
    color: var(--neutral-70);
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

/* ✅ AQUI estava o erro principal: width: 90% e max-width: 90% nos grupos
   Isso faz os inputs “saírem” do card dependendo do layout/espacamento.
*/
.form-row {
    display: flex;
    gap: 16px;
    width: 100%;
    flex-wrap: wrap;
}

/* garante que os campos dentro do flex não estouram */
.form-row .input-group {
    flex: 1 1 280px; /* 2 colunas quando cabe, 1 coluna quando não cabe */
    min-width: 0;
}

.input-group {
    width: 100%;
    max-width: 100%;
    position: relative;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neutral-60);
    font-size: 18px;
    transition: color 0.3s ease;
    z-index: 2;
}

.textarea-icon {
    top: 20px;
    transform: none;
}

.form-input,
.form-textarea {
    width: 100%;
    max-width: 100%;
    padding: 18px 20px 18px 55px;
    border-radius: 16px;
    border: 2px solid var(--neutral-40);
    background-color: var(--neutral-20);
    color: var(--neutral-100);
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--neutral-60);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-100);
    background-color: var(--neutral-10);
    box-shadow: 0 0 0 4px rgba(69, 54, 195, 0.1);
}

.form-input:focus ~ .input-icon,
.form-textarea:focus ~ .input-icon {
    color: var(--primary-100);
}

.input-focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-100), var(--secondary-100));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 0 0 16px 16px;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 18px;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--secondary-100) 100%);
    color: var(--neutral-10);
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    margin-top: 8px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(69, 54, 195, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-icon {
    transition: transform 0.3s ease;
    font-size: 18px;
}

.btn-submit:hover .btn-icon {
    transform: translateX(4px);
}

.btn-gradient {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn-submit:hover .btn-gradient {
    left: 100%;
}

.form-footer {
    margin-top: 24px;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--neutral-40);
}

.form-footer p {
    color: var(--neutral-60);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-footer .bi-shield-check {
    color: var(--accent-90);
    font-size: 16px;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0.6;
}

.dot-1 {
    background: var(--primary-100);
    top: 20%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.dot-2 {
    background: var(--secondary-100);
    bottom: 30%;
    right: 20%;
    animation: float 8s ease-in-out infinite reverse;
}

.dot-3 {
    background: var(--accent-100);
    top: 60%;
    right: 5%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ==========================================================================
   4. RESPONSIVIDADE (MEDIA QUERIES)
   ========================================================================== */

/* Telas Grandes / Notebooks */
@media (max-width: 1200px) {

    .hero-section .container,
    .about-us-container,
    .what-we-do-container,
    .negotiation-container,
    .portfolio-container {
        padding: 0 20px;
        gap: 40px;
    }

    .contact-container {
        gap: 60px;
        padding: 0 30px;
    }

    .hero-title {
        font-size: 85px;
        line-height: 95px;
    }

    .business-impact-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        text-align: center;
    }

    .business-impact-content {
        max-width: 100%;
        text-align: center;
    }

    .impact-cards-list {
        align-items: center;
    }

    .business-center-area {
        width: 100%;
        max-width: 437px;
    }

    .business-main-image {
        width: 100%;
        height: auto;
    }

    .business-metrics-container {
        width: 100%;
        max-width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .info-card {
        max-width: 280px;
        width: 100%;
    }
}

/* Notebooks Menores */
@media (max-width: 1100px) {
    .hero-title {
        font-size: 75px;
        line-height: 85px;
    }

    .hero-section .container {
        gap: 60px;
    }

    .hero-image-container {
        width: 550px;
        height: 480px;
    }

    .main-block-back {
        width: 380px;
        height: 440px;
    }

    .main-block-front {
        width: 280px;
        height: 380px;
    }
}

/* Tablets (Landscape/Portrait) */
@media (max-width: 1024px) {
    .services-videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        flex-direction: column;
        gap: 20px;
    }

    .step-connector {
        width: 3px;
        height: 40px;
    }

    .step-card {
        width: 100%;
        max-width: 320px;
    }

    .testimonials-title {
        font-size: 36px;
    }

    .testimonials-carousel {
        flex-direction: column;
    }

    .testimonial-card.active-card {
        width: 100%;
        min-height: auto;
    }

    .testimonial-card.left-card,
    .testimonial-card.right-card {
        position: static;
        width: 100%;
        min-height: auto;
        transform: scale(1);
    }
}

/* Tablets Pequenos / Celulares Grandes */
@media (max-width: 992px) {

    .main-nav,
    .btn-contact {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-container {
        padding: 0 20px;
    }

    .main-header {
        padding: 24px 0;
    }

    .contact-container {
        flex-direction: column;
        gap: 60px;
    }

    .contact-text-content-card {
        max-width: 100%;
        text-align: center;
    }

    .contact-stats {
        justify-content: center;
    }

    .btn-whatsapp {
        align-self: center;
    }

    .contact-form-wrapper {
        max-width: 100%;
    }
}

/* Celulares Intermediários */
@media (max-width: 950px) {
    .hero-title {
        font-size: 65px;
        line-height: 75px;
    }

    .hero-description {
        font-size: 20px;
        line-height: 30px;
    }

    .hero-image-container {
        width: 500px;
        height: 420px;
    }
}

/* Celulares (Mobile Standard) */
@media (max-width: 768px) {

    /* Footer Mobile */
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .footer-left,
    .footer-right {
        align-items: center;
    }

    .footer-nav ul {
        flex-direction: column;
        align-items: center;
    }

    /* Hero Mobile */
    .hero-section {
        height: auto;
        padding: 120px 0 60px 0;
        margin-top: -70px;
        /* Corrigido de -70 para -70px */
    }

    .hero-section .container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
        max-width: 95%;
        padding: 20px;
        align-items: center;
    }

    .hero-content {
        order: 1;
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 48px;
        line-height: 52px;
        margin-bottom: 20px;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 18px;
        line-height: 28px;
        max-width: 100%;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        width: 100%;
        justify-content: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        height: 50px;
        font-size: 16px;
    }

    .hero-image-container {
        order: 2;
        width: 100%;
        max-width: 350px;
        height: 300px;
        margin: 0 auto;
        flex-shrink: 0;
    }

    .hero-blocks-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .main-block-back {
        width: 280px;
        height: 320px;
        right: 10px;
        top: -10px;
        left: auto;
        transform: none;
    }

    .main-block-front {
        width: 220px;
        height: 280px;
        top: 20px;
        left: -10px;
        transform: none;
    }

    /* Detalhes Hero Mobile */
    .dots-container {
        padding: 12px;
        gap: 6px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .content-line-top {
        width: 120px;
        height: 30px;
        margin: 12px 0 0 12px;
    }

    .symbol-container {
        padding: 15px;
        background: rgba(255, 255, 255, 0.15);
    }

    .block-symbol {
        width: 50px;
        height: 50px;
    }

    .content-lines-bottom {
        bottom: 16px;
        left: 12px;
    }

    .line-bottom-1 {
        width: 60px;
        height: 6px;
    }

    .line-bottom-2 {
        width: 80px;
        height: 6px;
    }

    .header-logo-container {
        padding: 15px;
    }

    .block-logo {
        width: 80px;
        height: auto;
    }

    .content-lines {
        padding: 15px;
        gap: 6px;
    }

    .line {
        width: 120px;
        height: 3px;
    }

    .line-long {
        width: 140px;
        height: 3px;
    }

    .gradient-block-1,
    .gradient-block-2 {
        margin: 12px 15px 6px 15px;
    }

    .gradient-block-1 {
        width: 100px;
        height: 60px;
    }

    .gradient-block-2 {
        width: 130px;
        height: 35px;
    }

    .lines-bottom-container {
        bottom: 15px;
        left: 15px;
    }

    .line-small-1 {
        width: 70px;
        height: 6px;
    }

    .line-small-2 {
        width: 60px;
        height: 6px;
    }

    /* Outras seções mobile */
    .about-us-container {
        flex-direction: column;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .services-videos-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .negotiation-title {
        font-size: 36px;
        line-height: 45px;
    }

    .step-title {
        font-size: 20px;
    }

    .step-description {
        font-size: 14px;
    }

    .business-impact-title {
        font-size: 36px;
    }

    .business-metrics-container {
        flex-direction: column;
        align-items: center;
    }

    .impact-card {
        max-width: 350px;
    }

    .testimonials-subtitle {
        font-size: 16px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-container {
        padding: 0 20px;
        gap: 40px;
    }

    .contact-text-content-card {
        padding: 32px 24px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .contact-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .stat-item {
        text-align: center;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-subtitle {
        font-size: 16px;
    }
}

/* Celulares Pequenos */
@media (max-width: 480px) {
    .hero-title {
        font-size: 42px;
        line-height: 46px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 24px;
    }

    .hero-image-container {
        max-width: 300px;
        height: 250px;
    }

    .main-block-back {
        width: 240px;
        height: 280px;
    }

    .main-block-front {
        width: 180px;
        height: 240px;
    }

    .hero-section .container {
        padding: 15px;
        gap: 30px;
    }

    .contact-form-card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .form-input,
    .form-textarea {
        padding: 16px 18px 16px 50px;
        border-radius: 12px;
    }

    .btn-submit {
        padding: 16px;
        font-size: 16px;
        border-radius: 12px;
    }

    .input-focus-border {
        border-radius: 0 0 12px 12px;
    }
}