/*
Theme Name: Tiago Carvalho - Palestrante
Theme URI: https://tiagocarvalho.com.br
Author: Digitalleep
Author URI: https://digitalleep.com
Description: Landing page profissional do palestrante Tiago Carvalho — Comportamento Organizacional e Performance Humana.
Version: 1.0.0
License: Proprietary
Tags: landing-page, one-page, dark, orange
*/


  :root {
    --orange: #E8611A;
    --orange-light: #F07030;
    --dark: #0D0D0D;
    --dark2: #141414;
    --dark3: #1A1A1A;
    --dark4: #222222;
    --gray: #888888;
    --gray-light: #AAAAAA;
    --white: #F5F0EB;
    --white-pure: #ffffff;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--dark);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ======= NAV ======= */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(13,13,13,0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    height: 64px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }

  .nav-logo-icon {
    width: 32px;
    height: 32px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: #fff;
    letter-spacing: 1px;
  }

  .nav-logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.2;
  }

  .nav-logo-text span {
    display: block;
    font-weight: 300;
    font-size: 10px;
    color: var(--gray);
    letter-spacing: 0.15em;
  }

  .nav-cta {
    background: var(--orange);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 24px;
    text-decoration: none;
    transition: background 0.2s;
  }

  .nav-cta:hover { background: var(--orange-light); }

  /* ======= HERO ======= */
  #hero {
    min-height: 100vh;
    padding: 130px 8% 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--dark);
    position: relative;
    overflow: hidden;
  }

  /* Desktop: wrapper invisível, não afeta layout */
  .hero-content-mobile {
    display: contents;
  }

  #hero::before {
    content: '';
    position: absolute;
    top: 0; right: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 40%, rgba(232,97,26,0.07) 0%, transparent 70%);
    pointer-events: none;
  }

  #hero > *:not(img) {
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
  }

  .hero-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(52px, 8vw, 96px);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--white);
    max-width: 800px;
  }

  .hero-title .highlight {
    color: var(--orange);
    font-style: italic;
  }

  .hero-subtitle {
    margin-top: 32px;
    font-size: 16px;
    color: var(--gray-light);
    max-width: 500px;
    line-height: 1.7;
  }

  .hero-subtitle strong {
    color: var(--white);
    font-weight: 600;
  }

  .hero-actions {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--orange);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px 36px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
  }

  .btn-primary:hover { background: var(--orange-light); transform: translateY(-1px); }

  .btn-ghost {
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    transition: opacity 0.2s;
  }

  .btn-ghost:hover { opacity: 1; }
  .btn-ghost::before { content: '▶'; color: var(--orange); font-size: 10px; }

  .hero-stats {
    margin-top: 64px;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
  }

  .stat {
    display: flex;
    flex-direction: column;
  }

  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: var(--white);
    line-height: 1;
  }

  .stat-num span { color: var(--orange); }

  .stat-label {
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
  }

  /* ======= DIVIDER ======= */
  .section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    margin: 0 5%;
  }

  /* ======= SECTION BASE ======= */
  section {
    padding: 96px 8%;
  }

  .section-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
    display: block;
  }

  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(36px, 5vw, 60px);
    line-height: 1.0;
    letter-spacing: -0.01em;
    text-transform: uppercase;
  }

  .section-title .highlight { color: var(--orange); font-style: italic; }

  /* ======= PROBLEM SECTION ======= */
  #problem {
    background: var(--dark2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }

  #problem .left .section-title {
    font-size: clamp(40px, 5.5vw, 68px);
    margin-bottom: 24px;
  }

  #problem .left p {
    color: var(--gray-light);
    font-size: 15px;
    line-height: 1.8;
    max-width: 420px;
  }

  #problem .left p strong {
    color: var(--white);
  }

  .checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .checklist li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.5;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .checklist li:last-child { border-bottom: none; }

  .check-icon {
    width: 20px;
    height: 20px;
    background: rgba(232,97,26,0.15);
    border: 1px solid rgba(232,97,26,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 10px;
    color: var(--orange);
  }

  /* ======= VIDEO SECTION ======= */
  #video-section {
    background: var(--dark);
    text-align: center;
    padding: 96px 8%;
  }

  #video-section .section-title {
    margin-bottom: 12px;
  }

  #video-section p {
    color: var(--gray-light);
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto 48px;
  }

  .video-wrapper {
    max-width: 420px;
    margin: 0 auto;
    position: relative;
    background: #0d0d0d;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.65);
  }

  .video-wrapper video {
    width: 100%;
    height: auto;
    max-height: 85vh;
    display: block;
    object-fit: contain;
    background: #0d0d0d;
  }

  .video-thumb {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .play-btn {
    width: 72px;
    height: 72px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
    z-index: 2;
  }

  .play-btn:hover { transform: scale(1.08); background: var(--orange-light); }

  .play-btn::after {
    content: '';
    border-left: 26px solid #fff;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    margin-left: 5px;
  }

  .video-person {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 320px;
    background: linear-gradient(180deg, transparent 0%, #111 80%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
  }

  .video-cta {
    margin-top: 32px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  /* ======= DELIVERY SECTION ======= */
  #delivery {
    background: var(--dark2);
  }

  #delivery .section-title { margin-bottom: 56px; }

  .delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 48px;
  }

  .delivery-card {
    background: var(--dark3);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }

  .delivery-card:hover { background: var(--dark4); }

  .delivery-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px;
    height: 0;
    background: var(--orange);
    transition: height 0.4s ease;
  }

  .delivery-card:hover::before { height: 100%; }

  .delivery-card-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
  }

  .delivery-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 14px;
    line-height: 1.1;
  }

  .delivery-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .delivery-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .delivery-card ul li {
    font-size: 12px;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .delivery-card ul li::before {
    content: '—';
    color: var(--orange);
    font-size: 10px;
  }

  /* ======= CONTENT SECTION ======= */
  #content-section {
    background: var(--dark);
  }

  .content-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
    flex-wrap: wrap;
    gap: 24px;
  }

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

  .content-card {
    background: var(--dark2);
    padding: 36px 32px;
  }

  .content-card-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: rgba(232,97,26,0.2);
    line-height: 1;
    margin-bottom: 8px;
  }

  .content-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.03em;
  }

  .content-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
  }

  /* ======= FORMATION SECTION ======= */
  #formation {
    background: var(--dark2);
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 72px;
    align-items: start;
  }

  .formation-img {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(160deg, #1e1e1e 0%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .formation-img-placeholder {
    width: 240px;
    height: 300px;
    background: linear-gradient(180deg, #2a2a2a 0%, #111 100%);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed';
    font-size: 13px;
    color: var(--gray);
    letter-spacing: 0.1em;
  }

  .formation-content .section-title { margin-bottom: 20px; }

  .formation-content > p {
    color: var(--gray-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 40px;
  }

  .formation-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 48px;
  }

  /* ======= TESTIMONIALS ======= */
  #testimonials {
    background: var(--dark);
  }

  #testimonials .section-title { margin-bottom: 16px; }

  #testimonials > p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 56px;
  }

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

  /* 3rd testimonial full-width centered */
  .testimonial-wide {
    grid-column: 1 / -1;
    max-width: 760px;
    margin: 0 auto;
    width: 100%;
  }

  .testimonial-card {
    background: var(--dark2);
    padding: 40px 36px;
    position: relative;
  }

  .testimonial-card::before {
    content: '"';
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 80px;
    color: rgba(232,97,26,0.15);
    position: absolute;
    top: 12px;
    left: 28px;
    line-height: 1;
  }

  .testimonial-text {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 24px;
    padding-top: 32px;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .author-avatar {
    width: 44px;
    height: 44px;
    background: var(--dark4);
    border-radius: 50%;
    border: 2px solid rgba(232,97,26,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue';
    font-size: 18px;
    color: var(--orange);
    flex-shrink: 0;
  }

  .author-info strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  .author-info span {
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 0.05em;
  }

  /* ======= LOGOS ======= */
  #logos {
    background: var(--dark2);
    text-align: center;
    padding: 96px 8%;
  }

  #logos .section-title { margin-bottom: 12px; }
  #logos > p { color: var(--gray); font-size: 13px; margin-bottom: 48px; }

  .logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    margin-top: 40px;
  }

  .logo-cell {
    background: var(--dark3);
    padding: 24px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, opacity 0.3s;
    min-height: 90px;
  }

  .logo-cell:hover { background: var(--dark4); }

  .logo-cell svg {
    opacity: 0.5;
    transition: opacity 0.35s;
    max-width: 100%;
  }

  .logo-cell:hover svg { opacity: 1; }

  /* ======= METHOD SECTION ======= */
  #method {
    background: var(--dark);
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 72px;
    align-items: start;
  }

  #method .section-title { margin-bottom: 40px; }

  .method-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .method-step {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: padding-left 0.3s;
  }

  .method-step:hover { padding-left: 12px; }
  .method-step:last-child { border-bottom: none; }

  .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: rgba(232,97,26,0.25);
    line-height: 1;
    flex-shrink: 0;
    width: 40px;
  }

  .step-content strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 6px;
    color: var(--white);
  }

  .step-content p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
  }

  .method-img {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(160deg, #1a1a1a 0%, #0d0d0d 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .method-img-inner {
    width: 280px;
    height: 350px;
    background: linear-gradient(180deg, #2a2020 0%, #111 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed';
    color: var(--gray);
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  /* ======= CTA FINAL ======= */
  #cta-final {
    background: var(--dark2);
    text-align: center;
    padding: 120px 8%;
  }

  #cta-final .section-title {
    font-size: clamp(48px, 7vw, 88px);
    margin-bottom: 24px;
  }

  #cta-final p {
    color: var(--gray-light);
    font-size: 15px;
    max-width: 520px;
    margin: 0 auto 48px;
    line-height: 1.8;
  }

  #cta-final .btn-primary {
    font-size: 15px;
    padding: 18px 48px;
  }

  .cta-footnote {
    margin-top: 20px;
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 0.05em;
  }

  /* ======= FOOTER ======= */
  footer {
    background: #0A0A0A;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 48px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }

  .footer-brand {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
  }

  .footer-brand span { color: var(--orange); }

  .footer-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }

  .footer-links a {
    font-size: 12px;
    color: var(--gray);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: var(--orange); }

  .footer-copy {
    font-size: 11px;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.05em;
  }

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

  .fade-up.visible {
    opacity: 1;
    transform: none;
  }

  /* ======= RESPONSIVE ======= */
  @media (max-width: 960px) {
    #problem, #formation, #method {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .delivery-grid, .content-grid {
      grid-template-columns: 1fr;
    }

    .testimonials-grid {
      grid-template-columns: 1fr;
    }
    .testimonial-wide {
      grid-column: 1;
      max-width: 100%;
    }

    .logos-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }

    .formation-img, .method-img {
        max-height: 320px;
    }
  }

  @media (max-width: 600px) {
    section { padding: 64px 6%; }
    .hero-stats { gap: 20px; flex-wrap: wrap; }
    .hero-title { font-size: clamp(40px, 11vw, 60px); }
    .logos-grid { grid-template-columns: repeat(2, 1fr); }
    .logos-grid .logo-cell svg { width: 90px; height: 30px; }
  }

  /* Orange line accent */
  .orange-line {
    display: inline-block;
    width: 40px;
    height: 3px;
    background: var(--orange);
    margin-bottom: 12px;
  }

  /* Noise texture overlay */
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.018;
    pointer-events: none;
    z-index: 9999;
  }

  /* ======= WHATSAPP FLUTUANTE ======= */
  .whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    animation: wpp-pop 0.5s cubic-bezier(0.175,0.885,0.32,1.275) both;
    animation-delay: 1.5s;
  }

  @keyframes wpp-pop {
    from { opacity:0; transform:scale(0.5) translateY(20px); }
    to   { opacity:1; transform:scale(1) translateY(0); }
  }

  .whatsapp-float .wpp-label {
    background: #1a1a1a;
    color: var(--white);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.05em;
    padding: 8px 14px;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
    opacity: 0;
    transform: translateX(8px);
    transition: opacity 0.25s, transform 0.25s;
    pointer-events: none;
  }

  .whatsapp-float:hover .wpp-label {
    opacity: 1;
    transform: translateX(0);
  }

  .whatsapp-float .wpp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 28px rgba(37,211,102,0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
  }

  .whatsapp-float:hover .wpp-btn {
    transform: scale(1.08);
    box-shadow: 0 10px 36px rgba(37,211,102,0.6);
  }

  .whatsapp-float .wpp-btn svg {
    width: 32px;
    height: 32px;
    fill: white;
  }

  .wpp-ping {
    position: absolute;
    top: 0; right: 0;
    width: 14px;
    height: 14px;
    background: #E8611A;
    border-radius: 50%;
    border: 2px solid var(--dark);
    animation: ping 2s ease-in-out infinite;
  }

  @keyframes ping {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
  }


  /* ===== SMARTPHONES ===== */
  @media (max-width: 480px) {
    nav { padding: 0 5%; height: 60px; }
    .nav-logo-text { display: none; }
    .nav-cta { padding: 9px 16px; font-size: 12px; }

    /* ── HERO MOBILE: foto no topo + texto embaixo ── */
    #hero {
      padding: 0;
      min-height: auto;
      display: block;
      flex-direction: unset;
      justify-content: unset;
    }

    /* Foto: de absolute para bloco no topo */
    #hero > img {
      display: block !important;
      position: relative !important;
      width: 100% !important;
      height: 70vw !important;
      max-height: 300px !important;
      min-height: 220px !important;
      object-fit: cover !important;
      object-position: top center !important;
      opacity: 1 !important;
      mask-image: none !important;
      -webkit-mask-image: none !important;
    }

    /* Conteúdo abaixo da foto */
    .hero-content-mobile {
      display: block !important;
      padding: 36px 6% 56px;
      background: var(--dark);
      position: relative;
    }

    .hero-eyebrow { font-size: 10px; margin-bottom: 14px; }
    .hero-title { font-size: clamp(34px, 10vw, 48px); line-height: 0.95; }
    .hero-subtitle { font-size: 14px; margin-top: 20px; }
    .hero-actions { flex-direction: column; align-items: stretch; gap: 14px; margin-top: 28px; }
    .btn-primary { width: 100%; text-align: center; padding: 16px 24px; }
    .btn-ghost { justify-content: center; }
    .hero-stats { margin-top: 40px; gap: 20px; flex-wrap: wrap; }
    .stat-num { font-size: 28px; }

    section { padding: 56px 5%; }
    #problem, #formation, #method { padding: 56px 5%; gap: 36px; }
    #video-section { padding: 56px 5%; }
    #logos { padding: 56px 5%; }
    #cta-final { padding: 80px 5%; }

    .section-title { font-size: clamp(32px, 9vw, 48px); }

    /* Video */
    .video-wrapper { 
      max-width: 100% !important;
      border-radius: 8px !important;
    }
    .video-wrapper video { max-height: 70vh; }

    /* Logos 2 colunas */
    .logos-grid { grid-template-columns: repeat(2, 1fr); }
    .logo-cell { padding: 18px 12px; min-height: 72px; }
    .logo-cell svg { transform: scale(0.85); }

    /* Testimonials */
    .testimonial-card { padding: 28px 20px; }
    .testimonial-card::before { font-size: 60px; }

    /* Method/Formation images hidden on very small screens */
    .method-img { display: none; }
    #method { grid-template-columns: 1fr; }

    /* CTA final */
    #cta-final .section-title { font-size: clamp(36px, 10vw, 52px); }
    #cta-final .btn-primary { display: block; width: 100%; text-align: center; }

    /* WhatsApp button */
    .whatsapp-float { bottom: 20px; right: 20px; }
    .whatsapp-float .wpp-btn { width: 52px; height: 52px; }
    .whatsapp-float .wpp-label { display: none; }

    /* Footer */
    footer { flex-direction: column; align-items: flex-start; gap: 16px; padding: 40px 5%; }
    .footer-links { flex-wrap: wrap; gap: 16px; }
  }


  /* ======= FORMATION CREDENTIALS ======= */
  .formation-credentials {
    list-style: none;
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .formation-credentials li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: var(--gray-light);
    line-height: 1.5;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .formation-credentials li:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .formation-credentials li::before {
    content: '◆';
    color: var(--orange);
    font-size: 8px;
    flex-shrink: 0;
    margin-top: 4px;
  }


