/* =============================================
   NOAR - HIATO COMUNICAÇÃO - CONCEITO AEROFLOW
   Tema WordPress | Paleta: Roxo + Amarelo
   ============================================= */

/* LOADING SCREEN */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--white, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__logo { position: relative; overflow: hidden; }
.loader__logo img { /* height controlado via Customizer */ width: auto; }
.loader__bar {
    width: 120px;
    height: 3px;
    background: rgba(108, 50, 135, 0.1);
    border-radius: 4px;
    margin-top: 20px;
    overflow: hidden;
}
.loader__bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #6c3287, #eaca00);
    border-radius: 4px;
    animation: loaderFill 1.5s ease-out forwards;
}
@keyframes loaderFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* CUSTOM CURSOR (desktop only) */
@media (hover: hover) {
    .cursor-dot {
        width: 8px; height: 8px;
        background: #6c3287;
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9998;
        transition: transform 0.1s ease;
        mix-blend-mode: difference;
    }
    .cursor-ring {
        width: 36px; height: 36px;
        border: 2px solid rgba(108, 50, 135, 0.3);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9997;
        transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
        transform: translate(-14px, -14px);
    }
    .cursor-ring.hover {
        width: 56px; height: 56px;
        border-color: #eaca00;
        transform: translate(-24px, -24px);
    }
}

/* SMOOTH HORIZONTAL LINE DIVIDERS */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(108, 50, 135, 0.12), transparent);
    border: none;
    margin: 0;
}

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
    --roxo: #6c3287;
    --roxo-dark: #5a2472;
    --roxo-vivid: #931287;
    --roxo-light: rgba(108, 50, 135, 0.08);
    --roxo-medium: rgba(108, 50, 135, 0.15);
    --amarelo: #eaca00;
    --amarelo-vivid: #ffb300;
    --amarelo-light: #ffd07f;
    --amarelo-glow: rgba(234, 202, 0, 0.12);
    --dark: #1a1a2e;
    --gray-900: #2d2d3d;
    --gray-700: #4a4a5a;
    --gray-500: #6e6e7e;
    --gray-300: #b0b0be;
    --gray-100: #f4f4f8;
    --gray-50: #f9f9fc;
    --white: #ffffff;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Roboto', -apple-system, sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 100px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 8px rgba(108, 50, 135, 0.06);
    --shadow-md: 0 8px 30px rgba(108, 50, 135, 0.08);
    --shadow-lg: 0 20px 60px rgba(108, 50, 135, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(255, 255, 255, 0.4);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

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

/* =============================================
   TOPBAR
   ============================================= */
.topbar {
    background: var(--roxo);
    color: var(--white);
    font-size: 13px;
    padding: 8px 0;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topbar__socials { display: flex; gap: 16px; }
.topbar__socials a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}
.topbar__socials a:hover { color: var(--amarelo); }
.topbar__info { display: flex; gap: 24px; }
.topbar__info a { color: rgba(255,255,255,0.7); font-size: 12px; }
.topbar__info a:hover { color: var(--amarelo); }
.topbar__info i { margin-right: 6px; }
.topbar__lang {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
    padding-left: 16px;
    border-left: 1px solid rgba(255,255,255,0.2);
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}
.topbar__lang i { font-size: 13px; color: rgba(255,255,255,0.7); }
.topbar__lang-item {
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    font-size: 12px;
}
.topbar__lang-item.active { color: var(--amarelo); }
.topbar__lang-item:hover { color: var(--white); }

/* GTranslate integrado na topbar */
.topbar__lang .gt_selector {
    background: transparent !important;
    border: none !important;
    color: rgba(255,255,255,0.7) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    font-family: var(--font-body) !important;
    padding: 0 4px !important;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}
.topbar__lang .gt_selector option {
    background: var(--dark);
    color: var(--white);
}
.topbar__lang select.gt_selector:focus {
    color: var(--white) !important;
}
/* Esconder widget flutuante do GTranslate (já está na topbar) */
.gt_float_switcher {
    display: none !important;
}
/* GTranslate dropdown na topbar */
.topbar__lang .gtranslate_wrapper {
    display: flex;
    align-items: center;
}
.topbar__lang .gtranslate_wrapper select {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: rgba(255,255,255,0.8) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    font-family: var(--font-body) !important;
    padding: 3px 8px !important;
    border-radius: 4px;
    cursor: pointer;
    outline: none;
}
.topbar__lang .gtranslate_wrapper select option {
    background: var(--dark);
    color: var(--white);
    padding: 4px 8px;
}
/* GTranslate com bandeiras inline */
.topbar__lang .gtranslate_wrapper {
    display: flex;
    align-items: center;
    gap: var(--gt-flag-gap, 10px);
}
.topbar__lang .gtranslate_wrapper a {
    color: rgba(255,255,255,0.7) !important;
    font-size: 12px !important;
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.75;
}
.topbar__lang .gtranslate_wrapper a:hover {
    color: var(--amarelo) !important;
    opacity: 1;
    transform: scale(1.15);
}
.topbar__lang .gtranslate_wrapper img.gt-current-flag,
.topbar__lang .gtranslate_wrapper img {
    height: var(--gt-flag-size, 20px) !important;
    width: auto !important;
    vertical-align: middle;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
/* GTranslate banner de topo (esconder) */
.goog-te-banner-frame,
.skiptranslate,
body > .skiptranslate {
    display: none !important;
}
body { top: 0 !important; }

/* =============================================
   NAVBAR - Glassmorphism Aeroflow
   ============================================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0;
    transition: var(--transition);
}
.navbar.scrolled {
    box-shadow: var(--shadow-md);
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}
.navbar__logo img,
.navbar__logo .custom-logo {
    /* height controlado via Customizer */
    width: auto;
}

.navbar__menu { display: flex; align-items: center; gap: 4px; list-style: none; padding: 0; margin: 0; }
.navbar__link,
.navbar__menu li a {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-full);
    transition: var(--transition);
}
.navbar__link:hover, .navbar__link.active,
.navbar__menu li a:hover {
    color: var(--roxo);
    background: var(--roxo-light);
}
/* CTA — aplicado via classe .noar-cta-item pelo Customizer */
.navbar__menu .noar-cta-item > a {
    background: var(--roxo);
    color: var(--white) !important;
    padding: 10px 24px;
    font-weight: 600;
    margin-left: 8px;
}
.navbar__menu .noar-cta-item > a:hover {
    background: var(--roxo-vivid);
    transform: translateY(-1px);
}

/* Hamburger */
.navbar__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 24px;
    position: relative;
    z-index: 1002;
}
.navbar__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: var(--transition);
}
.navbar__toggle span:nth-child(1) { top: 0; }
.navbar__toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.navbar__toggle span:nth-child(3) { bottom: 0; }
.navbar__toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.navbar__toggle.active span:nth-child(2) { opacity: 0; }
.navbar__toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* =============================================
   HERO - Aeroflow
   ============================================= */
.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url('../images/fundo_hero.png') no-repeat center center;
    background-size: cover;
}

/* Aeroflow orbs */
.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
}
.hero__orb--1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(108, 50, 135, 0.15), transparent 70%);
    top: -15%; right: -8%;
    animation: orbFloat 12s ease-in-out infinite;
}
.hero__orb--2 {
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(234, 202, 0, 0.12), transparent 70%);
    bottom: -10%; left: -5%;
    animation: orbFloat 16s ease-in-out infinite reverse;
}
.hero__orb--3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(147, 18, 135, 0.08), transparent 70%);
    top: 40%; left: 50%;
    animation: orbFloat 10s ease-in-out infinite 2s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -30px) scale(1.05); }
    66% { transform: translate(-15px, 15px) scale(0.97); }
}

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--roxo);
    margin-bottom: 24px;
    width: fit-content;
}
.hero__badge i { color: var(--amarelo); }

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.08;
    color: var(--dark);
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.hero__title em {
    font-style: normal;
    color: var(--roxo);
    position: relative;
}
.hero__title em::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--amarelo);
    opacity: 0.3;
    border-radius: 4px;
    z-index: -1;
}

.hero__text {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray-500);
    max-width: 520px;
    margin-bottom: 36px;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(135deg, var(--roxo-light), var(--amarelo-glow));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__image-wrapper .placeholder-icon {
    font-size: 120px;
    color: var(--roxo);
    opacity: 0.15;
}

/* Glass card floating */
.hero__float-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    animation: floatCard 6s ease-in-out infinite;
}
.hero__float-card--1 {
    bottom: 40px; left: -30px;
    animation-delay: 0s;
}
.hero__float-card--2 {
    top: 40px; right: -20px;
    animation-delay: 2s;
}
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero__float-card .stat-number {
    font-size: 28px;
    font-weight: 900;
    color: var(--roxo);
    line-height: 1;
}
.hero__float-card .stat-label {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 2px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1.4;
}
.btn--primary {
    background: linear-gradient(135deg, var(--roxo), var(--roxo-vivid));
    color: var(--white);
    box-shadow: 0 4px 24px rgba(108, 50, 135, 0.3);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(108, 50, 135, 0.4);
}
.btn--outline {
    background: transparent;
    color: var(--roxo);
    border: 2px solid rgba(108, 50, 135, 0.25);
}
.btn--outline:hover {
    border-color: var(--roxo);
    background: var(--roxo-light);
}
.btn--amarelo {
    background: var(--amarelo);
    color: var(--dark);
    box-shadow: 0 4px 24px rgba(234, 202, 0, 0.3);
}
.btn--amarelo:hover {
    background: var(--amarelo-vivid);
    transform: translateY(-2px);
}
.btn--white {
    background: var(--white);
    color: var(--roxo);
}
.btn--white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* =============================================
   SECTIONS
   ============================================= */
.section { padding: 100px 0; position: relative; }
.section--gray { background: var(--gray-50); }
.section--dark { background: var(--dark); color: var(--white); }
.section--roxo { background: linear-gradient(135deg, var(--roxo), var(--roxo-dark)); color: var(--white); }

.section__header { text-align: center; margin-bottom: 64px; }
.section__header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}
.section--dark .section__header h2,
.section--roxo .section__header h2 { color: var(--white); }

.section__header p {
    font-size: 17px;
    font-weight: 300;
    color: var(--gray-500);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}
.section--dark .section__header p { color: rgba(255,255,255,0.7); }
.section--roxo .section__header p { color: rgba(255,255,255,0.8); }

.section__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--roxo);
    margin-bottom: 12px;
}
.section--dark .section__label,
.section--roxo .section__label { color: var(--amarelo); }

/* =============================================
   QUEM SOMOS
   ============================================= */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about__content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--roxo);
    line-height: 1.15;
    margin-bottom: 24px;
}
.about__content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.9);
}
.about__content p strong { color: var(--white); }
.about__content .section__label { color: var(--white); }
.about__values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 32px;
}
.about__value-tag {
    padding: 8px 18px;
    background: rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255,255,255,0.3);
    transition: var(--transition);
    cursor: default;
}
.about__value-tag:hover {
    background: var(--roxo);
    color: var(--white);
    transform: translateY(-2px);
}
.about__image { position: relative; }
.about__image-main {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--roxo-light), var(--amarelo-glow));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: 0 20px 60px rgba(108, 50, 135, 0.25), 0 0 0 8px rgba(255,255,255,0.15);
    position: relative;
}
.about__image-main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(108, 50, 135, 0.2));
    border-radius: inherit;
    pointer-events: none;
}
.about__image-main .placeholder-icon {
    font-size: 100px;
    color: var(--roxo);
    opacity: 0.12;
}
.about__accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--roxo);
    border-radius: var(--radius);
    opacity: 0.25;
    z-index: -1;
}
.about__image::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--white);
    border-radius: var(--radius);
    opacity: 0.4;
    z-index: -1;
}

/* AMPULHETA ANIMADA */
.hourglass {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    z-index: 2;
    filter: drop-shadow(0 4px 20px rgba(108, 50, 135, 0.3));
    animation: hourglassRotate 8s ease-in-out infinite;
}
.hourglass__container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    mask-image: url('../images/ampulheta.png');
    -webkit-mask-image: url('../images/ampulheta.png');
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
}
.hourglass__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.hourglass__fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--white);
    animation: hourglassFill 4s ease-in-out infinite;
}
@keyframes hourglassFill {
    0% { height: 0%; background: var(--white); }
    45% { height: 100%; background: var(--white); }
    50% { height: 100%; background: var(--roxo); }
    95% { height: 0%; background: var(--roxo); }
    100% { height: 0%; background: var(--white); }
}
@keyframes hourglassRotate {
    0%, 45% { transform: rotate(0deg); }
    50%, 95% { transform: rotate(180deg); }
    100% { transform: rotate(360deg); }
}

/* =============================================
   SERVIÇOS
   ============================================= */
.servicos__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.servico-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    perspective: 800px;
}
.servico-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--roxo), var(--amarelo));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.servico-card:hover::before { transform: scaleX(1); }
.servico-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(108, 50, 135, 0.15), 0 0 40px rgba(234, 202, 0, 0.05);
    border-color: transparent;
}
.servico-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--roxo-light);
    border-radius: 16px;
    font-size: 24px;
    color: var(--roxo);
    transition: var(--transition);
}
.servico-card:hover .servico-card__icon {
    background: var(--roxo);
    color: var(--white);
    transform: scale(1.08) rotate(-3deg);
}
.servico-card h3 {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}
.servico-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-500);
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(234, 202, 0, 0.15), transparent 70%);
    border-radius: 50%;
}
.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
}
.cta-banner p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 550px;
    margin: 0 auto 32px;
    position: relative;
}

/* =============================================
   CLIENTES LOGOS
   ============================================= */
.clientes-section {
    overflow: hidden;
    position: relative;
}
.clientes-section::before,
.clientes-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.clientes-section::before {
    left: 0;
    background: linear-gradient(to right, var(--gray-50), transparent);
}
.clientes-section::after {
    right: 0;
    background: linear-gradient(to left, var(--gray-50), transparent);
}
.clientes__marquee {
    display: flex;
    gap: 40px;
    animation: marquee 30s linear infinite;
    width: max-content;
    padding: 20px 0;
}
.clientes__marquee:hover {
    animation-play-state: paused;
}
.clientes__marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 70px;
    background: var(--white);
    border: 1px solid rgba(108, 50, 135, 0.08);
    border-radius: var(--radius);
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-500);
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.clientes__marquee-item:hover {
    color: var(--roxo);
    border-color: var(--roxo);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(108, 50, 135, 0.12);
}
.clientes__marquee-item img {
    height: 45px;
    width: auto;
    filter: grayscale(100%) opacity(0.6);
    transition: var(--transition);
}
.clientes__marquee-item:hover img {
    filter: grayscale(0%) opacity(1);
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* =============================================
   STATS
   ============================================= */
.stats { padding: 80px 0; }
.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}
.stat-item__number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--amarelo);
    line-height: 1;
    text-shadow: 0 0 40px rgba(234, 202, 0, 0.3);
}
.stat-item__label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
}

/* =============================================
   BLOG / DEPOIMENTOS
   ============================================= */
.blog__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.blog-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.blog-card__img {
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--roxo-light), var(--amarelo-glow));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.blog-card__img i {
    font-size: 40px;
    color: var(--roxo);
    opacity: 0.12;
}
.blog-card__body { padding: 20px; }
.blog-card__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--roxo);
    background: var(--roxo-light);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}
.blog-card__title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 8px;
}
.blog-card__excerpt {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 16px;
}
.blog-card__link {
    font-size: 13px;
    font-weight: 600;
    color: var(--roxo);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.blog-card__link:hover { gap: 10px; }
.blog__cta {
    text-align: center;
    margin-top: 40px;
}

/* =============================================
   GABRIELLE / FUNDADORA
   ============================================= */
.founder__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.founder__photo {
    aspect-ratio: 3/4;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--roxo-light), var(--amarelo-glow));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.founder__photo .placeholder-icon {
    font-size: 100px;
    color: var(--roxo);
    opacity: 0.12;
}
.founder__content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 8px;
}
.founder__role {
    font-size: 15px;
    font-weight: 500;
    color: var(--roxo);
    margin-bottom: 24px;
}
.founder__content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}
.founder__social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.founder__social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--roxo-light);
    color: var(--roxo);
    font-size: 16px;
}
.founder__social a:hover {
    background: var(--roxo);
    color: var(--white);
    transform: translateY(-2px);
}

/* =============================================
   CONTATO
   ============================================= */
.contato__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}
.contato__info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 16px;
}
.contato__info > p {
    font-size: 16px;
    margin-bottom: 32px;
}
.contato__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.contato__item-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--roxo-light);
    color: var(--roxo);
    border-radius: 12px;
    font-size: 18px;
    flex-shrink: 0;
}
.contato__item-text strong {
    display: block;
    color: var(--dark);
    font-size: 14px;
    margin-bottom: 2px;
}
.contato__item-text span, .contato__item-text a {
    color: var(--gray-500);
    font-size: 14px;
}
.contato__item-text a:hover { color: var(--roxo); }

.contato__form {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    background: var(--gray-50);
    border: 1.5px solid transparent;
    border-radius: var(--radius-sm);
    color: var(--dark);
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--roxo);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--roxo-light);
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-300); }
.form-group input.error,
.form-group textarea.error {
    border-color: #e74c3c;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand-name { margin-bottom: 12px; }
.footer__brand-name img {
    /* height controlado via Customizer */
    width: auto;
    filter: brightness(0) invert(1);
}
.footer__desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}
.footer__socials a:hover {
    background: var(--roxo);
    color: var(--white);
    transform: translateY(-2px);
}
.footer h4 {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}
.footer__links { list-style: none; padding: 0; margin: 0; }
.footer__links li { margin-bottom: 10px; }
.footer__links a { font-size: 14px; }
.footer__links a:hover { color: var(--amarelo); padding-left: 4px; }

.footer__newsletter-form {
    display: flex;
    margin-top: 16px;
}
.footer__newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-full) 0 0 var(--radius-full);
    color: var(--white);
    font-size: 13px;
}
.footer__newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer__newsletter-form button {
    padding: 10px 18px;
    background: var(--amarelo);
    border: none;
    border-radius: 0 var(--radius-full) var(--radius-full) 0;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}
.footer__newsletter-form button:hover { background: var(--amarelo-vivid); }

.footer__bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.3);
    animation: whatsappPulse 2s ease-out infinite;
}
@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* =============================================
   EFEITOS CRIATIVOS
   ============================================= */

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--roxo), var(--roxo-vivid), var(--amarelo));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Magnetic button effect */
.btn--magnetic { position: relative; overflow: hidden; }
.btn--magnetic::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255,255,255,0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.btn--magnetic:hover::after { opacity: 1; }

/* Animated border gradient on portfolio cards */
.portfolio-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(135deg, var(--roxo), var(--amarelo), var(--roxo));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: borderGlow 3s ease infinite;
}
.portfolio-card:hover::before { opacity: 1; }
@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Floating particles background */
.hero__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero__particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--roxo);
    border-radius: 50%;
    opacity: 0.15;
    animation: particleFloat linear infinite;
}
@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.15; }
    90% { opacity: 0.15; }
    100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* Depoimento card quote accent */
.depoimento-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 72px;
    font-family: var(--font-display);
    color: var(--roxo);
    opacity: 0.06;
    line-height: 1;
}

/* Smooth section transitions */
.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(108, 50, 135, 0.08), transparent);
}
.section--gray::before,
.section--dark::before,
.section--roxo::before { display: none; }

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--roxo), var(--amarelo));
    z-index: 10000;
    transition: width 0.1s linear;
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--roxo);
    font-size: 16px;
    z-index: 998;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}
.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--roxo);
    color: var(--white);
    transform: translateY(-2px);
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* --- GLOBAL: prevenir scroll horizontal --- */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* --- PERFORMANCE: reduzir animações para quem prefere --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .loader { display: none !important; }
    .reveal, .reveal-left, .reveal-right {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* =============================================
   TABLET LANDSCAPE (max-width: 1024px)
   ============================================= */
@media (max-width: 1024px) {
    .container { padding: 0 20px; }

    /* Grids 2 colunas */
    .servicos__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .blog__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }

    /* Hero ajustes */
    .hero .container { gap: 40px; }
    .hero__title { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
    .hero__image-wrapper { max-width: 400px; }
    .hero__float-card--1 { left: -15px; }
    .hero__float-card--2 { right: -10px; }

    /* About */
    .about__grid { gap: 50px; }

    /* Founder */
    .founder__grid { gap: 50px; }

    /* Contato */
    .contato__grid { gap: 40px; }

    /* Footer 2x2 */
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }

    /* Seções padding reduzido */
    .section { padding: 80px 0; }

    /* CTA */
    .cta-banner { padding: 60px 0; }

    /* Desabilitar efeitos pesados em telas menores */
    .hero__orb { display: none; }
    .hero__particles { display: none; }
    .cursor-dot, .cursor-ring { display: none !important; }
}

/* =============================================
   TABLET PORTRAIT (max-width: 768px)
   ============================================= */
@media (max-width: 768px) {
    .container { padding: 0 16px; }

    /* TOPBAR: ocultar */
    .topbar { display: none; }

    /* NAVBAR: hamburger */
    .navbar .container { height: 60px; }
    .navbar__toggle { display: block; }
    .navbar__logo img,
    .navbar__logo .custom-logo { max-height: 38px; }

    .navbar__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 24px 32px;
        gap: 0;
        box-shadow: -8px 0 40px rgba(0,0,0,0.12);
        transition: right 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .navbar__menu.open { right: 0; }

    /* Menu items: links grandes para toque */
    .navbar__link,
    .navbar__menu li a,
    .navbar__menu .menu-item a {
        width: 100%;
        padding: 16px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--gray-100);
        border-radius: 0;
        background: none;
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    .navbar__menu .noar-cta-item > a {
        width: 100%;
        text-align: center;
        justify-content: center;
        margin: 20px 0 0;
        border-radius: var(--radius-full);
        border-bottom: none;
        padding: 14px 24px;
    }

    /* Overlay mobile */
    .mobile-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 1000;
        -webkit-tap-highlight-color: transparent;
    }
    .mobile-overlay.show { display: block; }

    /* Sub-menus WP no mobile */
    .navbar__menu .sub-menu {
        position: static;
        box-shadow: none;
        padding-left: 16px;
        display: block;
    }

    /* HERO */
    .hero {
        min-height: auto;
        padding: 60px 0 40px;
    }
    .hero .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero__visual { display: none; }
    .hero__title { font-size: clamp(2rem, 7vw, 3rem); }
    .hero__text {
        font-size: 15px;
        max-width: 100%;
        margin-bottom: 28px;
    }
    .hero__badge { font-size: 12px; padding: 6px 16px; margin-bottom: 16px; }
    .hero__actions {
        flex-direction: column;
        gap: 12px;
    }
    .hero__actions .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 15px;
    }

    /* ABOUT */
    .about__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about__image { order: -1; }
    .about__image::before { display: none; }
    .about__image-main { aspect-ratio: 16/10; }
    .hourglass { width: 60px; height: 60px; bottom: -15px; right: -15px; }
    .about__content h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
    .about__values { gap: 8px; }
    .about__value-tag { font-size: 12px; padding: 6px 14px; }

    /* SERVIÇOS */
    .servicos__grid { grid-template-columns: 1fr; gap: 16px; }
    .servico-card {
        padding: 28px 24px;
        /* Desabilitar tilt em touch */
        perspective: none;
    }
    .servico-card:hover {
        transform: none;
    }
    .servico-card__icon { width: 56px; height: 56px; font-size: 22px; }

    /* CTA BANNER */
    .cta-banner { padding: 50px 0; }
    .cta-banner h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
    .cta-banner p { font-size: 15px; margin: 0 auto 24px; }

    /* CLIENTES MARQUEE */
    .clientes__marquee-item {
        min-width: 130px;
        height: 56px;
        padding: 10px 20px;
        font-size: 13px;
    }
    .clientes__marquee-item img { height: 35px; }
    .clientes-section::before,
    .clientes-section::after { width: 60px; }

    /* STATS */
    .stats { padding: 60px 0; }
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .stat-item__number { font-size: clamp(2rem, 8vw, 2.8rem); }

    /* BLOG */
    .blog__grid { grid-template-columns: 1fr; gap: 16px; }
    .blog-card__body { padding: 16px; }

    /* FUNDADORA */
    .founder__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .founder__photo {
        max-height: 350px;
        aspect-ratio: 16/10;
    }
    .founder__content h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }

    /* CONTATO */
    .contato__grid { grid-template-columns: 1fr; gap: 32px; }
    .contato__info h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
    .contato__form { padding: 24px; }
    .form-row { grid-template-columns: 1fr; }
    /* Inputs touch-friendly */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px; /* evitar zoom no iOS */
    }
    .contato__form .btn {
        padding: 16px 24px;
        font-size: 15px;
    }

    /* FOOTER */
    .footer { padding: 48px 0 0; }
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer__brand-name img { max-height: 32px; }
    .footer__desc { font-size: 13px; }
    .footer__newsletter-form input { padding: 12px 14px; font-size: 16px; }
    .footer__newsletter-form button { padding: 12px 16px; }
    .footer__bottom {
        padding: 16px 0;
        font-size: 12px;
    }
    .footer__bottom div {
        flex-direction: column;
        gap: 8px !important;
    }

    /* SECTIONS padding */
    .section { padding: 56px 0; }
    .section__header { margin-bottom: 40px; }
    .section__header h2 { font-size: clamp(1.6rem, 5vw, 2.4rem); }
    .section__header p { font-size: 15px; }

    /* FLOATING ELEMENTS */
    .whatsapp-float {
        width: 52px; height: 52px;
        font-size: 24px;
        bottom: 20px; right: 16px;
    }
    .back-to-top {
        bottom: 84px; right: 16px;
        width: 40px; height: 40px;
    }

    /* LOADER */
    .loader__logo img { max-height: 36px; }
    .loader__bar { width: 100px; }
}

/* =============================================
   MOBILE SMALL (max-width: 480px)
   ============================================= */
@media (max-width: 480px) {
    .container { padding: 0 14px; }

    /* HERO */
    .hero { padding: 48px 0 32px; }
    .hero__title { font-size: clamp(1.7rem, 7vw, 2.3rem); letter-spacing: -0.5px; }
    .hero__text { font-size: 14px; line-height: 1.7; }
    .hero__badge { font-size: 11px; padding: 5px 12px; }

    /* ABOUT */
    .about__content h2 { font-size: 1.5rem; }
    .about__content p { font-size: 14px; }
    .about__value-tag { font-size: 11px; padding: 5px 12px; }

    /* SERVICOS */
    .servico-card { padding: 24px 20px; }
    .servico-card h3 { font-size: 15px; }
    .servico-card p { font-size: 13px; }

    /* STATS */
    .stats__grid { gap: 20px; }
    .stat-item__number { font-size: clamp(1.8rem, 7vw, 2.5rem); }
    .stat-item__label { font-size: 12px; }

    /* BLOG */
    .blog-card__title { font-size: 14px; }
    .blog-card__excerpt { font-size: 12px; }
    .blog-card__body { padding: 14px; }

    /* FOUNDER */
    .founder__photo { max-height: 280px; }
    .founder__content p { font-size: 14px; }
    .founder__role { font-size: 13px; }

    /* CONTATO */
    .contato__form { padding: 20px; }
    .contato__item { gap: 12px; }
    .contato__item-icon { width: 42px; height: 42px; font-size: 16px; }

    /* CTA */
    .cta-banner h2 { font-size: clamp(1.4rem, 5vw, 1.8rem); }
    .cta-banner p { font-size: 14px; }

    /* FOOTER */
    .footer h4 { font-size: 14px; margin-bottom: 14px; }
    .footer__links a { font-size: 13px; }
    .footer__bottom { font-size: 11px; }

    /* BUTTONS touch-friendly */
    .btn {
        padding: 14px 24px;
        font-size: 14px;
        min-height: 48px;
    }

    /* FLOATING */
    .whatsapp-float {
        width: 48px; height: 48px;
        font-size: 22px;
        bottom: 16px; right: 14px;
    }
    .whatsapp-float::before { display: none; } /* remover pulse para performance */
    .back-to-top {
        bottom: 72px; right: 14px;
        width: 36px; height: 36px;
        font-size: 14px;
    }

    /* LOADER */
    .loader__logo img { max-height: 32px; }
    .loader__bar { width: 80px; }
}

/* =============================================
   MOBILE EXTRA SMALL (max-width: 360px)
   ============================================= */
@media (max-width: 360px) {
    .container { padding: 0 12px; }
    .hero__title { font-size: 1.5rem; }
    .hero__actions .btn { padding: 12px 20px; font-size: 13px; }
    .section { padding: 44px 0; }
    .section__header h2 { font-size: 1.3rem; }
    .contato__form { padding: 16px; }
    .footer__grid { gap: 24px; }
    .stats__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .stat-item__number { font-size: 1.6rem; }
}

/* =============================================
   TOUCH DEVICES: desabilitar hover effects
   ============================================= */
@media (hover: none) {
    .servico-card:hover {
        transform: none;
        box-shadow: var(--shadow-sm);
    }
    .servico-card:hover .servico-card__icon {
        background: var(--roxo-light);
        color: var(--roxo);
        transform: none;
    }
    .blog-card:hover { transform: none; }
    .btn--primary:hover,
    .btn--outline:hover,
    .btn--amarelo:hover { transform: none; }
    .cursor-dot, .cursor-ring { display: none !important; }
    .hero__orb { display: none; }
}

/* =============================================
   LANDSCAPE MOBILE (altura reduzida)
   ============================================= */
@media (max-height: 500px) and (orientation: landscape) {
    .hero { min-height: auto; padding: 40px 0 30px; }
    .hero__title { font-size: 1.8rem; }
    .hero__text { margin-bottom: 20px; }
    .loader { display: none !important; }
    .section { padding: 40px 0; }
    .navbar .container { height: 52px; }
}

/* =============================================
   WORDPRESS / ELEMENTOR OVERRIDES
   ============================================= */

/* Remover margens padrão do WP em páginas Elementor */
body.elementor-page .site-main {
    padding: 0;
    margin: 0;
}

/* Garantir que widgets do Elementor ocupem largura total */
body.elementor-page .elementor-section.elementor-section-stretched {
    max-width: 100vw;
}

/* Esconder título da página quando editada com Elementor */
body.elementor-page .entry-header {
    display: none;
}

/* wp_nav_menu compatibility - quando menu WP é usado */
.navbar__menu .menu-item a {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-full);
    transition: var(--transition);
    display: block;
}
.navbar__menu .menu-item a:hover,
.navbar__menu .current-menu-item > a,
.navbar__menu .current_page_item > a,
.navbar__menu .current-menu-ancestor > a {
    color: var(--roxo);
    background: var(--roxo-light);
}
.navbar__menu .sub-menu {
    display: none;
    position: absolute;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-sm);
    padding: 8px 0;
    min-width: 200px;
}
.navbar__menu .menu-item:hover > .sub-menu {
    display: block;
}
