  :root {
    --black: #ffffff;
    --dark: #f4f5f8;
    --navy: #eef1f7;
    --navy2: #e2e8f2;
    --yellow: #f5c800;
    --yellow-soft: #ffd400;
    --white: #111827;
    --gray: #5a6882;
    --card-bg: #ffffff;
    --radius: 16px;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Barlow', sans-serif; background: var(--dark); color: var(--white); overflow-x: hidden; }

  /* PRELOADER */
  .preloader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }

  .preloader.hidden {
    opacity: 0;
    visibility: hidden;
  }

  .preloader-content {
    text-align: center;
    animation: fadeInUp 0.6s ease;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .preloader-logo {
    height: 60px;
    width: auto;
    margin-bottom: 24px;
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% {
      opacity: 1;
      transform: scale(1);
    }
    50% {
      opacity: 0.8;
      transform: scale(1.05);
    }
  }

  .preloader-spinner {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
  }

  .spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: #003DA5;
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
  }

  .spinner-ring:nth-child(2) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-top-color: var(--yellow);
    animation-delay: -0.3s;
  }

  .spinner-ring:nth-child(3) {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    border-top-color: #003DA5;
    animation-delay: -0.6s;
  }

  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }

  .preloader-text {
    color: #374151;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    animation: fade 1.5s ease-in-out infinite;
  }

  @keyframes fade {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }

  .preloader-progress {
    width: 160px;
    height: 3px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
  }

  .preloader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #003DA5, var(--yellow));
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%; height: 72px;
  }
  .nav-logo img { height: 40px; width: auto; }
  .nav-links { display: flex; gap: 28px; list-style: none; }
  .nav-links a { color: #374151; font-size: 14px; font-weight: 500; text-decoration: none; letter-spacing: .5px; transition: color .2s; }
  .nav-links a:hover { color: var(--yellow); }
  .nav-cta {
    background: var(--yellow); color: var(--black);
    font-weight: 700; font-size: 14px; letter-spacing: .5px;
    padding: 10px 22px; border-radius: 8px; text-decoration: none;
    transition: background .2s, transform .15s;
  }
  .nav-cta:hover { background: var(--yellow-soft); transform: translateY(-1px); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { width: 24px; height: 2px; background: #374151; border-radius: 2px; }

  /* HERO */
  .hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 120px 5% 80px; position: relative; overflow: hidden;
    background: var(--black);
  }
  .hero-video-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0; pointer-events: none; overflow: hidden;
  }
  .hero-video-bg video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
  }
  .hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, rgba(245,200,0,0.15) 100%);
    z-index: 1;
  }
  .hero-grid {
    display: flex; flex-direction: column; align-items: flex-start;
    max-width: 720px; width: 100%; position: relative; z-index: 2;
    text-align: left;
  }

  /* Hero com imagem da moto */
  .hero-with-image {
    position: relative;
    overflow: hidden;
    min-height: 540px;
    max-height: 540px;
    padding: 80px 5% 80px;
  }
  .hero-with-image .hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 3;
  }
  .hero-with-image .hero-grid {
    max-width: 720px;
  }
  .hero-moto-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
  }
  .hero-moto-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8));
    animation: float 3s ease-in-out infinite;
    mix-blend-mode: lighten;
    transform: scale(1.2);
  }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
  }

  /* Hero Image Section */
  .hero-image-section {
    width: 100%;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 0;
    margin: 0;
    overflow: hidden;
  }
  .hero-image-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
  }

  /* Honda Fan Carousel */
  #hondaCarousel img {
    max-width: 700px !important;
  }

  @media (max-width: 900px) {
    #hondaCarousel img {
      max-width: 500px !important;
    }
  }

  @media (max-width: 600px) {
    #hondaCarousel img {
      max-width: 100% !important;
    }
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, rgba(245,200,0,0.2), rgba(255,214,0,0.15));
    border: 1.5px solid rgba(255,214,0,0.5);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    margin-bottom: 28px;
    font-size: 13px;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: .8px;
    text-transform: uppercase;
  }
  .hero-badge i {
    font-size: 12px;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
  }
  .hero h1 {
    color: #ffffff !important;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: -1px;
  }
  .hero h1 span {
    color: var(--yellow);
    background: linear-gradient(135deg, #ffd400 0%, #f5c800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
  }
  .hero p {
    font-size: 19px;
    color: #f3f4f6;
    line-height: 1.65;
    max-width: 540px;
    margin-bottom: 44px;
    font-weight: 400;
  }
  .hero p strong {
    color: var(--yellow);
    font-weight: 700;
  }
  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    background: linear-gradient(135deg, var(--yellow-soft) 0%, var(--yellow) 100%);
    color: var(--black);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: .5px;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
  }
  .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
  }
  .btn-primary:hover::before {
    left: 100%;
  }
  .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
  }
  .btn-secondary {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    padding: 18px 36px;
    border-radius: 12px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.3);
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .btn-secondary:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    background: rgba(245,200,0,0.1);
    transform: translateY(-2px);
  }
  .hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 56px;
    padding-top: 56px;
    border-top: 1px solid rgba(255,255,255,0.15);
  }
  .hero-stats > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .stat-icon {
    font-size: 22px;
    color: var(--yellow);
    margin-bottom: 4px;
  }
  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
  }
  .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
  }

  /* SECTIONS */
  section {
    padding: 100px 5%;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
    transition: background 0.6s ease-in-out;
  }

  /* Backgrounds alternados para seções */
  section:nth-child(even) {
    background: linear-gradient(180deg, #f4f5f8 0%, #eef1f7 100%);
  }

  section:nth-child(odd) {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
  }

  /* Hero com background especial */
  .hero {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%) !important;
  }

  /* Seções com cores especiais */
  #beneficios {
    background: linear-gradient(135deg, #003DA5 0%, #0052CC 100%) !important;
    color: #ffffff;
  }

  #beneficios .section-tag {
    color: #FFD600;
  }

  #beneficios .section-title,
  #beneficios .section-subtitle {
    color: #ffffff;
  }
  .section-tag { font-size: 13px; font-weight: 700; letter-spacing: 2px; color: #b89900; text-transform: uppercase; margin-bottom: 12px; }
  .section-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(32px, 5vw, 56px); font-weight: 900; text-transform: uppercase; line-height: 1; color: var(--white); }
  .section-subtitle { font-size: 17px; color: #5a6882; margin-top: 16px; max-width: 540px; margin-left: auto; margin-right: auto; }

  /* CATÁLOGO DE MOTOS */
  #catalogo {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
  }
  .catalog-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
  }
  .catalog-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .catalog-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: left;
  }
  .moto-card {
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
  }
  .moto-card:hover {
    border-color: #111827;
  }
  .moto-card-image {
    position: relative;
    background: #fafafa;
    padding: 30px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
  }
  .moto-card-image img {
    width: 100%;
    height: auto;
    max-width: 380px;
    object-fit: contain;
    transition: opacity 0.2s;
  }
  .moto-card:hover .moto-card-image img {
    opacity: 0.9;
  }
  .moto-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #111827;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 2px;
  }
  .moto-badge-premium {
    background: #003DA5;
    color: #ffffff;
  }
  .moto-card-body {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .moto-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
  }
  .moto-card-subtitle {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 400;
    margin-bottom: 12px;
  }
  .moto-card-description {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .moto-card-colors {
    margin-bottom: 16px;
  }
  .moto-card-colors-label {
    font-size: 10px;
    color: #9ca3af;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 8px;
  }
  .moto-colors-dots {
    display: flex;
    gap: 8px;
  }
  .moto-color-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.15s;
    border: 2px solid transparent;
  }
  .moto-color-dot:hover {
    border-color: #111827;
  }
  .moto-color-dot.active {
    border-color: #111827 !important;
    box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.1);
    transform: scale(1.1);
  }
  .moto-card-specs {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
  }
  .moto-spec-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    flex: 1;
  }
  .moto-spec-item i {
    font-size: 14px;
    color: #111827;
    margin-bottom: 2px;
  }
  .moto-spec-item span {
    font-size: 10px;
    color: #6b7280;
    font-weight: 500;
    text-align: left;
  }
  .moto-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #111827;
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 16px 24px;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.2s;
    margin-top: auto;
  }
  .moto-card-btn:hover {
    background: #000000;
  }
  .moto-card-btn i {
    font-size: 12px;
    transition: transform 0.2s;
  }
  .moto-card-btn:hover i {
    transform: translateX(3px);
  }

  /* ── MODELOS 360 ── */
  .modelos-section { background: #eef1f7; padding: 100px 5%; }
  .modelos-inner {
    display: grid; grid-template-columns: 1fr 2fr;
    gap: 40px; align-items: start;
  }
  .modelos-left { display: flex; flex-direction: column; }
  .modelos-main-title {
    font-family: 'Barlow', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
  }
  .modelos-main-subtitle {
    font-size: 16px;
    color: #9ca3af;
    margin-bottom: 40px;
    font-weight: 400;
  }
  .modelos-colors-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
  }
  .modelos-color-item {
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    padding: 12px;
    border-radius: 12px;
    transition: background .2s;
  }
  .modelos-color-item:hover {
    background: rgba(0, 0, 0, 0.03);
  }
  .modelos-color-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid transparent;
    transition: border-color .2s, transform .2s;
    flex-shrink: 0;
  }
  .modelos-color-item.active .modelos-color-circle {
    border-color: #2563eb;
    transform: scale(1.05);
  }
  .modelos-color-info {
    display: flex;
    flex-direction: column;
  }
  .modelos-color-name {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    letter-spacing: 0.3px;
  }
  .modelos-color-desc {
    font-size: 13px;
    color: #9ca3af;
    font-weight: 400;
  }
  .modelos-right {
    position: relative;
  }
  .v360-instruction {
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
    margin-top: 20px;
    font-weight: 400;
  }
  .modelos-desc { font-size: 15px; color: #5a6882; line-height: 1.7; margin: 16px 0 28px; max-width: 420px; }
  .modelos-color-block { margin-bottom: 24px; }
  .modelos-color-label-txt { font-size: 12px; font-weight: 700; color: #5a6882; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
  .modelos-color-label-txt span { color: #b89900; transition: opacity .2s; }
  .modelos-dots-row { display: flex; gap: 10px; align-items: center; }
  .v360-color-dot {
    width: 32px; height: 32px; border-radius: 50%; border: 2px solid transparent;
    cursor: pointer; padding: 0; transition: transform .15s, box-shadow .15s; outline: none;
  }
  .v360-color-dot:hover { transform: scale(1.15); }
  .v360-color-dot.active { box-shadow: 0 0 0 3px var(--yellow); transform: scale(1.12); }
  .modelos-specs-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 18px; }
  .modelos-spec { background: rgba(0,0,0,0.04); border-radius: 10px; padding: 12px 8px; text-align: center; border: 1px solid rgba(255,255,255,0.05); }
  .modelos-spec strong { display: block; font-family: "Barlow Condensed",sans-serif; font-size: 20px; font-weight: 900; color: #111827; }
  .modelos-spec span { font-size: 11px; color: #5a6882; margin-top: 2px; display: block; }
  .modelos-features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
  .modelos-features span { font-size: 12px; color: #5a6882; background: rgba(0,0,0,0.05); border-radius: 6px; padding: 5px 10px; }
  .modelos-cta { width: fit-content; }

  /* 360 VIEWER */fc
  .v360-wrap {
    position: relative; user-select: none;
    background: radial-gradient(ellipse at 50% 60%, rgba(200,160,0,0.1) 0%, transparent 65%);
    border-radius: 16px; padding: 16px 12px 0; cursor: grab;
  }
  .v360-wrap:active { cursor: grabbing; }
  .v360-hint.hidden { opacity: 0; }
  .v360-stage { position: relative; z-index: 1; width: 100%; max-height: 450px; aspect-ratio: 1/1; }
  .v360-frame { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: contain; display: none; filter: brightness(1) saturate(1); transition: filter .45s ease; user-select: none; -webkit-user-drag: none; }

  /* COMO FUNCIONA */
  #como-funciona { background: #f9fafb; }
  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .step {
    background: #ffffff;
    border-radius: 12px;
    padding: 36px 32px;
    border: 1px solid #e5e7eb;
    position: relative;
    transition: all 0.2s;
  }
  .step:hover {
    border-color: #FFD600;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  }
  .step-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #003DA5;
    background: #f0f4ff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  .step-icon {
    width: 56px;
    height: 56px;
    background: #003DA5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 20px;
  }
  .step h3 {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #111827;
  }
  .step p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
  }

  /* PLANOS */
  #planos { background: #ffffff; }
  .plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 64px;
    align-items: start;
    text-align: left;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Single plan layout (for pages with only one plan) */
  .plans-single-container {
    display: flex;
    justify-content: center;
    margin-top: 64px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .plan-card { background: var(--card-bg); border-radius: var(--radius); border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 2px 16px rgba(0,0,0,0.06); overflow: hidden; transition: transform .2s; }
  .plan-card:hover { transform: translateY(-6px); }
  .plan-card.featured { border-color: var(--yellow); box-shadow: 0 0 0 2px var(--yellow), 0 24px 48px rgba(200,160,0,0.15); transform: scale(1.03); }
  .plan-card.featured:hover { transform: scale(1.03) translateY(-6px); }
  .plan-badge { background: var(--yellow); color: var(--black); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-align: center; padding: 8px; text-transform: uppercase; }
  .plan-body { padding: 32px; }
  .plan-name { font-size: 13px; font-weight: 700; color: #a08000; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
  .plan-model { font-size: 14px; color: #5a6882; margin-bottom: 20px; }
  .plan-price { font-family: 'Barlow Condensed', sans-serif; font-size: 52px; font-weight: 900; color: #111827; line-height: 1; }
  .plan-price sup { font-size: 22px; vertical-align: top; margin-top: 10px; }
  .plan-freq { font-size: 14px; color: #5a6882; }
  .plan-caucao { font-size: 13px; color: #5a6882; margin-top: 8px; }
  .plan-caucao small { display: block; font-size: 11px; color: #8a9baf; margin-top: 4px; }
  .plan-features { margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
  .plan-feat { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #374151; }
  .plan-feat::before { content: '✓'; width: 20px; height: 20px; border-radius: 50%; background: rgba(200,160,0,0.15); color: #8a7000; font-size: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 900; }
  .plan-cta { display: block; text-align: center; background: var(--yellow); color: var(--black); font-weight: 700; font-size: 15px; padding: 16px; border-radius: 10px; text-decoration: none; transition: all .2s; margin-top: 8px; }
  .plan-cta:hover { background: var(--yellow-soft); transform: translateY(-1px); }
  .plan-card:not(.featured) .plan-cta { background: transparent; color: var(--yellow); border: 1.5px solid var(--yellow); }
  .plan-card:not(.featured) .plan-cta:hover { background: rgba(255,214,0,0.1); }

  /* BENEFICIOS */
  #beneficios {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
  }
  .benefits-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
  }
  .benefits-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .benefits-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    text-align: left;
  }
  .benefit-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow), var(--yellow-soft));
    transform: scaleX(0);
    transition: transform 0.3s;
  }
  .benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  }
  .benefit-card:hover::before {
    transform: scaleX(1);
  }
  .benefit-icon-wrapper {
    margin-bottom: 24px;
  }
  .benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    position: relative;
    transition: transform 0.3s;
  }
  .benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
  }
  .benefit-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
  }
  /* Icon colors for each benefit */
  .benefit-card:nth-child(1) .benefit-icon {
    background: rgba(245,200,0,0.15);
    color: #f5c800;
  }
  .benefit-card:nth-child(1) .benefit-icon::before {
    background: var(--yellow);
  }
  .benefit-card:nth-child(2) .benefit-icon {
    background: rgba(0,61,165,0.15);
    color: #003DA5;
  }
  .benefit-card:nth-child(2) .benefit-icon::before {
    background: #003DA5;
  }
  .benefit-card:nth-child(3) .benefit-icon {
    background: rgba(245,200,0,0.15);
    color: #f5c800;
  }
  .benefit-card:nth-child(3) .benefit-icon::before {
    background: var(--yellow);
  }
  .benefit-card:nth-child(4) .benefit-icon {
    background: rgba(0,61,165,0.15);
    color: #003DA5;
  }
  .benefit-card:nth-child(4) .benefit-icon::before {
    background: #003DA5;
  }
  .benefit-card:nth-child(5) .benefit-icon {
    background: rgba(245,200,0,0.15);
    color: #f5c800;
  }
  .benefit-card:nth-child(5) .benefit-icon::before {
    background: var(--yellow);
  }
  .benefit-card:nth-child(6) .benefit-icon {
    background: rgba(0,61,165,0.15);
    color: #003DA5;
  }
  .benefit-card:nth-child(6) .benefit-icon::before {
    background: #003DA5;
  }
  .benefit-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .benefit-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    max-width: 280px;
  }

  /* ========================
     TEAM GALLERY SECTION
     ======================== */

  #equipe {
    background: #ffffff;
    padding: 100px 5%;
  }

  #equipe .section-tag {
    color: #b89900;
  }

  #equipe .section-title,
  #equipe .section-subtitle {
    color: #111827;
  }

  .team-gallery-widget {
    max-width: 1400px;
    margin: 60px auto 0;
    position: relative;
  }

  /* Team Carousel */
  .team-carousel {
    position: relative;
    overflow: hidden;
    padding: 0 4px;
  }

  .team-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Team Card */
  .team-card {
    flex: 0 0 calc(33.333% - 16px);
    aspect-ratio: 4/3;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #f3f4f6;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .team-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--yellow);
  }

  .team-card:hover img {
    transform: scale(1.1);
  }

  /* Team Overlay */
  .team-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 61, 165, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .team-card:hover .team-overlay {
    opacity: 1;
  }

  .team-overlay i {
    font-size: 48px;
    color: #ffffff;
    transform: scale(0.8);
    transition: transform 0.3s ease;
  }

  .team-card:hover .team-overlay i {
    transform: scale(1);
  }

  /* TESTIMONIALS */
  #depoimentos { background: #eef1f7; }
  .testimonials-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  .testi { background: var(--card-bg); border-radius: var(--radius); padding: 28px; border: 1px solid rgba(0,0,0,0.07); box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
  .testi-stars { color: #e6b800; font-size: 16px; margin-bottom: 14px; }
  .testi-text { font-size: 14px; color: #5a6882; line-height: 1.6; margin-bottom: 18px; }
  .testi-name { font-weight: 700; font-size: 14px; color: #111827; }
  .testi-date { font-size: 12px; color: #9ca3af; margin-top: 2px; }

  /* CTA BANNER */
  .cta-banner { background: var(--yellow); padding: 80px 5%; text-align: center; }
  .cta-banner h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(32px, 5vw, 60px); font-weight: 900; text-transform: uppercase; color: var(--black); margin-bottom: 24px; }
  .cta-banner p { font-size: 18px; color: rgba(0,0,0,0.6); margin-bottom: 36px; }
  .btn-dark { background: var(--black); color: var(--yellow); font-weight: 700; font-size: 15px; letter-spacing: .5px; padding: 18px 40px; border-radius: 10px; text-decoration: none; display: inline-flex; align-items: center; gap: 10px; transition: all .2s; }
  .btn-dark:hover { background: #1a1a1a; transform: translateY(-2px); }

  /* CADASTRO */
  #cadastro { background: #f4f5f8; }
  .form-wrap { max-width: 520px; margin: 60px auto 0; background: var(--card-bg); border-radius: var(--radius); padding: 48px; border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
  .form-group { margin-bottom: 20px; }
  .form-group label { display: block; font-size: 13px; font-weight: 600; color: #374151; margin-bottom: 8px; letter-spacing: .5px; }
  .form-group input { width: 100%; background: #f8f9fc; border: 1px solid rgba(0,0,0,0.12); border-radius: 8px; padding: 14px 16px; font-size: 15px; color: var(--white); font-family: inherit; transition: border-color .2s; outline: none; }
  .form-group input:focus { border-color: var(--yellow); }
  .form-group input::placeholder { color: #9ca3af; }
  .form-submit { width: 100%; background: var(--yellow); color: var(--black); font-weight: 700; font-size: 16px; letter-spacing: .5px; padding: 18px; border-radius: 10px; border: none; cursor: pointer; font-family: inherit; transition: all .2s; margin-top: 8px; }
  .form-submit:hover { background: var(--yellow-soft); transform: translateY(-1px); }
  .form-or { text-align: center; color: #9ca3af; font-size: 14px; margin: 20px 0; display: flex; align-items: center; gap: 12px; }
  .form-or::before, .form-or::after { content: ''; flex: 1; height: 1px; background: rgba(0,0,0,0.1); }
  .btn-whatsapp { display: flex; align-items: center; justify-content: center; gap: 10px; background: #25D366; color: #fff; font-weight: 700; font-size: 15px; padding: 16px; border-radius: 10px; text-decoration: none; transition: all .2s; }
  .btn-whatsapp:hover { background: #1fbd5a; transform: translateY(-1px); }

  /* FAQ */
  #faq { background: #ffffff; }
  .faq-list { max-width: 760px; margin: 60px auto 0; display: flex; flex-direction: column; gap: 12px; text-align: left; }
  .faq-item { background: var(--card-bg); border-radius: var(--radius); border: 1px solid rgba(0,0,0,0.08); overflow: hidden; box-shadow: 0 1px 8px rgba(0,0,0,0.05); }
  .faq-q { padding: 22px 28px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 16px; font-weight: 600; color: #111827; user-select: none; }
  .faq-q span { color: #b89900; font-size: 20px; line-height: 1; transition: transform .3s; }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s; font-size: 15px; color: #5a6882; line-height: 1.6; padding: 0 28px; }
  .faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }
  .faq-item.open .faq-q span { transform: rotate(45deg); }

  /* CONTACT */
  #contato {
    background: #f9fafb;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 0 !important;
  }
  .contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
  }
  .contact-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .contact-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: left;
    margin-bottom: 48px;
  }
  .contact-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    border: 2px solid transparent;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  /* Efeito de brilho ao passar o mouse */
  .contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
  }

  .contact-card:hover::before {
    left: 100%;
  }

  .contact-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  }
  .contact-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }

  .contact-card:hover .contact-card-icon {
    transform: scale(1.1) rotate(5deg);
  }

  /* Círculo externo pulsante */
  .contact-card-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    opacity: 0.15;
    z-index: -1;
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }

  @keyframes pulse-ring {
    0%, 100% {
      transform: scale(1);
      opacity: 0.15;
    }
    50% {
      transform: scale(1.1);
      opacity: 0.25;
    }
  }
  /* WhatsApp - Destaque especial */
  .contact-card-whatsapp {
    border: 2px solid rgba(37,211,102,0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
  }

  .contact-card-whatsapp .contact-card-icon {
    background: linear-gradient(135deg, rgba(37,211,102,0.2) 0%, rgba(31,189,90,0.15) 100%);
    color: #25D366;
  }
  .contact-card-whatsapp .contact-card-icon::before {
    background: linear-gradient(135deg, #25D366, #1fbd5a);
  }
  .contact-card-whatsapp:hover {
    border-color: #25D366;
    box-shadow: 0 20px 60px rgba(37,211,102,0.25);
  }
  .contact-card-email .contact-card-icon {
    background: rgba(59,130,246,0.15);
    color: #3b82f6;
  }
  .contact-card-email .contact-card-icon::before {
    background: #3b82f6;
  }
  .contact-card-email:hover {
    border-color: #3b82f6;
  }
  .contact-card-location .contact-card-icon {
    background: rgba(239,68,68,0.15);
    color: #ef4444;
  }
  .contact-card-location .contact-card-icon::before {
    background: #ef4444;
  }
  .contact-card-location:hover {
    border-color: #ef4444;
  }
  .contact-card-instagram .contact-card-icon {
    background: linear-gradient(135deg, rgba(225,48,108,0.15), rgba(193,53,132,0.15));
    color: #e1306c;
  }
  .contact-card-instagram .contact-card-icon::before {
    background: linear-gradient(135deg, #e1306c, #c13584);
  }
  .contact-card-instagram:hover {
    border-color: #e1306c;
  }
  .contact-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: #111827;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .contact-card-label {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .contact-card-value {
    font-size: 16px;
    color: #1f2937;
    font-weight: 700;
    margin-bottom: 24px;
    text-decoration: none;
    line-height: 1.6;
    transition: all 0.3s;
  }
  .contact-card-value:hover {
    color: #003DA5;
    transform: scale(1.05);
  }
  .contact-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }

  .contact-card-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
  }

  .contact-card-btn:hover::before {
    width: 300px;
    height: 300px;
  }

  .contact-card-btn i {
    transition: transform 0.3s;
  }

  .contact-card-btn:hover i {
    transform: scale(1.2);
  }

  .contact-card-whatsapp .contact-card-btn {
    background: linear-gradient(135deg, #25D366 0%, #1fbd5a 100%);
    color: #ffffff;
  }
  .contact-card-whatsapp .contact-card-btn:hover {
    background: linear-gradient(135deg, #1fbd5a 0%, #128C7E 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  }
  .contact-card-email .contact-card-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
  }
  .contact-card-email .contact-card-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59,130,246,0.4);
  }
  .contact-card-location .contact-card-btn {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
  }
  .contact-card-location .contact-card-btn:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239,68,68,0.4);
  }
  .contact-card-instagram .contact-card-btn {
    background: linear-gradient(135deg, #e1306c 0%, #c13584 100%);
    color: #ffffff;
  }
  .contact-card-instagram .contact-card-btn:hover {
    background: linear-gradient(135deg, #c13584 0%, #833ab4 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225,48,108,0.4);
  }
  .contact-info-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: left;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  .contact-info-item i {
    font-size: 28px;
    color: var(--yellow);
    margin-top: 4px;
    flex-shrink: 0;
  }
  .contact-info-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
  }
  .contact-info-item p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
  }

  /* FOOTER */
  footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
  }
  footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  }
  .footer-main {
    padding: 80px 5% 30px;
    position: relative;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
  }
  .footer-col {
    display: flex;
    flex-direction: column;
  }
  .footer-logo {
    margin-bottom: 24px;
  }
  .footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(1.2);
  }
  .footer-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 28px;
  }
  .footer-social {
    display: flex;
    gap: 12px;
  }
  .footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(245,200,0,0.1);
    border: 1.5px solid rgba(245,200,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-size: 18px;
    transition: all 0.3s;
  }
  .footer-social a:hover {
    background: var(--yellow);
    color: #0f172a;
    border-color: var(--yellow);
    transform: translateY(-3px);
  }
  .footer-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
  }
  .footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--yellow);
  }
  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .footer-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s;
  }
  .footer-links li a i {
    font-size: 10px;
    color: var(--yellow);
    opacity: 0.6;
    transition: all 0.2s;
  }
  .footer-links li a:hover {
    color: var(--yellow);
    transform: translateX(5px);
  }
  .footer-links li a:hover i {
    opacity: 1;
  }
  .footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #94a3b8;
  }
  .footer-contact li i {
    font-size: 16px;
    color: var(--yellow);
    margin-top: 2px;
    width: 20px;
    flex-shrink: 0;
  }
  .footer-contact li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-contact li a:hover {
    color: var(--yellow);
  }
  .footer-bottom {
    background: rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 24px 5%;
  }
  .footer-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-copy {
    font-size: 14px;
    color: #64748b;
  }
  .footer-copy strong {
    color: var(--yellow);
    font-weight: 600;
  }
  .footer-cnpj {
    font-size: 13px;
    color: #64748b;
    font-family: 'Courier New', monospace;
  }

  /* FLOATING WA */
  .wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; background: #25D366; width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.15); transition: all .2s; text-decoration: none; }
  .wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 16px rgba(0,0,0,0.2); }
  .wa-float i { font-size: 40px; color: #ffffff; }
  .wa-float svg { width: 48px; height: 48px; fill: #ffffff !important; }
  .wa-float svg path { fill: #ffffff !important; }

  /* NOVAS CLASSES PARA RESPONSIVIDADE */
  .specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }

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

  .color-card-image {
    padding: 32px 24px;
    text-align: center;
  }

  /* PARALLAX - Preparação dos elementos */
  @media (min-width: 769px) {
    /* Hero - permitir movimento do background */
    .hero {
      overflow: hidden;
    }

    /* Cards e elementos com parallax */
    .beneficio-card,
    .moto-card,
    .cta-banner {
      transition: transform 0.1s linear;
    }

    /* Suavizar transições */
    .hero video {
      transition: transform 0.1s linear;
    }
  }

  /* Mobile - desabilitar parallax */
  @media (max-width: 768px) {
    .hero video,
    .beneficio-card,
    .moto-card,
    .cta-banner {
      transform: none !important;
    }
  }

  /* BREADCRUMBS */
  .breadcrumbs {
    background: #f9fafb;
    padding: 16px 5%;
    border-bottom: 1px solid #e5e7eb;
  }

  .breadcrumbs-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .breadcrumb-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
  }

  .breadcrumb-item i.fa-home {
    font-size: 13px;
  }

  .breadcrumb-item:hover {
    color: var(--yellow);
  }

  .breadcrumb-item.active {
    color: #111827;
    font-weight: 600;
  }

  .breadcrumb-separator {
    font-size: 10px;
    color: #d1d5db;
  }

  /* TOUCH DEVICES - Remover hover effects */
  @media (hover: none) {
    .btn-primary:hover::before {
      left: 0;
    }
    .btn-secondary:hover {
      border-color: var(--yellow);
      transform: none;
    }
    .moto-card:hover {
      border-color: #e5e7eb;
      transform: none;
    }
    .color-card:hover {
      border-color: #e5e7eb !important;
      transform: none;
      box-shadow: none;
    }
  }

  /* MOBILE */
  @media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    nav.open .nav-links { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: rgba(255,255,255,0.98); padding: 24px 5%; border-bottom: 1px solid rgba(0,0,0,0.08); gap: 20px; }
    nav.open .nav-cta { display: block; margin: 0 5% 24px; text-align: center; }

    .hero { padding: 100px 5% 60px; }
    .hero-grid { align-items: flex-start; text-align: left; max-width: 100%; }
    .hero-badge { margin: 0 0 24px; }
    .hero h1 { font-size: clamp(36px, 10vw, 64px); line-height: 1.1; }
    .hero p { margin: 0 0 36px; font-size: 17px; max-width: 100%; }
    .hero-btns { justify-content: flex-start; width: 100%; }
    .hero-btns a { flex: 1; min-width: 200px; justify-content: center; }
    .hero-stats {
      justify-content: flex-start;
      gap: 32px;
      flex-wrap: wrap;
      margin-top: 40px;
      padding-top: 40px;
    }
    .hero-stats > div {
      align-items: flex-start;
      text-align: left;
    }

    /* Hero com imagem - mobile */
    .hero-moto-image img {
      object-position: center center;
      opacity: 0.3;
    }

    .steps, .plans-grid, .testimonials-row { grid-template-columns: 1fr; }
    .steps { gap: 24px; }
    .step { padding: 32px 28px; }
    .step-num { width: 28px; height: 28px; font-size: 13px; }
    .step-icon { width: 44px; height: 44px; font-size: 20px; }
    .step h3 { font-size: 18px; }
    .step p { font-size: 14.5px; }
    .plan-card.featured { transform: scale(1); }
    .plans-single-container { max-width: 100%; padding: 0 5%; }
    .form-wrap { padding: 32px 24px; }
    .modelos-inner { grid-template-columns: 1fr; }
    .modelos-left { order: 2; }
    .modelos-specs-grid { grid-template-columns: repeat(2,1fr); }

    /* Páginas de motos - mobile */
    .hero-image-section {
      display: none !important;
    }
    .modelos-section {
      padding: 60px 5%;
    }
    .modelos-colors-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }
    .modelos-color-item {
      padding: 12px;
    }
    .v360-instruction {
      font-size: 13px;
    }

    /* Corrigir grids inline - tablet */
    .specs-grid {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 20px !important;
    }

    .diferenciais-grid {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 24px !important;
    }

    .color-grid {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 20px !important;
    }

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

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

    .contact-cards-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .contact-info-box {
      grid-template-columns: 1fr;
      gap: 24px;
      padding: 32px 24px;
    }

    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
    .footer-about {
      grid-column: 1 / -1;
    }
  }

  @media (max-width: 600px) {
    .hero-btns { flex-direction: column; gap: 12px; }
    .hero-btns a { width: 100%; min-width: auto; }
    .hero-stats { gap: 24px; }
    .stat-icon { font-size: 18px; }
    .stat-num { font-size: 20px; }

    .contact-cards-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }
    .contact-card {
      padding: 28px 20px;
    }
    .contact-card-icon {
      width: 64px;
      height: 64px;
      font-size: 28px;
    }

    .benefits-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }
    .benefit-card {
      padding: 32px 24px;
    }
    .benefit-icon {
      width: 72px;
      height: 72px;
      font-size: 28px;
    }

    .catalog-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    /* Páginas de motos - mobile pequeno */
    .hero-image-section {
      display: none !important;
    }
    .modelos-section {
      padding: 40px 5%;
    }
    .modelos-colors-list {
      grid-template-columns: 1fr;
      gap: 10px;
    }
    .modelos-color-item {
      padding: 10px;
      font-size: 14px;
    }
    .modelos-main-title {
      font-size: 28px;
    }
    .modelos-main-subtitle {
      font-size: 15px;
    }

    /* Corrigir grids inline - overflow horizontal */
    .specs-grid,
    .diferenciais-grid,
    .color-grid {
      grid-template-columns: 1fr !important;
      gap: 16px !important;
    }

    .spec-box,
    .color-card {
      max-width: 100% !important;
    }

    * {
      max-width: 100vw;
    }

    .steps {
      gap: 20px;
      margin-top: 40px;
    }
    .step {
      padding: 28px 24px;
    }
    .step-num {
      width: 26px;
      height: 26px;
      font-size: 12px;
    }
    .step-icon {
      width: 40px;
      height: 40px;
      font-size: 18px;
    }
    .step h3 {
      font-size: 17px;
    }
    .step p {
      font-size: 14px;
    }

    .footer-main { padding: 60px 5% 30px; }
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 36px;
    }
    .footer-about {
      grid-column: auto;
    }
    .footer-bottom-inner {
      flex-direction: column;
      text-align: center;
      gap: 8px;
    }
  }

/* Font Awesome Icon Styling */
.step-icon i { font-size: 24px; }
.benefit-icon i { font-size: 32px; }
.contact-icon i { font-size: 22px; }
.nav-cta i, .form-submit i { margin-left: 8px; font-size: 13px; }
.btn-primary i, .btn-dark i { margin-left: 8px; font-size: 15px; }

/* Elfsight Google Reviews Widget Styling */
.elfsight-app-45f99c5d-0d79-41d2-b38e-40d26da9eca8 {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 20px;
}

#depoimentos .section-subtitle {
  margin-bottom: 20px;
}

/* Include Custom Google Reviews CSS */
/* Custom Google Reviews Widget - SEM marca d'água! */

.google-reviews-widget {
  max-width: 1200px;
  margin: 40px auto;
  padding: 48px 72px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 2px solid #f3f4f6;
}

.reviews-title {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.google-badge {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.google-logo {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.google-logo .google-g { color: #4285f4; }
.google-logo .google-o1 { color: #ea4335; }
.google-logo .google-o2 { color: #fbbc04; }
.google-logo .google-g2 { color: #4285f4; }
.google-logo .google-l { color: #34a853; }
.google-logo .google-e { color: #ea4335; }

.rating-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.rating-number {
  font-size: 32px;
  font-weight: 800;
  color: #1f2937;
  line-height: 1;
}

.rating-stars {
  color: #fbbc04;
  font-size: 20px;
  display: flex;
  gap: 2px;
}

.rating-count {
  color: #6b7280;
  font-size: 15px;
  font-weight: 500;
}

.review-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #003DA5;
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 61, 165, 0.25);
}

.review-button:hover {
  background: #0052CC;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 61, 165, 0.3);
}

.reviews-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 4px;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  min-height: 220px;
  border: 2px solid #f3f4f6;
  transition: all 0.3s;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: #FFD600;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 72px;
  font-weight: 900;
  color: #f3f4f6;
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.5;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.google-verified {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.google-verified i {
  color: #4285f4;
  font-size: 12px;
}

.review-info {
  flex: 1;
  min-width: 0;
}

.review-author {
  font-weight: 700;
  font-size: 16px;
  color: #111827;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-date {
  font-size: 13px;
  color: #9ca3af;
  font-weight: 500;
}

.review-stars {
  color: #fbbc04;
  font-size: 18px;
  margin-bottom: 14px;
  display: flex;
  gap: 2px;
  position: relative;
  z-index: 1;
}

.review-text {
  color: #374151;
  font-size: 14.5px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #003DA5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0, 61, 165, 0.2);
  transition: all 0.3s;
  border: none;
  color: #ffffff;
  font-size: 14px;
  z-index: 10;
}

.carousel-nav:hover {
  background: #0052CC;
  box-shadow: 0 4px 12px rgba(0, 61, 165, 0.3);
  transform: translateY(-50%) scale(1.05);
}

.carousel-nav.prev { left: 4px; }
.carousel-nav.next { right: 4px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot:hover {
  background: #9ca3af;
}

.carousel-dot.active {
  background: #003DA5;
  width: 32px;
  border-radius: 5px;
}

/* Responsive */
@media (max-width: 900px) {
  .google-reviews-widget {
    padding: 32px 24px;
  }

  .reviews-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
  }

  .review-card {
    flex: 0 0 calc(50% - 12px);
  }

  .carousel-nav.prev { left: 0; }
  .carousel-nav.next { right: 0; }

  /* Team Gallery Responsive - Tablet */
  .team-card {
    flex: 0 0 calc(50% - 12px);
  }

  .team-carousel {
    padding: 0 2px;
  }

  .lightbox-prev {
    left: 20px;
  }

  .lightbox-next {
    right: 20px;
  }

  .lightbox-nav {
    width: 50px;
    height: 50px;
  }

}

@media (max-width: 600px) {
  .google-reviews-widget {
    padding: 24px 12px;
    border-radius: 20px;
    margin: 20px 0;
  }

  .reviews-carousel {
    padding: 0;
    margin: 0;
  }

  .reviews-header {
    flex-direction: column;
    align-items: center;
    margin-bottom: 28px;
    text-align: center;
  }

  .reviews-title {
    font-size: 24px;
  }

  .google-badge {
    width: 100%;
    align-items: center;
  }

  .rating-summary {
    padding: 12px 16px;
    gap: 10px;
    flex-wrap: wrap;
  }

  .rating-number {
    font-size: 32px;
    line-height: 1;
  }

  .rating-stars {
    font-size: 18px;
    gap: 1px;
  }

  .rating-count {
    font-size: 14px;
  }

  .review-button {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
  }

  .reviews-track {
    gap: 12px;
  }

  .review-card {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 20px 16px;
    min-height: auto;
  }

  .review-card::before {
    font-size: 48px;
    top: 20px;
    right: 24px;
    opacity: 0.08;
  }

  .reviewer-name {
    font-size: 16px;
  }

  .review-date {
    font-size: 13px;
  }

  .review-text {
    font-size: 15px;
    line-height: 1.7;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .carousel-dots {
    gap: 8px;
    margin-top: 24px;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
  }

  .carousel-nav {
    display: none;
  }

  .rating-summary {
    width: 100%;
    justify-content: center;
  }

  /* Team Gallery Responsive - Mobile */
  #equipe {
    padding: 60px 5%;
  }

  .team-gallery-widget {
    margin: 40px auto 0;
  }

  .team-carousel {
    padding: 0;
    margin: 0 -4px;
  }

  .team-track {
    gap: 16px;
  }

  .team-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .team-overlay i {
    font-size: 36px;
  }

  /* Hide carousel navigation on mobile for team gallery */
  .team-carousel .carousel-nav {
    display: none;
  }

  /* Lightbox adjustments for mobile */
  .lightbox-content img {
    max-height: 70vh;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }

  .lightbox-close i {
    font-size: 20px;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-counter span {
    padding: 8px 16px;
    font-size: 14px;
  }

}

/* ========================
   SCROLL ANIMATIONS
   ======================== */

/* Animações de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Estado inicial das seções (antes de aparecer) */
section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Seção visível (animação ativada) */
section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animações específicas para elementos */
.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(40px);
  animation: slideInRight 0.8s ease-out forwards;
}

/* Delays escalonados para múltiplos elementos */
.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

/* Hero sempre visível (sem animação de entrada) */
section.hero {
  opacity: 1;
  transform: translateY(0);
}

/* Transições suaves entre seções */
section + section {
  position: relative;
}

/* Efeito de paralaxe suave em backgrounds */
@media (prefers-reduced-motion: no-preference) {
  section {
    scroll-margin-top: 72px;
  }
}

/* ========================
   MODAL DE INTERESSE
   ======================== */

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

.modal-overlay.active {
  display: flex;
}

.modal-container {
  background: #ffffff;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 40px 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #9ca3af;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}

.modal-close:hover {
  background: #f3f4f6;
  color: #111827;
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 32px;
}

.modal-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #111827;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.modal-subtitle {
  font-size: 16px;
  color: #6b7280;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input {
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  color: #111827;
  transition: all 0.3s;
  font-family: 'Barlow', sans-serif;
}

.form-group input:focus {
  outline: none;
  border-color: #003DA5;
  box-shadow: 0 0 0 4px rgba(0, 61, 165, 0.1);
}

.interesse-info {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 2px solid #93c5fd;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1e40af;
  font-size: 15px;
  font-weight: 600;
}

.interesse-info i {
  font-size: 20px;
  flex-shrink: 0;
}

.modal-submit {
  background: linear-gradient(135deg, #25D366 0%, #1fbd5a 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.modal-submit:hover {
  background: linear-gradient(135deg, #1fbd5a 0%, #128C7E 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.modal-submit i {
  font-size: 20px;
}

@media (max-width: 600px) {
  .modal-container {
    padding: 32px 24px;
    width: 95%;
  }

  .modal-title {
    font-size: 28px;
  }

  .modal-submit {
    padding: 14px 20px;
    font-size: 15px;
  }
}

/* ========================
   TEAM LIGHTBOX MODAL
   ======================== */

.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Lightbox Close Button */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s ease;
}

.lightbox-close i {
  font-size: 24px;
  color: #ffffff;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* Lightbox Navigation Arrows */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.3s ease;
}

.lightbox-nav i {
  font-size: 24px;
  color: #ffffff;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
  left: 40px;
}

.lightbox-next {
  right: 40px;
}

/* Lightbox Counter */
.lightbox-counter {
  margin-top: 20px;
  text-align: center;
}

.lightbox-counter span {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ================================
   ENHANCED FORM STYLES
   ================================ */

/* Form Rows (side-by-side fields) */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* Form Groups - Updated for wider compatibility */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Input Fields - Enhanced for both regular forms and modals */
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Barlow', sans-serif;
  transition: all 0.2s ease;
  background: #ffffff;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #003DA5;
  box-shadow: 0 0 0 4px rgba(0, 61, 165, 0.1);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Error States */
.form-group input.input-error,
.form-group select.input-error {
  border-color: #ef4444;
  background-color: #fef2f2;
}

.form-error {
  display: none;
  font-size: 13px;
  color: #ef4444;
  font-weight: 500;
  margin-top: 4px;
}

.form-error:before {
  content: '⚠ ';
}

/* Form Status Messages */
.form-status {
  display: none;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
}

.form-status.success {
  background: #d1fae5;
  color: #065f46;
  border: 2px solid #10b981;
}

.form-status.error {
  background: #fee2e2;
  color: #991b1b;
  border: 2px solid #ef4444;
}

/* Submit Button Loading State */
.form-submit .btn-loading,
.modal-submit .btn-loading {
  display: none;
}

.form-submit:disabled,
.modal-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Subscribe CTA Section */
.subscribe-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f8f9fc 0%, #e5e9f2 100%);
  border-radius: 20px;
}

.btn-subscribe {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-soft) 100%);
  color: var(--black);
  font-size: 20px;
  font-weight: 700;
  padding: 20px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 204, 0, 0.3);
}

.btn-subscribe:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 204, 0, 0.5);
}

.btn-subscribe i {
  font-size: 24px;
}

.subscribe-hint {
  margin-top: 16px;
  font-size: 15px;
  color: #6b7280;
  font-weight: 500;
}

.subscribe-hint i {
  color: #003DA5;
  margin-right: 6px;
}

/* Modal Form Specific Styles */
.modal-form .form-row {
  margin-bottom: 16px;
}

.modal-form .modal-submit {
  width: 100%;
  margin-top: 24px;
}

/* ================================
   APP DOWNLOAD SECTION
   ================================ */

/* Main App Download Section */
.app-download-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fc 0%, #e5ebf5 100%);
  position: relative;
  overflow: hidden;
}

.app-download-section .section-tag {
  color: #b89900;
}

.app-download-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.app-download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.app-download-content {
  position: relative;
  z-index: 2;
}

.app-download-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  color: #111827;
  margin: 16px 0 20px;
  line-height: 1.1;
}

.app-download-desc {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 32px;
  line-height: 1.6;
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.app-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #374151;
  font-weight: 500;
}

.app-feature-item i {
  color: var(--yellow);
  font-size: 20px;
}

/* App Download Badges */
.app-download-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.app-badge-large {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: #001f5c;
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 31, 92, 0.2);
}

.app-badge-large:hover {
  background: #003DA5;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 61, 165, 0.3);
}

.app-badge-large i {
  font-size: 36px;
}

.app-badge-large .badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.app-badge-large .badge-label {
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.8;
  letter-spacing: 0.5px;
}

.app-badge-large .badge-store {
  font-size: 18px;
  font-weight: 700;
}

/* App Screenshot */
.app-download-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.app-screenshot {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 600px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.app-screenshot:hover {
  transform: scale(1.02);
}

/* Footer App Download */
.footer-app-download {
  margin-top: 16px;
}

.footer-app-title {
  font-size: 16px;
  font-weight: 700;
  color: #FFD600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.app-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #001f5c;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  max-width: 180px;
}

.app-badge:hover {
  background: #003DA5;
  transform: translateX(4px);
}

.app-badge i {
  font-size: 28px;
}

.app-badge .badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}

.app-badge .badge-label {
  font-size: 10px;
  text-transform: uppercase;
  opacity: 0.8;
  letter-spacing: 0.3px;
}

.app-badge .badge-store {
  font-size: 14px;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 968px) {
  .app-download-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .app-download-title {
    font-size: 32px;
  }

  .app-download-visual {
    order: -1;
  }

  .app-screenshot {
    max-height: 480px;
  }
}

@media (max-width: 640px) {
  .app-download-section {
    padding: 60px 20px;
  }

  .app-download-title {
    font-size: 28px;
  }

  .app-download-desc {
    font-size: 16px;
  }

  .app-download-badges {
    flex-direction: column;
  }

  .app-badge-large {
    width: 100%;
    justify-content: center;
  }

  .app-screenshot {
    max-height: 400px;
  }
}
