/*
 Theme Name:   Guímel Tecnologia
 Theme URI:    https://www.guimeltecnologia.com.br/
 Description:  Tema filho para Landing Pages (baseado no Hello Elementor)
 Author:       Guímel Tecnologia
 Author URI:   https://www.guimeltecnologia.com.br
 Template:     hello-elementor
 Version:      2.3.4
*/

/* Esconder header/footer padrão em páginas institucionais */
body.landing-no-header header.elementor-location-header,
body.landing-no-header .site-header,
body.landing-no-header header#masthead,
body.landing-no-header footer.elementor-location-footer,
body.landing-no-header .site-footer,
body.landing-no-header footer#colophon {
    display: none !important;
}

body.landing-no-header {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Mensagens dos formulários */
.form-message {
    margin-top: 0.75rem;
    padding: 0.5rem;
    font-size: 0.9rem;
    border-radius: 6px;
}

.form-message.success {
    color: #fff;
    background: rgba(79, 206, 93, 0.35);
}

.form-message.error {
    color: #fff;
    background: rgba(239, 68, 68, 0.35);
}

.form-message.success,
.form-message.error {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    margin-top: 1rem;
}

:root {
      --color-bg: #ffffff;
      --color-bg-alt: #f7f8fa;
      --color-bg-dark: #1a1d21;
      --color-text: #2c2e30;
      --color-text-muted: #5c5f63;
      --color-text-light: #8a8d91;
      --color-accent: #4FCE5D;
      --color-accent-hover: #45b952;
      --color-border: #e5e7ea;
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 14px;
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
      --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
      --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);
      --space-xs: 0.5rem;
      --space-sm: 1rem;
      --space-md: 1.5rem;
      --space-lg: 2rem;
      --space-xl: 3rem;
      --space-2xl: 4rem;
      --space-3xl: 6rem;
      --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
      --color-bg-subtle: #f0f2f5;
      --header-height: 72px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-sans);
      font-size: 1rem;
      line-height: 1.6;
      color: var(--color-text);
      background: var(--color-bg);
      -webkit-font-smoothing: antialiased;
    }

    /* Header */
    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes gradientShift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    .animate-on-scroll {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }

    .animate-on-scroll.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .animate-on-scroll.delay-1 { transition-delay: 0.1s; }
    .animate-on-scroll.delay-2 { transition-delay: 0.2s; }
    .animate-on-scroll.delay-3 { transition-delay: 0.3s; }
    .animate-on-scroll.delay-4 { transition-delay: 0.4s; }

    /* Header */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: var(--header-height);
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--color-border);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 var(--space-lg);
      transition: box-shadow 0.3s ease;
    }

    .header.scrolled {
      box-shadow: var(--shadow-sm);
    }

    .header__logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      transition: opacity 0.2s ease;
    }

    .header__logo:hover {
      opacity: 0.8;
    }

    .header__logo img {
      height: 36px;
      width: auto;
      max-width: 140px;
      object-fit: contain;
    }

    .header__nav {
      display: flex;
      align-items: center;
      gap: var(--space-xl);
    }

    .header__links {
      display: none;
    }

    .header__menu-toggle {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      padding: 10px;
      background: none !important;
      border: none;
      cursor: pointer;
      transition: opacity 0.2s ease;
    }

    .header__menu-toggle:hover,
    .header__menu-toggle:focus {
      opacity: 0.7;
      background: none !important;
    }

    .header__menu-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--color-text);
      border-radius: 1px;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .header__menu-toggle.is-open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .header__menu-toggle.is-open span:nth-child(2) {
      opacity: 0;
    }

    .header__menu-toggle.is-open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    @media (min-width: 980px) {
      .header__menu-toggle {
        display: none;
      }
      .header__links {
        display: flex;
        gap: var(--space-lg);
        list-style: none;
      }
    }

    @media (max-width: 979px) {
      /* Remove backdrop-filter no mobile para o nav fixed ter viewport como containing block */
      .header {
        backdrop-filter: none;
      }

      .header__nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        min-width: 100%;
        background: #ffffff !important;
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-xl);
        gap: var(--space-lg);
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        z-index: 10001;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
      }

      .header__nav.is-open {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
      }

      .header__links {
        display: flex;
        flex-direction: column;
        gap: var(--space-md);
        list-style: none;
        width: 100%;
      }

      .header__links a {
        font-size: 1.1rem;
        padding: var(--space-sm) 0;
        color: var(--color-text);
      }

      .header__links a:hover,
      .header__links a:focus {
        color: var(--color-accent);
      }

      .header__cta {
        margin-top: var(--space-md);
        text-align: center;
        background: var(--color-accent) !important;
        color: #fff;
      }

      /* Botão X (fechar) verde - override tema pai (button:hover/button:focus #c36) */
      .header .header__menu-toggle.is-open,
      .header .header__menu-toggle.is-open:hover,
      .header .header__menu-toggle.is-open:focus {
        background: var(--color-accent) !important;
        border-radius: var(--radius-sm);
      }

      .header__menu-toggle.is-open span {
        background: #fff !important;
      }

      /* Menu overlay - largura total e fundo branco sólido */
      .header__nav,
      .header__nav .header__links {
        background-color: #ffffff !important;
        width: 100% !important;
      }
    }

    .header__links a {
      font-size: 0.95rem;
      color: var(--color-text-muted);
      text-decoration: none;
      font-weight: 500;
      position: relative;
      transition: color 0.2s ease;
    }

    .header__links a::after {
      content: "";
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--color-accent);
      transition: width 0.3s ease;
    }

    .header__links a:hover {
      color: var(--color-accent);
    }

    .header__links a:hover::after {
      width: 100%;
    }

    .header__cta {
      padding: var(--space-xs) var(--space-md);
      background: var(--color-accent);
      color: white;
      border: none;
      border-radius: var(--radius-sm);
      font-weight: 600;
      font-size: 0.9rem;
      text-decoration: none;
      display: inline-block;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .header__cta:hover {
      background: var(--color-accent-hover);
      transform: translateY(-1px);
    }

    /* Hero */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: calc(var(--header-height) + var(--space-3xl)) var(--space-lg) var(--space-3xl);
      background: linear-gradient(135deg, #1a1d21 0%, #2d3238 50%, #1f2327 100%);
      background-image: url("https://www.guimeltecnologia.com.br/wp-content/uploads/2026/02/header-1-scaled.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(26, 29, 33, 0.75) 0%, rgba(26, 29, 33, 0.6) 50%, rgba(31, 35, 39, 0.8) 100%);
      pointer-events: none;
    }

    .hero::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: linear-gradient(rgba(79, 206, 93, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 206, 93, 0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }

    .hero__content {
      position: relative;
      z-index: 1;
      max-width: 680px;
    }

    .hero__title strong {
      color: var(--color-accent);
    }

    .hero__title {
      animation: fadeInUp 0.8s ease-out;
    }

    .hero__subtitle {
      animation: fadeInUp 0.8s ease-out 0.15s both;
    }

    .hero__buttons {
      animation: fadeInUp 0.8s ease-out 0.35s both;
    }

    .hero .hero__title {
      font-size: clamp(2rem, 5vw, 3.25rem);
      font-weight: 700;
      line-height: 1.2;
      color: white;
      margin-bottom: var(--space-md);
    }

    .hero .hero__title strong {
      color: var(--color-accent);
      letter-spacing: -0.02em;
    }

    .hero__subtitle {
      font-size: 1.125rem;
      color: rgba(255, 255, 255, 0.9);
      max-width: 560px;
      margin-bottom: var(--space-lg);
    }

    .hero__points {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-sm);
      margin-bottom: var(--space-xl);
    }

    .hero__point {
      display: inline-flex;
      align-items: center;
      gap: var(--space-xs);
      font-size: 0.9rem;
      color: rgba(255, 255, 255, 0.9);
      background: rgba(255, 255, 255, 0.12);
      padding: var(--space-xs) var(--space-sm);
      border-radius: var(--radius-sm);
      animation: fadeInUp 0.8s ease-out 0.25s both;
    }

    .hero__point::before {
      content: "";
      width: 6px;
      height: 6px;
      background: var(--color-accent);
      border-radius: 50%;
    }

    .hero__buttons {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-sm);
    }

    .btn-primary {
      padding: var(--space-sm) var(--space-lg);
      background: var(--color-accent);
      color: white;
      border: none;
      border-radius: var(--radius-sm);
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      display: inline-block;
      transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

    .btn-primary:hover {
      background: var(--color-accent-hover);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(79, 206, 93, 0.35);
    }

    .btn-secondary {
      padding: var(--space-sm) var(--space-lg);
      background: transparent;
      color: white;
      border: 2px solid rgba(255, 255, 255, 0.6);
      border-radius: var(--radius-sm);
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      display: inline-block;
      transition: border-color 0.2s, color 0.2s, transform 0.2s ease;
    }

    .btn-secondary:hover {
      border-color: white;
      color: white;
      transform: translateY(-2px);
    }

    .btn-secondary--dark {
      color: var(--color-text);
      border-color: var(--color-border);
    }

    .btn-secondary--dark:hover {
      border-color: var(--color-accent);
      color: var(--color-accent);
      transform: translateY(-2px);
    }

    /* Breadcrumb */
    .breadcrumb {
      background: var(--color-bg-alt);
      padding: var(--space-sm) var(--space-lg);
      border-bottom: 1px solid var(--color-border);
    }

    .breadcrumb__inner {
      max-width: 1200px;
      margin: 0 auto;
      font-size: 0.85rem;
      color: var(--color-text-muted);
    }

    .breadcrumb a {
      color: var(--color-text-muted);
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .breadcrumb a:hover {
      color: var(--color-accent);
    }

    .breadcrumb__sep {
      margin: 0 var(--space-xs);
      color: var(--color-text-light);
    }

    /* Intro + Form */
    .intro {
      padding: var(--space-3xl) var(--space-lg);
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: linear-gradient(180deg, #ffffff 0%, #f5f8f6 100%);
      position: relative;
      overflow: hidden;
    }

    .intro::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 120px;
      background: linear-gradient(180deg, var(--color-accent), transparent);
      border-radius: 0 4px 4px 0;
    }

    .intro__inner {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      gap: var(--space-2xl);
      position: relative;
    }

    @media (min-width: 980px) {
      .intro__inner {
        grid-template-columns: 1fr 550px;
        align-items: start;
        gap: var(--space-3xl);
      }

      .intro .form-card {
        position: sticky;
        top: calc(var(--header-height) + var(--space-lg));
      }
    }

    .intro__content {
      padding-right: var(--space-md);
    }

    .intro__label {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--color-accent);
      margin-bottom: var(--space-sm);
    }

    .intro__content h2 {
      font-size: clamp(1.85rem, 3.2vw, 2.5rem);
      font-weight: 700;
      color: var(--color-text);
      margin-bottom: var(--space-md);
      line-height: 1.25;
      letter-spacing: -0.02em;
    }

    .intro__content h2 strong {
      color: var(--color-accent);
      font-weight: 700;
    }

    .intro__content p {
      color: var(--color-text-muted);
      margin-bottom: var(--space-md);
      font-size: 1.05rem;
      line-height: 1.7;
    }

    .intro__content p:last-of-type {
      margin-bottom: 0;
    }

    .intro__points {
      margin-top: var(--space-lg);
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-sm);
    }

    .intro__point {
      display: inline-flex;
      align-items: center;
      gap: var(--space-xs);
      font-size: 0.9rem;
      color: var(--color-text-muted);
      background: white;
      padding: var(--space-xs) var(--space-sm);
      border-radius: var(--radius-sm);
      box-shadow: var(--shadow-sm);
    }

    .intro__point::before {
      content: "";
      width: 6px;
      height: 6px;
      background: var(--color-accent);
      border-radius: 50%;
    }

    .intro .form-card {
      padding: var(--space-xl);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
    }

    .intro .form-card__title {
      margin-bottom: var(--space-md);
      font-size: 1.3rem;
    }

    .intro .form-group {
      margin-bottom: var(--space-sm);
    }

    .intro .form-group textarea {
      min-height: 90px;
    }

    .intro .form-group input,
    .intro .form-group select {
      padding: 0.75rem 1rem;
    }

    .intro .form-card .btn-primary {
      margin-top: var(--space-xs);
      padding: 0.75rem var(--space-lg);
      font-size: 1rem;
    }

    @media (max-width: 979px) {
      .intro {
        padding: var(--space-2xl) var(--space-md);
      }

      .intro__inner {
        gap: var(--space-lg);
        padding: 0;
      }

      .intro .form-card {
        padding: var(--space-md);
      }

      .intro .form-group {
        margin-bottom: var(--space-xs);
      }

      .intro .form-group input,
      .intro .form-group select,
      .intro .form-group textarea {
        padding: 0.6rem 0.75rem;
      }

      .intro__content {
        padding-right: 0;
      }
    }

    /* Form Card - Premium dark */
    .form-card {
      background: #1a1d21;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      padding: var(--space-xl);
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: box-shadow 0.3s ease, transform 0.3s ease;
    }

    .form-card:hover {
      box-shadow: var(--shadow-lg);
    }

    .form-card__title {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: var(--space-lg);
      color: rgba(255, 255, 255, 0.95);
    }

    .form-group {
      margin-bottom: var(--space-md);
    }

    .form-group label {
      display: block;
      font-size: 0.9rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: var(--space-xs);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 0.875rem 1rem;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: var(--radius-sm);
      font-family: inherit;
      font-size: 1rem;
      background: rgba(255, 255, 255, 0.06);
      color: #fff;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }

    .form-group select {
      cursor: pointer;
    }

    .form-group select option {
      background: #2d3238;
      color: #fff;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--color-accent);
      box-shadow: 0 0 0 3px rgba(79, 206, 93, 0.2);
    }

    .form-group textarea {
      min-height: 100px;
      resize: vertical;
    }

    .form-card .btn-primary {
      width: 100%;
      padding: var(--space-sm) var(--space-lg);
      margin-top: var(--space-sm);
      background: var(--color-accent);
      color: white;
    }

    .form-card .btn-primary:hover {
      background: var(--color-accent-hover);
      color: white;
      box-shadow: 0 4px 12px rgba(79, 206, 93, 0.35);
    }

    /* Highlight Section */
    .highlight {
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: linear-gradient(160deg, #1a1d21 0%, #252a30 100%);
      color: white;
      padding: var(--space-3xl) var(--space-lg);
      position: relative;
      overflow: hidden;
    }

    .highlight::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100px;
      background: linear-gradient(180deg, var(--color-accent), transparent);
      border-radius: 0 4px 4px 0;
    }

    .highlight__inner {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      gap: var(--space-2xl);
      align-items: center;
      position: relative;
    }

    @media (min-width: 980px) {
      .highlight__inner {
        grid-template-columns: 1fr 420px;
        gap: var(--space-3xl);
      }
    }

    .highlight__label {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--color-accent);
      margin-bottom: var(--space-sm);
    }

    .highlight__content h2 {
      font-size: clamp(1.75rem, 3vw, 2.35rem);
      font-weight: 700;
      margin-bottom: var(--space-md);
      color: white;
      line-height: 1.25;
      letter-spacing: -0.02em;
    }

    .highlight__content h2 strong {
      color: var(--color-accent);
      font-weight: 700;
    }

    .highlight__content p {
      color: rgba(255, 255, 255, 0.88);
      margin-bottom: var(--space-md);
      font-size: 1.05rem;
      line-height: 1.7;
    }

    .highlight__content p:last-of-type {
      margin-bottom: 0;
    }

    .highlight__cta {
      margin-top: var(--space-lg);
    }

    .highlight__illustration {
      position: relative;
      background: url("https://www.guimeltecnologia.com.br/wp-content/uploads/2026/02/solucoes-digitais-scaled.jpg") center / cover no-repeat;
      border-radius: var(--radius-lg);
      aspect-ratio: 4/3;
      min-height: 260px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      transition: transform 0.3s ease;
    }

    .highlight__illustration::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(79, 206, 93, 0.08) 0%, transparent 50%);
      border-radius: var(--radius-lg);
      pointer-events: none;
    }

    .highlight__illustration:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    }

    /* Section Base */
    .section {
      padding: var(--space-3xl) var(--space-lg);
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .section .container {
      width: 100%;
    }

    .section::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100px;
      background: linear-gradient(180deg, var(--color-accent), transparent);
      border-radius: 0 4px 4px 0;
    }

    /* Distinct backgrounds per section */
    .section--servicos {
      background: linear-gradient(180deg, #f0f4f2 0%, #e8eee9 100%);
    }

    .section--como-atuamos {
      background: linear-gradient(180deg, #f7f9fc 0%, #eef2f6 100%);
    }

    .section--produtos {
      background: linear-gradient(180deg, #f5faf7 0%, #ecf4ef 100%);
    }

    .section--clientes {
      background: linear-gradient(180deg, #faf8f5 0%, #f2efe8 100%);
    }

    .section--contato {
      background: linear-gradient(180deg, #f0f7f4 0%, #e6f0eb 100%);
    }

    .section__header {
      max-width: 720px;
      margin-bottom: var(--space-2xl);
    }

    .section__label {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--color-accent);
      margin-bottom: var(--space-sm);
    }

    .section__header h2 {
      font-size: clamp(1.85rem, 3.2vw, 2.4rem);
      font-weight: 700;
      color: var(--color-text);
      margin-bottom: var(--space-sm);
      line-height: 1.25;
      letter-spacing: -0.02em;
    }

    .section__header h2 strong {
      color: var(--color-accent);
      font-weight: 700;
    }

    .section__header p {
      color: var(--color-text-muted);
      font-size: 1.05rem;
      line-height: 1.7;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Services Cards */
    .services-grid {
      display: grid;
      gap: var(--space-lg);
      grid-template-columns: 1fr;
    }

    @media (min-width: 640px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 980px) {
      .services-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .service-card {
      background: white;
      border-radius: var(--radius-lg);
      padding: var(--space-xl);
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--color-border);
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: var(--color-accent);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: rgba(79, 206, 93, 0.3);
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-card__icon {
      width: 48px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--space-md);
      color: var(--color-accent);
    }

    .service-card__icon svg {
      width: 28px;
      height: 28px;
    }

    .service-card h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--color-text);
      margin-bottom: var(--space-sm);
    }

    .service-card p {
      font-size: 0.95rem;
      color: var(--color-text-muted);
    }

    /* Design de Solução - Process Flow */
    .design-section {
      width: 100%;
    }

    .design-section__intro {
      text-align: left;
      margin-bottom: var(--space-2xl);
    }

    .design-section__label {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--color-accent);
      margin-bottom: var(--space-sm);
    }

    .design-section__intro h3 {
      font-size: clamp(1.75rem, 3.2vw, 2.25rem);
      font-weight: 700;
      color: var(--color-text);
      margin-bottom: var(--space-md);
      line-height: 1.25;
      letter-spacing: -0.02em;
    }

    .design-section__intro h3 strong {
      color: var(--color-accent);
      font-weight: 700;
    }

    .design-section__intro p {
      color: var(--color-text-muted);
      font-size: 1.05rem;
      line-height: 1.7;
    }

    .design-process {
      display: grid;
      gap: var(--space-lg);
      grid-template-columns: 1fr;
    }

    @media (min-width: 640px) {
      .design-process {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 980px) {
      .design-process {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .design-process__step {
      position: relative;
      padding: var(--space-xl);
      background: white;
      border-radius: var(--radius-lg);
      border: 1px solid var(--color-border);
      box-shadow: var(--shadow-sm);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      overflow: hidden;
    }

    .design-process__step::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: var(--color-accent);
      opacity: 0;
      transition: opacity 0.25s ease;
    }

    .design-process__step:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: rgba(79, 206, 93, 0.3);
    }

    .design-process__step:hover::before {
      opacity: 1;
    }

    .design-process__num {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--color-accent);
      color: white;
      font-weight: 700;
      font-size: 0.875rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--space-md);
    }

    .design-process__icon {
      width: 28px;
      height: 28px;
      color: var(--color-accent);
      margin-bottom: var(--space-sm);
    }

    .design-process__step h4 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--color-text);
      margin-bottom: var(--space-xs);
    }

    .design-process__step p {
      font-size: 0.875rem;
      color: var(--color-text-muted);
      line-height: 1.5;
    }

    /* Products Section */
    .product-spotlight {
      display: grid;
      background: white;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--color-border);
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      position: relative;
    }

    .product-spotlight::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(180deg, var(--color-accent), transparent);
      z-index: 1;
    }

    .product-spotlight:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
      border-color: rgba(79, 206, 93, 0.2);
    }

    @media (min-width: 768px) {
      .product-spotlight {
        grid-template-columns: 360px 1fr;
      }
    }

    .product-spotlight__visual {
      background: linear-gradient(160deg, #1a1d21 0%, #252a30 100%);
      padding: var(--space-2xl);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 220px;
      position: relative;
    }

    .product-spotlight__visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(79, 206, 93, 0.05) 0%, transparent 50%);
      pointer-events: none;
    }

    .product-spotlight__visual img {
      max-width: 180px;
      max-height: 80px;
      width: auto;
      height: auto;
      object-fit: contain;
      filter: brightness(1.05);
    }

    .product-spotlight__content {
      padding: var(--space-2xl);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .product-spotlight__tag {
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--color-accent);
      margin-bottom: var(--space-sm);
    }

    .product-spotlight__content h3 {
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      font-weight: 700;
      color: var(--color-text);
      margin-bottom: var(--space-md);
      line-height: 1.2;
    }

    .product-spotlight__content p {
      font-size: 1rem;
      color: var(--color-text-muted);
      line-height: 1.6;
      margin-bottom: var(--space-xl);
    }

    .product-spotlight .btn-primary {
      align-self: flex-start;
    }

    /* Clients Section */
    .clients-logos {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-lg);
      flex-wrap: wrap;
      margin-bottom: var(--space-xl);
      padding: var(--space-lg) 0;
    }

    .clients-logos__arrow {
      color: var(--color-text-light);
      font-size: 1.25rem;
      flex-shrink: 0;
    }

    .clients-logos__row {
      display: flex;
      gap: var(--space-md);
      flex-wrap: wrap;
      justify-content: center;
    }

    .clients-logos__item {
      width: 110px;
      height: 56px;
      background: white;
      border: 1px solid var(--color-border);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-text-muted);
      font-size: 0.75rem;
      font-weight: 600;
      box-shadow: var(--shadow-sm);
      transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }

    .clients-logos__item:hover {
      transform: translateY(-2px) scale(1.02);
      border-color: var(--color-accent);
      background: rgba(79, 206, 93, 0.06);
      color: var(--color-accent);
      box-shadow: var(--shadow-md);
    }

    .clients-logos__arrow {
      transition: transform 0.2s ease, color 0.2s ease;
    }

    .clients-logos__arrow:hover {
      transform: scale(1.2);
      color: var(--color-accent);
    }

    .clients-cta {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-sm);
      justify-content: center;
    }

    /* Contact Section */
    .contact__inner {
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-2xl);
      width: 100%;
      min-width: 0; /* permite grid encolher e respeitar padding do container */
    }

    .contact__inner > * {
      min-width: 0; /* evita overflow - itens grid têm min-width: auto por padrão */
    }

    @media (min-width: 980px) {
      .contact__inner {
        grid-template-columns: 1fr 420px;
        align-items: start;
        gap: var(--space-3xl);
      }

      .contact .form-card {
        position: sticky;
        top: calc(var(--header-height) + var(--space-lg));
      }
    }

    @media (max-width: 979px) {
      /* Mesmo padding da intro - evita escostar nas laterais */
      .section--contato {
        padding: var(--space-2xl) var(--space-md);
      }

      .section--contato .section__header {
        margin-bottom: var(--space-xl);
      }

      .section--contato .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
        box-sizing: border-box;
      }

      .contact__inner {
        gap: var(--space-lg);
        padding: 0;
        width: 100%;
        box-sizing: border-box;
      }

      .contact__channels-col {
        width: 100%;
      }

      .contact__channels {
        width: 100%;
      }

      /* Cards e-mail/WhatsApp - mesma base visual da intro */
      .contact-channel {
        padding: var(--space-md);
      }

      /* Form igual ao da intro: mesmo padding, espaçamento, bordas */
      .contact .form-card {
        width: 100%;
        padding: var(--space-md);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        box-sizing: border-box;
      }

      .contact .form-card__title {
        margin-bottom: var(--space-md);
        font-size: 1.3rem;
      }

      .contact .form-group {
        margin-bottom: var(--space-xs);
      }

      .contact .form-group input,
      .contact .form-group textarea {
        padding: 0.6rem 0.75rem;
      }

      .contact .form-card .btn-primary {
        margin-top: var(--space-xs);
        padding: 0.75rem var(--space-lg);
        font-size: 1rem;
      }
    }

    .contact__channels-col {
      display: flex;
      flex-direction: column;
      gap: var(--space-md);
    }

    .contact__channels {
      display: flex;
      flex-direction: column;
      gap: var(--space-lg);
    }

    .contact__channels-intro {
      margin-bottom: 0;
    }

    .contact__channels-intro p {
      font-size: 1.05rem;
      color: var(--color-text-muted);
      line-height: 1.6;
    }

    .contact-channel {
      display: flex;
      align-items: center;
      gap: var(--space-lg);
      padding: var(--space-xl);
      background: white;
      border-radius: var(--radius-lg);
      border: 1px solid var(--color-border);
      text-decoration: none;
      color: inherit;
      box-shadow: var(--shadow-sm);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      position: relative;
      overflow: hidden;
    }

    .contact-channel::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: var(--color-accent);
      opacity: 0;
      transition: opacity 0.25s ease;
    }

    .contact-channel:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: rgba(79, 206, 93, 0.3);
    }

    .contact-channel:hover::before {
      opacity: 1;
    }

    .contact-channel__icon {
      width: 56px;
      height: 56px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-channel--email .contact-channel__icon {
      background: rgba(79, 206, 93, 0.12);
      color: var(--color-accent);
    }

    .contact-channel--whatsapp .contact-channel__icon {
      background: rgba(37, 211, 102, 0.12);
      color: #25d366;
    }

    .contact-channel__icon svg {
      width: 28px;
      height: 28px;
    }

    .contact-channel__content h4 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--color-text);
      margin-bottom: 0.25rem;
    }

    .contact-channel__content span {
      font-size: 0.95rem;
      color: var(--color-text-muted);
    }

    .contact-channel:hover .contact-channel__content span {
      color: var(--color-accent);
    }

    /* Footer - Harmonized design */
    .footer {
      position: relative;
      overflow: hidden;
    }

    .footer::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 120px;
      background: linear-gradient(180deg, var(--color-accent), transparent);
      border-radius: 0 4px 4px 0;
      z-index: 1;
    }

    .footer__inner {
      background: linear-gradient(180deg, #eef4f1 0%, #e4ece8 100%);
      padding: var(--space-3xl) var(--space-lg) var(--space-2xl);
    }

    .footer__grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: var(--space-2xl);
      position: relative;
    }

    @media (min-width: 768px) {
      .footer__grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: var(--space-3xl);
      }
    }

    .footer__col h4 {
      font-size: 0.8rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--color-accent);
      margin-bottom: var(--space-md);
    }

    .footer__brand {
      font-weight: 700;
      font-size: 1.25rem;
      color: var(--color-text);
      margin-bottom: var(--space-xs);
    }

    .footer__cnpj {
      font-size: 0.85rem;
      color: var(--color-text-light);
      margin-bottom: var(--space-sm);
    }

    .footer__tagline {
      font-size: 0.9rem;
      color: var(--color-text-muted);
      margin-bottom: var(--space-lg);
    }

    .footer__address {
      font-size: 0.9rem;
      line-height: 1.75;
      color: var(--color-text-muted);
    }

    .footer__address a {
      color: inherit;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer__address a:hover {
      color: var(--color-accent);
    }

    .footer__links {
      list-style: none;
    }

    .footer__links li {
      margin-bottom: var(--space-xs);
    }

    .footer__links a {
      color: var(--color-text-muted);
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.2s ease;
    }

    .footer__links a:hover {
      color: var(--color-accent);
    }

    .footer__legal {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-sm);
      margin-bottom: var(--space-md);
    }

    .footer__legal a {
      color: var(--color-text-muted);
      text-decoration: none;
      font-size: 0.85rem;
      transition: color 0.2s ease;
    }

    .footer__legal a:hover {
      color: var(--color-accent);
    }

    .footer__legal span {
      color: var(--color-text-light);
      font-size: 0.75rem;
      margin: 0 var(--space-xs);
    }

    .footer__social-row {
      display: flex;
      gap: var(--space-sm);
    }

    .footer__social-row a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: white;
      color: var(--color-text-muted);
      border-radius: var(--radius-md);
      border: 1px solid var(--color-border);
      text-decoration: none;
      transition: all 0.2s ease;
    }

    .footer__social-row a:hover {
      background: var(--color-accent);
      color: #fff;
      border-color: var(--color-accent);
      transform: translateY(-2px);
    }

    .footer__social-row svg {
      width: 18px;
      height: 18px;
    }

    .footer__partner {
      margin-top: var(--space-md);
    }

    .footer__partner a {
      display: inline-block;
      opacity: 0.75;
      transition: opacity 0.2s ease;
    }

    .footer__partner a:hover {
      opacity: 1;
    }

    .footer__partner img {
      height: 22px;
      width: auto;
    }

    .footer__bottom {
      background: var(--color-accent);
      padding: var(--space-md) var(--space-lg);
    }

    .footer__bottom-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: var(--space-md);
      text-align: center;
      color: #fff;
    }

    @media (min-width: 640px) {
      .footer__bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
      }
    }

    .footer__copyright {
      font-size: 0.85rem;
      opacity: 0.95;
      margin: 0;
      margin-block-end: 0;
    }

    .footer__bottom-legal {
      display: flex;
      flex-wrap: wrap;
      gap: var(--space-md);
    }

    .footer__bottom-legal a {
      color: rgba(255, 255, 255, 0.95);
      text-decoration: none;
      font-size: 0.85rem;
      transition: opacity 0.2s ease;
    }

    .footer__bottom-legal a:hover {
      opacity: 0.85;
      text-decoration: underline;
    }

    .back-to-top {
      position: absolute;
      top: var(--space-xl);
      right: var(--space-lg);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      background: var(--color-accent);
      color: #fff;
      border-radius: 50%;
      text-decoration: none;
      box-shadow: var(--shadow-md);
      transition: background 0.2s, transform 0.2s ease;
    }

    .back-to-top:hover {
      background: var(--color-accent-hover);
      transform: translateY(-3px) scale(1.05);
    }

    .back-to-top::after {
      content: "↑";
      font-size: 1.2rem;
      font-weight: 600;
    }

    .footer__inner {
      position: relative;
    }

    /* Floating WhatsApp bubble */
    @keyframes floatPulse {
      0%, 100% {
        box-shadow: 0 2px 12px rgba(79, 206, 93, 0.35);
        transform: scale(1);
      }
      50% {
        box-shadow: 0 2px 16px rgba(79, 206, 93, 0.45);
        transform: scale(1.02);
      }
    }

    .floating-bubble {
      position: fixed;
      bottom: var(--space-lg);
      right: var(--space-lg);
      width: 56px;
      height: 56px;
      background: var(--color-accent);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      z-index: 999;
      box-shadow: 0 4px 20px rgba(79, 206, 93, 0.5);
      transition: background 0.2s ease, transform 0.2s ease;
      animation: floatPulse 2s ease-in-out infinite;
    }

    .floating-bubble:hover {
      background: var(--color-accent-hover);
      transform: scale(1.08);
      animation: none;
    }

    .floating-bubble svg {
      width: 28px;
      height: 28px;
    }
  