/* ============================================
       CM REGULADORA - DESIGN SYSTEM
       Approach: Clean Professional
       Colors: #C41230 (red), #1A1A2E (dark), #FFF (white)
       Fonts: Montserrat (headings), Open Sans (body)
    ============================================ */

    :root {
      --cm-red: #C41230;
      --cm-red-dark: #A00F28;
      --cm-red-light: #E8163A;
      --cm-dark: #1A1A2E;
      --cm-dark-lighter: #2D2D44;
      --cm-white: #FFFFFF;
      --cm-gray-50: #F8F9FA;
      --cm-gray-100: #F1F3F5;
      --cm-gray-200: #E9ECEF;
      --cm-gray-300: #DEE2E6;
      --cm-gray-400: #ADB5BD;
      --cm-gray-500: #868E96;
      --cm-gray-600: #495057;
      --cm-gray-700: #343A40;
      --cm-gray-800: #212529;
      --cm-text: #1F2937;
      --font-heading: 'Montserrat', sans-serif;
      --font-body: 'Open Sans', sans-serif;
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
      --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
      --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
      --shadow-xl: 0 12px 40px rgba(0,0,0,0.15);
      --radius: 8px;
      --radius-lg: 12px;
      --transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
      --transition-fast: 0.2s cubic-bezier(0.23, 1, 0.32, 1);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      color: var(--cm-text);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: var(--font-heading);
      font-weight: 700;
      line-height: 1.2;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* ============================================
       UTILITY CLASSES
    ============================================ */
    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 16px;
    }

    @media (min-width: 480px) {
      .container { padding: 0 20px; }
    }

    @media (min-width: 768px) {
      .container { padding: 0 32px; }
    }

    @media (min-width: 1024px) {
      .container { padding: 0 40px; }
    }

    .section-padding {
      padding: 60px 0;
    }

    @media (min-width: 640px) {
      .section-padding { padding: 80px 0; }
    }

    @media (min-width: 1024px) {
      .section-padding { padding: 100px 0; }
    }

    .section-header {
      text-align: center;
      margin-bottom: 40px;
    }

    @media (min-width: 768px) {
      .section-header { margin-bottom: 60px; }
    }

    .section-subtitle {
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--cm-red);
      margin-bottom: 12px;
    }

    @media (min-width: 768px) {
      .section-subtitle { font-size: 13px; }
    }

    .section-title {
      font-size: 24px;
      font-weight: 800;
      color: var(--cm-dark);
      margin-bottom: 16px;
    }

    @media (min-width: 640px) {
      .section-title { font-size: 28px; }
    }

    @media (min-width: 768px) {
      .section-title { font-size: 36px; }
    }

    .section-description {
      font-size: 14px;
      color: var(--cm-gray-600);
      margin-top: 12px;
    }

    @media (min-width: 768px) {
      .section-description { font-size: 16px; }
    }

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

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

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

    @keyframes scaleIn {
      from {
        opacity: 0;
        transform: scale(0.95);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

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

    .animate-on-scroll {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1),
                  transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .animate-on-scroll.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .animate-on-scroll.delay-1 { transition-delay: 0.1s; }
    .animate-on-scroll.delay-2 { transition-delay: 0.2s; }
    .animate-on-scroll.delay-3 { transition-delay: 0.3s; }
    .animate-on-scroll.delay-4 { transition-delay: 0.4s; }
    .animate-on-scroll.delay-5 { transition-delay: 0.5s; }

    @media (prefers-reduced-motion: reduce) {
      .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }

    /* ============================================
       HEADER / NAVBAR
    ============================================ */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(255,255,255,0.97);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--cm-gray-200);
      transition: var(--transition);
    }

    .header.scrolled {
      box-shadow: var(--shadow-md);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 60px;
      padding: 0 16px;
    }

    @media (min-width: 480px) {
      .header-inner { height: 70px; padding: 0 20px; }
    }

    @media (min-width: 768px) {
      .header-inner { height: 80px; padding: 0 32px; }
    }

    .header-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-shrink: 0;
    }

    .header-logo img {
      height: 40px;
      width: auto;
    }

    @media (min-width: 480px) {
      .header-logo img { height: 48px; }
    }

    .header-logo-text {
      display: none;
    }

    @media (min-width: 768px) {
      .header-logo-text { display: block; }
    }

    .header-logo-text span {
      display: block;
      font-family: var(--font-heading);
      font-size: 14px;
      font-weight: 700;
      color: var(--cm-dark);
      line-height: 1.2;
    }

    @media (min-width: 1024px) {
      .header-logo-text span { font-size: 16px; }
    }

    .header-logo-text span:last-child {
      font-size: 10px;
      font-weight: 600;
      color: var(--cm-red);
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    @media (min-width: 1024px) {
      .header-logo-text span:last-child { font-size: 11px; }
    }

    .nav-desktop {
      display: none;
      align-items: center;
      gap: 24px;
    }

    @media (min-width: 1024px) {
      .nav-desktop { display: flex; gap: 32px; }
    }

    .nav-desktop a {
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 600;
      color: var(--cm-gray-700);
      letter-spacing: 0.5px;
      text-transform: uppercase;
      transition: color var(--transition-fast);
      position: relative;
    }

    .nav-desktop a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--cm-red);
      transition: width var(--transition-fast);
    }

    .nav-desktop a:hover,
    .nav-desktop a.active {
      color: var(--cm-red);
    }

    .nav-desktop a:hover::after,
    .nav-desktop a.active::after {
      width: 100%;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 18px;
      background: var(--cm-red);
      color: var(--cm-white);
      font-family: var(--font-heading);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      border: none;
      border-radius: var(--radius);
      cursor: pointer;
      transition: all var(--transition-fast);
      white-space: nowrap;
    }

    @media (min-width: 480px) {
      .btn-primary { padding: 11px 20px; font-size: 12px; }
    }

    @media (min-width: 768px) {
      .btn-primary { padding: 12px 24px; font-size: 13px; }
    }

    .btn-primary:hover {
      background: var(--cm-red-dark);
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(196, 18, 48, 0.3);
    }

    .btn-primary:active {
      transform: scale(0.97);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      background: transparent;
      color: var(--cm-dark);
      font-family: var(--font-heading);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      border: 2px solid var(--cm-dark);
      border-radius: var(--radius);
      cursor: pointer;
      transition: all var(--transition-fast);
      white-space: nowrap;
    }

    .btn-outline:hover {
      background: var(--cm-dark);
      color: var(--cm-white);
    }

    .btn-outline:active {
      transform: scale(0.97);
    }

    .desktop-cta { 
      display: none; 
    }

    @media (min-width: 1024px) {
      .desktop-cta { display: inline-flex; }
    }

    .hamburger {
      display: flex;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      z-index: 1001;
    }

    @media (min-width: 1024px) {
      .hamburger { display: none; }
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2.5px;
      background: var(--cm-dark);
      border-radius: 2px;
      transition: all var(--transition-fast);
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile Menu Overlay */
    .mobile-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 998;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--transition);
    }

    .mobile-overlay.active {
      opacity: 1;
      pointer-events: all;
    }

    /* Mobile Menu */
    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 85%;
      max-width: 350px;
      height: 100vh;
      background: var(--cm-white);
      z-index: 999;
      display: flex;
      flex-direction: column;
      overflow-y: auto;
      transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
      box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    }

    .mobile-menu.active {
      right: 0;
    }

    .mobile-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 36px;
      height: 36px;
      border: none;
      background: var(--cm-gray-100);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--cm-dark);
      font-size: 18px;
      transition: all var(--transition-fast);
      z-index: 1002;
    }

    .mobile-close:hover {
      background: var(--cm-red);
      color: var(--cm-white);
    }

    .mobile-menu-header {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 24px 20px 16px;
      border-bottom: 1px solid var(--cm-gray-200);
    }

    .mobile-menu-header img {
      height: 36px;
      width: auto;
    }

    .mobile-menu-header span {
      font-family: var(--font-heading);
      font-size: 14px;
      font-weight: 700;
      color: var(--cm-dark);
    }


    .mobile-menu-divider {
      height: 1px;
      background: var(--cm-gray-200);
      margin: 12px 0;
    }

    .mobile-nav {
      display: flex;
      flex-direction: column;
      gap: 0;
      padding: 12px 0;
      flex: 1;
    }

    .mobile-link {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 20px;
      font-family: var(--font-heading);
      font-size: 14px;
      font-weight: 600;
      color: var(--cm-dark);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: all var(--transition-fast);
      border-left: 3px solid transparent;
    }

    .mobile-link i {
      font-size: 16px;
      color: var(--cm-red);
      width: 20px;
      text-align: center;
    }

    .mobile-link:hover {
      background: var(--cm-gray-50);
      border-left-color: var(--cm-red);
      color: var(--cm-red);
    }

    .mobile-link.active {
      background: var(--cm-gray-50);
      border-left-color: var(--cm-red);
      color: var(--cm-red);
    }

    .mobile-cta-btn {
      margin: 12px 20px;
      width: calc(100% - 40px);
      justify-content: center;
      gap: 8px;
    }

    .mobile-menu-footer {
      padding: 20px;
      border-top: 1px solid var(--cm-gray-200);
      background: var(--cm-gray-50);
    }

    .mobile-menu-footer p {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--cm-gray-600);
      margin-bottom: 10px;
    }

    .mobile-menu-footer p:last-child {
      margin-bottom: 0;
    }

    .mobile-menu-footer i {
      color: var(--cm-red);
      width: 16px;
    }

    /* ============================================
       HERO SECTION
    ============================================ */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 60px;
      overflow: hidden;
    }

    @media (min-width: 480px) {
      .hero { padding-top: 70px; }
    }

    @media (min-width: 768px) {
      .hero { padding-top: 80px; }
    }

    @media (max-width: 639px) {
      .hero { min-height: auto; padding-bottom: 60px; }
      .hero-content { padding: 60px 0 60px; text-align: center; margin: 0 auto; }
    }

    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('../images/WhatsApp\ Image\ 2026-07-30\ at\ 12.06.47.jpeg');
      background-size: cover;
      background-position: center;
      z-index: 0;
      animation: slowZoom 20s ease-in-out infinite alternate;
    }

    @keyframes slowZoom {
      0% { transform: scale(1); }
      100% { transform: scale(1.1); }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-bg {
        animation: none;
        transform: scale(1);
      }
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(26,26,46,0.75) 0%, rgba(26,26,46,0.4) 50%, rgba(26,26,46,0.2) 100%);
      z-index: 1;
    }

    .hero-particles {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 620px;
      padding: 40px 16px 60px;
    }

    @media (min-width: 768px) {
      .hero-content { padding: 60px 0 80px; }
    }

    @media (min-width: 1024px) {
      .hero-content { padding: 80px 0 100px; }
    }

    .hero-tagline {
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--cm-red-light);
      margin-bottom: 20px;
      display: block;
    }

    @media (min-width: 480px) {
      .hero-tagline { font-size: 13px; margin-bottom: 14px; }
    }

    @media (min-width: 768px) {
      .hero-tagline { font-size: 14px; margin-bottom: 16px; }
    }

    .hero-title {
      font-size: 26px;
      font-weight: 900;
      color: var(--cm-white);
      line-height: 1.3;
      margin-bottom: 24px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    @media (min-width: 480px) {
      .hero-title { font-size: 32px; margin-bottom: 18px; }
    }

    @media (min-width: 640px) {
      .hero-title { font-size: 38px; }
    }

    @media (min-width: 768px) {
      .hero-title { font-size: 42px; margin-bottom: 20px; }
    }

    @media (min-width: 1024px) {
      .hero-title { font-size: 50px; }
    }

    .hero-title .highlight {
      color: var(--cm-red-light);
    }

    .hero-description {
      font-size: 14px;
      color: rgba(255,255,255,0.85);
      line-height: 1.7;
      margin-bottom: 32px;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    @media (min-width: 480px) {
      .hero-description { font-size: 15px; margin-bottom: 28px; }
    }

    @media (min-width: 768px) {
      .hero-description { font-size: 16px; margin-bottom: 32px; }
    }

    .hero-buttons {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      margin-bottom: 32px;
      width: 100%;
    }

    @media (min-width: 480px) {
      .hero-buttons {
        flex-direction: row;
        justify-content: center;
      }
    }

    @media (min-width: 480px) {
      .hero-buttons { gap: 14px; margin-bottom: 28px; }
    }

    @media (min-width: 768px) {
      .hero-buttons { gap: 16px; margin-bottom: 32px; }
    }

    .hero-btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 12px 20px;
      background: var(--cm-red);
      color: var(--cm-white);
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      border: none;
      border-radius: var(--radius);
      cursor: pointer;
      transition: all var(--transition-fast);
      width: 100%;
      max-width: 300px;
    }

    @media (min-width: 480px) {
      .hero-btn-primary { padding: 13px 24px; font-size: 13px; width: auto; }
    }

    @media (min-width: 768px) {
      .hero-btn-primary { padding: 14px 28px; }
    }

    .hero-btn-primary:hover {
      background: var(--cm-red-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(196, 18, 48, 0.4);
    }

    .hero-btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 20px;
      background: transparent;
      color: var(--cm-white);
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      border: 2px solid var(--cm-white);
      border-radius: var(--radius);
      cursor: pointer;
      transition: all var(--transition-fast);
      width: 100%;
      max-width: 300px;
    }

    @media (min-width: 480px) {
      .hero-btn-secondary { padding: 13px 24px; font-size: 13px; width: auto; }
    }

    @media (min-width: 768px) {
      .hero-btn-secondary { padding: 14px 28px; }
    }

    .hero-btn-secondary:hover {
      background: var(--cm-white);
      color: var(--cm-dark);
    }

    .hero-info {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: var(--cm-white);
      font-size: 13px;
    }

    @media (min-width: 480px) {
      .hero-info { font-size: 14px; }
    }

    .hero-info i {
      font-size: 18px;
      color: var(--cm-red-light);
    }

    @media (min-width: 480px) {
      .hero-info i { font-size: 20px; }
    }

    .hero-info-text {
      font-size: 13px;
      font-weight: 600;
    }

    @media (min-width: 480px) {
      .hero-info-text { font-size: 14px; }
    }

    .hero-info-text span {
      display: block;
      font-size: 11px;
      font-weight: 400;
      opacity: 0.8;
    }

    @media (min-width: 480px) {
      .hero-info-text span { font-size: 12px; }
    }

    .hero-scroll-indicator {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      margin-top: 40px;
      color: rgba(255, 255, 255, 0.6);
      font-size: 12px;
      animation: bounce 2s infinite;
    }

    .scroll-mouse {
      width: 24px;
      height: 40px;
      border: 2px solid rgba(255, 255, 255, 0.6);
      border-radius: 12px;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 6px;
    }

    .scroll-wheel {
      width: 3px;
      height: 8px;
      background: rgba(255, 255, 255, 0.6);
      border-radius: 2px;
      animation: bounce 2s infinite;
    }

    /* ============================================
       FEATURES STRIP
    ============================================ */
    .features-strip {
      position: relative;
      z-index: 10;
      margin-top: -30px;
      padding-bottom: 20px;
    }

    @media (min-width: 480px) {
      .features-strip { margin-top: -40px; }
    }

    @media (min-width: 640px) {
      .features-strip { margin-top: -50px; padding-bottom: 0; }
    }

    @media (min-width: 1024px) {
      .features-strip { margin-top: -80px; }
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      background: var(--cm-white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
      padding: 24px 16px;
      gap: 16px;
      align-items: start;
    }

    @media (max-width: 479px) {
      .feature-item:last-child {
        grid-column: span 2;
      }
    }

    @media (min-width: 480px) {
      .features-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 28px 20px;
        gap: 20px;
      }
    }

    @media (min-width: 640px) {
      .features-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 32px 24px;
        gap: 24px;
      }
    }

    @media (min-width: 1024px) {
      .features-grid {
        grid-template-columns: repeat(5, 1fr);
        padding: 40px 48px;
        gap: 32px;
      }
    }

    .feature-item {
      text-align: center;
      padding: 12px 8px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    @media (min-width: 640px) {
      .feature-item { padding: 16px 8px; }
    }

    .feature-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--cm-red);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 10px;
      transition: transform var(--transition-fast);
    }

    @media (min-width: 640px) {
      .feature-icon { width: 56px; height: 56px; margin-bottom: 12px; }
    }

    .feature-item:hover .feature-icon {
      transform: scale(1.1);
    }

    .feature-icon i {
      color: var(--cm-white);
      font-size: 18px;
    }

    @media (min-width: 640px) {
      .feature-icon i { font-size: 22px; }
    }

    .feature-title {
      font-family: var(--font-heading);
      font-size: 10px;
      font-weight: 700;
      color: var(--cm-dark);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    @media (min-width: 640px) {
      .feature-title { font-size: 11px; }
    }

    @media (min-width: 1024px) {
      .feature-title { font-size: 13px; }
    }

    /* ============================================
       SERVICES SECTION
    ============================================ */
    .services {
      background: var(--cm-white);
    }

    .services-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }

    @media (min-width: 480px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
      }
    }

    @media (min-width: 640px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }
    }

    @media (min-width: 1024px) {
      .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
      }
    }

    .service-card {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      height: 240px;
      cursor: pointer;
      transition: all var(--transition);
    }

    @media (min-width: 480px) {
      .service-card { height: 260px; }
    }

    @media (min-width: 768px) {
      .service-card { height: 280px; }
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-xl);
    }

    .service-card-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .service-card:hover .service-card-bg {
      transform: scale(1.05);
    }

    .service-card-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.3) 60%, rgba(26,26,46,0.1) 100%);
      transition: background var(--transition);
    }

    .service-card:hover .service-card-overlay {
      background: linear-gradient(to top, rgba(26,26,46,0.9) 0%, rgba(26,26,46,0.4) 60%, rgba(26,26,46,0.2) 100%);
    }

    .service-card-content {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 18px;
      z-index: 2;
    }

    @media (min-width: 480px) {
      .service-card-content { padding: 20px; }
    }

    @media (min-width: 768px) {
      .service-card-content { padding: 24px; }
    }

    .service-icon-circle {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--cm-red);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
      border: 3px solid var(--cm-white);
    }

    @media (min-width: 768px) {
      .service-icon-circle { width: 44px; height: 44px; margin-bottom: 12px; }
    }

    .service-icon-circle i {
      color: var(--cm-white);
      font-size: 16px;
    }

    @media (min-width: 768px) {
      .service-icon-circle i { font-size: 18px; }
    }

    .service-card-title {
      font-family: var(--font-heading);
      font-size: 13px;
      font-weight: 700;
      color: var(--cm-white);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 4px;
    }

    @media (min-width: 768px) {
      .service-card-title { font-size: 14px; margin-bottom: 6px; }
    }

    .service-card-desc {
      font-size: 12px;
      color: rgba(255,255,255,0.8);
      line-height: 1.5;
    }

    @media (min-width: 768px) {
      .service-card-desc { font-size: 13px; }
    }

    .service-arrow {
      display: inline-block;
      margin-top: 8px;
      color: var(--cm-red-light);
      font-size: 14px;
      transition: transform var(--transition-fast);
    }

    .service-card:hover .service-arrow {
      transform: translateX(4px);
    }

    /* ============================================
       PROCESS SECTION
    ============================================ */
    .process {
      background: var(--cm-dark);
      color: var(--cm-white);
    }

    .process .section-subtitle {
      color: var(--cm-red-light);
    }

    .process .section-title {
      color: var(--cm-white);
    }

    .process .section-description {
      color: rgba(255, 255, 255, 0.7);
    }

    .process-timeline {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-top: 30px;
    }

    @media (min-width: 480px) {
      .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 35px;
      }
    }

    @media (min-width: 640px) {
      .process-timeline {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 40px;
      }
    }

    @media (min-width: 1024px) {
      .process-timeline {
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
        position: relative;
      }

      .process-timeline::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 8%;
        right: 8%;
        height: 2px;
        background: rgba(196, 18, 48, 0.4);
        z-index: 0;
      }
    }

    .process-step {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .process-number {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--cm-red);
      color: var(--cm-white);
      font-family: var(--font-heading);
      font-size: 14px;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 12px;
      border: 3px solid var(--cm-dark);
      box-shadow: 0 0 0 4px rgba(196, 18, 48, 0.2);
    }

    @media (min-width: 768px) {
      .process-number { width: 48px; height: 48px; font-size: 16px; margin-bottom: 16px; }
    }

    .process-step-icon {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: rgba(196, 18, 48, 0.15);
      border: 2px solid var(--cm-red);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 10px;
    }

    @media (min-width: 768px) {
      .process-step-icon { width: 64px; height: 64px; margin-bottom: 12px; }
    }

    .process-step-icon i {
      font-size: 20px;
      color: var(--cm-red-light);
    }

    @media (min-width: 768px) {
      .process-step-icon i { font-size: 24px; }
    }

    .process-step-title {
      font-family: var(--font-heading);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 6px;
    }

    @media (min-width: 768px) {
      .process-step-title { font-size: 12px; margin-bottom: 8px; }
    }

    .process-step-desc {
      font-size: 11px;
      color: rgba(255,255,255,0.6);
      line-height: 1.5;
    }

    @media (min-width: 768px) {
      .process-step-desc { font-size: 12px; }
    }

    @media (max-width: 639px) {
      .process-step-desc { display: none; }
    }

    .process-cta {
      text-align: center;
      margin-top: 30px;
    }

    @media (min-width: 768px) {
      .process-cta { margin-top: 40px; }
    }

    .process-cta .btn-outline {
      border-color: var(--cm-red);
      color: var(--cm-red-light);
    }

    .process-cta .btn-outline:hover {
      background: var(--cm-red);
      color: var(--cm-white);
    }

    /* ============================================
       ABOUT TEXT SECTION
    ============================================ */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      align-items: center;
    }

    @media (min-width: 768px) {
      .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }
    }

    .about-stat-card {
      transition: all var(--transition);
    }

    .about-stat-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    /* ============================================
       SEGMENTS SECTION
    ============================================ */
    .segments {
      background: var(--cm-gray-50);
    }

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

    @media (min-width: 480px) {
      .segments-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
      }
    }

    @media (min-width: 640px) {
      .segments-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
      }
    }

    @media (min-width: 768px) {
      .segments-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 20px;
      }
    }

    .segment-card {
      text-align: center;
      padding: 16px 10px;
      background: var(--cm-white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      transition: all var(--transition);
    }

    @media (min-width: 480px) {
      .segment-card { padding: 18px 12px; }
    }

    @media (min-width: 768px) {
      .segment-card { padding: 24px 12px; }
    }

    .segment-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .segment-img {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      margin: 0 auto 10px;
      overflow: hidden;
      border: 3px solid var(--cm-gray-200);
    }

    @media (min-width: 768px) {
      .segment-img { width: 64px; height: 64px; margin-bottom: 12px; }
    }

    .segment-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .segment-title {
      font-family: var(--font-heading);
      font-size: 10px;
      font-weight: 700;
      color: var(--cm-dark);
      text-transform: uppercase;
      letter-spacing: 0.3px;
      line-height: 1.3;
    }

    @media (min-width: 768px) {
      .segment-title { font-size: 11px; }
    }

    /* ============================================
       WHY CHOOSE US & FORM SECTION
    ============================================ */
    .why-us {
      background: var(--cm-white);
    }

    .why-us-header {
      text-align: center;
      margin-bottom: 30px;
    }

    @media (min-width: 768px) {
      .why-us-header { margin-bottom: 40px; }
    }

    .why-us-header h2 {
      font-size: 22px;
      color: var(--cm-red);
      font-weight: 800;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    @media (min-width: 480px) {
      .why-us-header h2 { font-size: 24px; }
    }

    @media (min-width: 768px) {
      .why-us-header h2 { font-size: 28px; margin-bottom: 12px; }
    }

    .why-us-header p {
      font-size: 14px;
      color: var(--cm-gray-600);
      max-width: 500px;
      margin: 0 auto;
    }

    @media (min-width: 768px) {
      .why-us-header p { font-size: 15px; }
    }

    .why-us-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-bottom: 40px;
    }

    @media (min-width: 480px) {
      .why-us-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-bottom: 50px;
      }
    }

    @media (min-width: 640px) {
      .why-us-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
      }
    }

    @media (min-width: 1024px) {
      .why-us-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
        margin-bottom: 60px;
      }
    }

    .why-us-item {
      text-align: center;
      padding: 14px 10px;
    }

    @media (min-width: 640px) {
      .why-us-item { padding: 18px 12px; }
    }

    @media (min-width: 1024px) {
      .why-us-item { padding: 20px 12px; }
    }

    .why-us-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--cm-gray-100);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 8px;
      transition: all var(--transition-fast);
    }

    @media (min-width: 768px) {
      .why-us-icon { width: 48px; height: 48px; margin-bottom: 10px; }
    }

    .why-us-item:hover .why-us-icon {
      background: var(--cm-red);
    }

    .why-us-item:hover .why-us-icon i {
      color: var(--cm-white);
    }

    .why-us-icon i {
      font-size: 18px;
      color: var(--cm-red);
      transition: all var(--transition-fast);
    }

    @media (min-width: 768px) {
      .why-us-icon i { font-size: 20px; }
    }

    .why-us-item-title {
      font-family: var(--font-heading);
      font-size: 10px;
      font-weight: 700;
      color: var(--cm-dark);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 3px;
    }

    @media (min-width: 768px) {
      .why-us-item-title { font-size: 11px; margin-bottom: 4px; }
    }

    .why-us-item-desc {
      font-size: 11px;
      color: var(--cm-gray-500);
      line-height: 1.4;
    }

    @media (min-width: 768px) {
      .why-us-item-desc { font-size: 12px; }
    }

    .why-us-cta {
      text-align: center;
      margin-bottom: 40px;
    }

    @media (min-width: 768px) {
      .why-us-cta { margin-bottom: 60px; }
    }

    /* ============================================
       PROFESSIONAL FORM SECTION
    ============================================ */
    .form-section {
      background: linear-gradient(135deg, var(--cm-gray-50) 0%, var(--cm-white) 100%);
      border-radius: var(--radius-lg);
      padding: 30px 20px;
      margin-top: 40px;
    }

    @media (min-width: 480px) {
      .form-section { padding: 40px 24px; margin-top: 50px; }
    }

    @media (min-width: 768px) {
      .form-section { padding: 50px 40px; margin-top: 60px; }
    }

    .form-header {
      text-align: center;
      margin-bottom: 30px;
    }

    @media (min-width: 768px) {
      .form-header { margin-bottom: 40px; }
    }

    .form-header h2 {
      font-size: 24px;
      font-weight: 800;
      color: var(--cm-dark);
      margin-bottom: 10px;
    }

    @media (min-width: 480px) {
      .form-header h2 { font-size: 26px; }
    }

    @media (min-width: 768px) {
      .form-header h2 { font-size: 32px; margin-bottom: 12px; }
    }

    .form-header p {
      font-size: 14px;
      color: var(--cm-gray-600);
    }

    @media (min-width: 768px) {
      .form-header p { font-size: 15px; }
    }

    .form-wrapper {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
    }

    @media (min-width: 768px) {
      .form-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }
    }

    .form-image-side {
      display: none;
    }

    @media (min-width: 768px) {
      .form-image-side { display: block; }
    }

    .form-image-content {
      position: relative;
      background: linear-gradient(135deg, var(--cm-red) 0%, var(--cm-red-dark) 100%);
      border-radius: var(--radius-lg);
      padding: 40px 30px;
      color: var(--cm-white);
      height: 100%;
      min-height: 500px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      overflow: hidden;
    }

    .form-image-content h3 {
      font-size: 24px;
      margin-bottom: 12px;
    }

    .form-image-content p {
      font-size: 14px;
      opacity: 0.9;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .form-contact-info {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .form-contact-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 13px;
    }

    .form-contact-item i {
      width: 20px;
      font-size: 16px;
    }

    .form-decoration {
      position: absolute;
      bottom: -20px;
      right: -20px;
      width: 200px;
      height: 200px;
    }

    .form-deco-circle {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
    }

    .form-deco-circle.deco-2 {
      width: 120px;
      height: 120px;
      bottom: 40px;
      right: 40px;
    }

    .form-deco-circle.deco-3 {
      width: 80px;
      height: 80px;
      bottom: 80px;
      right: 100px;
    }

    .form-fields-side {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

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

    .form-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }

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

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

    .form-group label {
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 700;
      color: var(--cm-dark);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    @media (min-width: 768px) {
      .form-group label { font-size: 13px; }
    }

    .input-wrapper {
      position: relative;
      display: flex;
      align-items: center;
    }

    .input-icon {
      position: absolute;
      left: 14px;
      color: var(--cm-red);
      font-size: 16px;
      pointer-events: none;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      padding: 12px 14px 12px 42px;
      border: 2px solid var(--cm-gray-300);
      border-radius: var(--radius);
      font-family: var(--font-body);
      font-size: 14px;
      color: var(--cm-dark);
      transition: all var(--transition-fast);
      background: var(--cm-white);
    }

    @media (min-width: 768px) {
      .form-group input,
      .form-group textarea,
      .form-group select { font-size: 15px; }
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--cm-red);
      box-shadow: 0 0 0 3px rgba(196, 18, 48, 0.1);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: var(--cm-gray-500);
    }

    .textarea-wrapper {
      position: relative;
    }

    .textarea-wrapper .input-icon {
      top: 14px;
      align-self: flex-start;
    }

    .form-group textarea {
      resize: vertical;
      min-height: 100px;
      padding-top: 14px;
    }

    .select-wrapper select {
      appearance: none;
      background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C41230' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right 12px center;
      background-size: 18px;
      padding-right: 40px;
    }

    .form-error {
      font-size: 12px;
      color: #dc3545;
      display: none;
    }

    .form-group.error input,
    .form-group.error textarea,
    .form-group.error select {
      border-color: #dc3545;
    }

    .form-group.error .form-error {
      display: block;
    }

    .form-submit-btn {
      padding: 14px 28px;
      margin-top: 10px;
      width: 100%;
      justify-content: center;
      font-size: 14px;
    }

    @media (min-width: 768px) {
      .form-submit-btn { font-size: 15px; }
    }

    .form-submit-btn:hover {
      transform: translateY(-2px);
    }

    .form-success {
      display: none;
      background: #d4edda;
      border: 2px solid #28a745;
      border-radius: var(--radius);
      padding: 16px;
      text-align: center;
      color: #155724;
      margin-top: 16px;
      animation: slideInUp 0.4s ease;
    }

    .form-success.show {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .form-success i {
      font-size: 24px;
    }

    .form-success p {
      font-size: 14px;
      margin: 0;
    }

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

    /* Stats Strip */
    .stats-strip {
      background: var(--cm-dark);
      border-radius: var(--radius-lg);
      padding: 30px 20px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
      margin-top: 40px;
    }

    @media (min-width: 480px) {
      .stats-strip {
        grid-template-columns: repeat(3, 1fr);
        padding: 35px 24px;
        gap: 18px;
        margin-top: 50px;
      }
    }

    @media (min-width: 640px) {
      .stats-strip {
        grid-template-columns: repeat(3, 1fr);
        padding: 40px 28px;
        gap: 20px;
      }
    }

    @media (min-width: 1024px) {
      .stats-strip {
        grid-template-columns: repeat(5, 1fr);
        padding: 48px 48px;
        gap: 24px;
      }
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-family: var(--font-heading);
      font-size: 24px;
      font-weight: 900;
      color: var(--cm-red-light);
      margin-bottom: 4px;
    }

    @media (min-width: 480px) {
      .stat-number { font-size: 28px; }
    }

    @media (min-width: 640px) {
      .stat-number { font-size: 32px; }
    }

    @media (min-width: 768px) {
      .stat-number { font-size: 40px; }
    }

    .stat-label {
      font-family: var(--font-heading);
      font-size: 10px;
      font-weight: 600;
      color: rgba(255,255,255,0.7);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    @media (min-width: 768px) {
      .stat-label { font-size: 11px; }
    }

    /* ============================================
       BASES GALLERY (CARROSSEL DE IMAGENS)
    ============================================ */
    .bases-gallery {
      background: var(--cm-white);
      overflow: hidden;
    }

    .bases-slider {
      position: relative;
      overflow: hidden;
    }

    .bases-track {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .base-card {
      min-width: 100%;
      padding: 0 10px;
    }

    @media (min-width: 480px) {
      .base-card { min-width: 80%; padding: 0 12px; }
    }

    @media (min-width: 768px) {
      .base-card { min-width: 50%; padding: 0 14px; }
    }

    @media (min-width: 1024px) {
      .base-card { min-width: 33.333%; padding: 0 16px; }
    }

    .base-card-img {
      position: relative;
      width: 100%;
      aspect-ratio: 4 / 5;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      background: var(--cm-red);
      cursor: zoom-in;
    }

    .base-card-img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      transition: transform 0.4s ease;
    }

    .base-card:hover .base-card-img img {
      transform: scale(1.03);
    }

    .base-card-caption {
      position: absolute;
      left: 18px;
      bottom: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--cm-white);
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.3px;
      z-index: 2;
    }

    @media (min-width: 768px) {
      .base-card-caption { left: 20px; bottom: 16px; font-size: 14px; }
    }

    .base-card-caption i {
      color: var(--cm-red);
      font-size: 14px;
    }

    .bases-nav {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 24px;
    }

    @media (min-width: 768px) {
      .bases-nav { gap: 16px; margin-top: 32px; }
    }

    .base-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2px solid var(--cm-gray-300);
      background: var(--cm-white);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all var(--transition-fast);
    }

    @media (min-width: 768px) {
      .base-btn { width: 44px; height: 44px; }
    }

    .base-btn:hover {
      border-color: var(--cm-red);
      color: var(--cm-red);
    }

    .base-btn i {
      font-size: 14px;
    }

    @media (min-width: 768px) {
      .base-btn i { font-size: 16px; }
    }

    /* ============================================
       LIGHTBOX (IMAGEM EXPANDIDA)
    ============================================ */
    .img-lightbox {
      position: fixed;
      inset: 0;
      background: rgba(10, 10, 10, 0.92);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
      z-index: 9999;
    }

    .img-lightbox.active {
      opacity: 1;
      visibility: visible;
    }

    .img-lightbox-img {
      max-width: 100%;
      max-height: 92vh;
      width: auto;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
      transform: scale(0.92);
      transition: transform 0.3s ease;
      cursor: default;
    }

    .img-lightbox.active .img-lightbox-img {
      transform: scale(1);
    }

    .img-lightbox-close {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, 0.4);
      background: rgba(255, 255, 255, 0.08);
      color: var(--cm-white);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 18px;
      transition: all var(--transition-fast);
      z-index: 2;
    }

    .img-lightbox-close:hover {
      background: var(--cm-red);
      border-color: var(--cm-red);
      transform: rotate(90deg);
    }

    @media (max-width: 480px) {
      .img-lightbox-close { top: 12px; right: 12px; width: 38px; height: 38px; font-size: 16px; }
    }

    /* ============================================
       PÁGINA INTERNA - TRABALHE CONOSCO
    ============================================ */
    .page-hero-inner {
      background: linear-gradient(135deg, var(--cm-dark) 0%, var(--cm-dark-lighter) 100%);
      padding: 110px 0 50px;
      text-align: center;
      color: var(--cm-white);
      position: relative;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .page-hero-inner { padding: 150px 0 70px; }
    }

    .page-hero-inner::before {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 40%;
      height: 100%;
      background: linear-gradient(135deg, transparent 0%, rgba(196, 18, 48, 0.15) 100%);
      pointer-events: none;
    }

    .page-hero-breadcrumb {
      font-size: 12px;
      font-weight: 600;
      color: rgba(255,255,255,0.6);
      margin-bottom: 16px;
      letter-spacing: 0.3px;
    }

    .page-hero-breadcrumb a {
      color: rgba(255,255,255,0.85);
      transition: color var(--transition-fast);
    }

    .page-hero-breadcrumb a:hover {
      color: var(--cm-red-light);
    }

    .page-hero-breadcrumb i {
      font-size: 9px;
      margin: 0 6px;
    }

    .page-hero-inner h1 {
      font-size: 30px;
      font-weight: 800;
      margin-bottom: 14px;
    }

    @media (min-width: 640px) {
      .page-hero-inner h1 { font-size: 38px; }
    }

    @media (min-width: 768px) {
      .page-hero-inner h1 { font-size: 46px; }
    }

    .page-hero-subtitle {
      font-size: 14px;
      color: rgba(255,255,255,0.75);
      max-width: 620px;
      margin: 0 auto;
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .page-hero-subtitle { font-size: 16px; }
    }

    .form-page-container {
      max-width: 880px;
    }

    .form-note {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      background: var(--cm-gray-50);
      border-left: 4px solid var(--cm-red);
      border-radius: 6px;
      padding: 16px 18px;
      margin-bottom: 28px;
      font-size: 13px;
      color: var(--cm-gray-600);
      line-height: 1.6;
    }

    .form-note i {
      color: var(--cm-red);
      font-size: 18px;
      margin-top: 2px;
      flex-shrink: 0;
    }

    .form-card {
      background: var(--cm-white);
      border: 1px solid var(--cm-gray-200);
      border-radius: var(--radius-lg);
      padding: 24px 20px;
      box-shadow: var(--shadow-md);
    }

    @media (min-width: 768px) {
      .form-card { padding: 40px; }
    }

    .form-section-divider {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-heading);
      font-size: 15px;
      font-weight: 700;
      color: var(--cm-red);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding-bottom: 10px;
      margin-top: 8px;
      border-bottom: 2px solid var(--cm-gray-200);
    }

    @media (min-width: 768px) {
      .form-section-divider { font-size: 16px; }
    }

    .form-row-3,
    .form-row-4 {
      grid-template-columns: 1fr;
    }

    @media (min-width: 640px) {
      .form-row-3 { grid-template-columns: 1fr 1fr; }
      .form-row-4 { grid-template-columns: 1fr 1fr; }
    }

    @media (min-width: 900px) {
      .form-row-3 { grid-template-columns: 1fr 0.6fr 0.8fr; }
      .form-row-4 { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
    }

    .radio-group {
      display: flex;
      align-items: center;
      gap: 24px;
      padding: 10px 2px;
    }

    .radio-option {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: var(--cm-text);
      cursor: pointer;
    }

    .radio-option input[type="radio"] {
      width: 18px;
      height: 18px;
      accent-color: var(--cm-red);
      cursor: pointer;
    }

    .file-upload-group input[type="file"] {
      width: 100%;
      padding: 10px 12px;
      border: 2px dashed var(--cm-gray-300);
      border-radius: var(--radius);
      background: var(--cm-gray-50);
      font-family: var(--font-body);
      font-size: 13px;
      color: var(--cm-gray-600);
      cursor: pointer;
      transition: border-color var(--transition-fast);
    }

    .file-upload-group input[type="file"]:hover {
      border-color: var(--cm-red);
    }

    .file-upload-group input[type="file"]::file-selector-button {
      padding: 8px 14px;
      margin-right: 12px;
      border: none;
      border-radius: 6px;
      background: var(--cm-red);
      color: var(--cm-white);
      font-family: var(--font-heading);
      font-weight: 600;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      cursor: pointer;
      transition: background var(--transition-fast);
    }

    .file-upload-group input[type="file"]::file-selector-button:hover {
      background: var(--cm-red-dark);
    }

    .file-upload-group.error input[type="file"] {
      border-color: #dc3545;
    }

    .file-upload-group .form-error {
      margin-top: 4px;
    }
    .testimonials {
      background: var(--cm-gray-50);
    }

    .testimonials-header {
      text-align: center;
      margin-bottom: 30px;
    }

    @media (min-width: 768px) {
      .testimonials-header { margin-bottom: 40px; }
    }

    .testimonials-header .section-subtitle {
      color: var(--cm-red);
    }

    .testimonials-slider {
      position: relative;
      overflow: hidden;
    }

    .testimonials-track {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .testimonial-card {
      min-width: 100%;
      padding: 0 12px;
    }

    @media (min-width: 480px) {
      .testimonial-card { padding: 0 14px; }
    }

    @media (min-width: 768px) {
      .testimonial-card { min-width: 33.333%; padding: 0 16px; }
    }

    .testimonial-content {
      background: var(--cm-white);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: var(--shadow-sm);
      height: 100%;
    }

    @media (min-width: 768px) {
      .testimonial-content { padding: 32px 24px; }
    }

    .testimonial-stars {
      color: #FFC107;
      font-size: 12px;
      margin-bottom: 12px;
    }

    @media (min-width: 768px) {
      .testimonial-stars { font-size: 14px; margin-bottom: 16px; }
    }

    .testimonial-text {
      font-size: 13px;
      color: var(--cm-gray-600);
      line-height: 1.6;
      font-style: italic;
      margin-bottom: 16px;
    }

    @media (min-width: 768px) {
      .testimonial-text { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
    }

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

    .testimonial-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--cm-red);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    @media (min-width: 768px) {
      .testimonial-avatar { width: 44px; height: 44px; }
    }

    .testimonial-avatar i {
      color: var(--cm-white);
      font-size: 16px;
    }

    @media (min-width: 768px) {
      .testimonial-avatar i { font-size: 18px; }
    }

    .testimonial-author-name {
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 700;
      color: var(--cm-dark);
    }

    @media (min-width: 768px) {
      .testimonial-author-name { font-size: 13px; }
    }

    .testimonial-author-role {
      font-size: 11px;
      color: var(--cm-gray-500);
    }

    @media (min-width: 768px) {
      .testimonial-author-role { font-size: 12px; }
    }

    .testimonials-nav {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 24px;
    }

    @media (min-width: 768px) {
      .testimonials-nav { gap: 16px; margin-top: 32px; }
    }

    .testimonial-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 2px solid var(--cm-gray-300);
      background: var(--cm-white);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all var(--transition-fast);
    }

    @media (min-width: 768px) {
      .testimonial-btn { width: 44px; height: 44px; }
    }

    .testimonial-btn:hover {
      border-color: var(--cm-red);
      color: var(--cm-red);
    }

    .testimonial-btn i {
      font-size: 14px;
    }

    @media (min-width: 768px) {
      .testimonial-btn i { font-size: 16px; }
    }

    /* ============================================
       FOOTER
    ============================================ */
    .footer {
      background: var(--cm-dark);
      color: var(--cm-white);
      padding: 50px 0 0;
    }

    @media (min-width: 768px) {
      .footer { padding: 60px 0 0; }
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      padding-bottom: 30px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      text-align: center;
    }

    @media (min-width: 480px) {
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        padding-bottom: 35px;
      }
    }

    @media (min-width: 640px) {
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        padding-bottom: 40px;
      }
    }

    @media (min-width: 1024px) {
      .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 32px;
      }
    }

    .footer-brand img {
      height: 44px;
      margin-bottom: 12px;
    }

    @media (min-width: 768px) {
      .footer-brand img { height: 50px; margin-bottom: 16px; }
    }

    .footer-brand p {
      font-size: 12px;
      color: rgba(255,255,255,0.6);
      line-height: 1.6;
      margin-bottom: 12px;
    }

    @media (min-width: 768px) {
      .footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
    }

    .footer-social {
      display: flex;
      justify-content: center;
      gap: 10px;
    }

    .footer-social a {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background var(--transition-fast);
    }

    @media (min-width: 768px) {
      .footer-social a { width: 36px; height: 36px; }
    }

    .footer-social a:hover {
      background: var(--cm-red);
    }

    .footer-social a i {
      font-size: 12px;
      color: var(--cm-white);
    }

    @media (min-width: 768px) {
      .footer-social a i { font-size: 14px; }
    }

    .footer-col h4 {
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 14px;
      color: var(--cm-white);
    }

    @media (min-width: 768px) {
      .footer-col h4 { font-size: 14px; letter-spacing: 1px; margin-bottom: 20px; }
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col ul li {
      margin-bottom: 8px;
    }

    @media (min-width: 768px) {
      .footer-col ul li { margin-bottom: 10px; }
    }

    .footer-col ul li a {
      font-size: 12px;
      color: rgba(255,255,255,0.6);
      transition: color var(--transition-fast);
    }

    @media (min-width: 768px) {
      .footer-col ul li a { font-size: 13px; }
    }

    .footer-col ul li a:hover {
      color: var(--cm-red-light);
    }

    .footer-contact-item {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-bottom: 10px;
      font-size: 12px;
    }

    @media (min-width: 768px) {
      .footer-contact-item { gap: 10px; margin-bottom: 14px; font-size: 13px; }
    }

    .footer-contact-item i {
      width: 18px;
      color: var(--cm-red-light);
      font-size: 12px;
    }

    @media (min-width: 768px) {
      .footer-contact-item i { width: 20px; font-size: 14px; }
    }

    .footer-col + .footer-col {
      border-left: none;
      padding-left: 0;
    }

    @media (min-width: 768px) {
      .footer-grid { text-align: left; }
      .footer-social { justify-content: flex-start; }
      .footer-contact-item { justify-content: flex-start; }
      .footer-col + .footer-col { border-left: 1px solid rgba(255,255,255,0.08); padding-left: 24px; }
    }

    @media (min-width: 1024px) {
      .footer-col + .footer-col { padding-left: 32px; }
    }

    .footer-contact-item span {
      font-size: 12px;
      color: rgba(255,255,255,0.7);
    }

    @media (min-width: 768px) {
      .footer-contact-item span { font-size: 13px; }
    }

    .footer-bottom {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 16px 0;
      text-align: center;
    }

    @media (min-width: 768px) {
      .footer-bottom {
        flex-direction: row;
        text-align: left;
        gap: 16px;
        padding: 24px 0;
      }
    }

    .footer-bottom .instagram-link {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 11px;
      color: rgba(255,255,255,0.5);
      transition: color var(--transition-fast);
    }

    @media (min-width: 768px) {
      .footer-bottom .instagram-link { font-size: 13px; gap: 6px; }
    }

    .footer-bottom .instagram-link:hover {
      color: var(--cm-red-light);
    }

    .footer-bottom p {
      font-size: 11px;
      color: rgba(255,255,255,0.4);
    }

    @media (min-width: 768px) {
      .footer-bottom p { font-size: 12px; }
    }

    /* ============================================
       WHATSAPP FLOATING BUTTON
    ============================================ */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 900;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 8px;
    }

    @media (min-width: 768px) {
      .whatsapp-float { bottom: 24px; right: 24px; }
    }

    .whatsapp-popup {
      background: var(--cm-white);
      border-radius: var(--radius-lg);
      padding: 16px 20px;
      box-shadow: var(--shadow-xl);
      max-width: 260px;
      opacity: 0;
      transform: translateY(10px) scale(0.95);
      pointer-events: none;
      transition: all var(--transition);
    }

    @media (min-width: 768px) {
      .whatsapp-popup { padding: 20px 24px; max-width: 280px; }
    }

    .whatsapp-popup.show {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: all;
    }

    .whatsapp-popup-title {
      font-family: var(--font-heading);
      font-size: 14px;
      font-weight: 800;
      color: var(--cm-red);
      margin-bottom: 2px;
    }

    @media (min-width: 768px) {
      .whatsapp-popup-title { font-size: 16px; margin-bottom: 4px; }
    }

    .whatsapp-popup-phone {
      font-family: var(--font-heading);
      font-size: 12px;
      font-weight: 600;
      color: var(--cm-dark);
      margin-bottom: 10px;
    }

    @media (min-width: 768px) {
      .whatsapp-popup-phone { font-size: 14px; margin-bottom: 12px; }
    }

    .whatsapp-popup-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      width: 100%;
      padding: 10px;
      background: var(--cm-red);
      color: var(--cm-white);
      font-family: var(--font-heading);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      border: none;
      border-radius: var(--radius);
      cursor: pointer;
      transition: all var(--transition-fast);
    }

    @media (min-width: 768px) {
      .whatsapp-popup-btn { font-size: 12px; padding: 12px; }
    }

    .whatsapp-popup-btn:hover {
      background: var(--cm-red-dark);
    }

    .whatsapp-btn {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
      transition: all var(--transition-fast);
      border: none;
      position: relative;
    }

    @media (min-width: 768px) {
      .whatsapp-btn { width: 56px; height: 56px; }
    }

    .whatsapp-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    }

    .whatsapp-btn i {
      font-size: 24px;
      color: var(--cm-white);
    }

    @media (min-width: 768px) {
      .whatsapp-btn i { font-size: 28px; }
    }

    /* ============================================
       BACK TO TOP
    ============================================ */
    .back-to-top {
      position: fixed;
      bottom: 80px;
      right: 20px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--cm-red);
      color: var(--cm-white);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      opacity: 0;
      pointer-events: none;
      transition: all var(--transition);
      z-index: 899;
      border: none;
    }

    @media (min-width: 768px) {
      .back-to-top { width: 40px; height: 40px; bottom: 90px; right: 30px; }
    }

    .back-to-top.visible {
      opacity: 1;
      pointer-events: all;
    }

    .back-to-top:hover {
      background: var(--cm-red-dark);
      transform: translateY(-2px);
    }

    .back-to-top i {
      font-size: 14px;
    }

    @media (min-width: 768px) {
      .back-to-top i { font-size: 16px; }
    }

    /* ============================================
       PULSE ANIMATION FOR WHATSAPP
    ============================================ */
    @keyframes pulse-ring {
      0% { transform: scale(1); opacity: 1; }
      100% { transform: scale(1.4); opacity: 0; }
    }

    .whatsapp-btn::before {
      content: '';
      position: absolute;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: #25D366;
      animation: pulse-ring 2s ease-out infinite;
    }

    @media (min-width: 768px) {
      .whatsapp-btn::before { width: 56px; height: 56px; }
    }

    .whatsapp-btn {
      position: relative;
    }

    /* ============================================
       RESPONSIVE ADJUSTMENTS
    ============================================ */
    @media (max-width: 639px) {
      .hero-title { font-size: 26px; }
      .hero-description { font-size: 14px; }
      .section-title { font-size: 24px; }
      .section-padding { padding: 60px 0; }
      .process-step-desc { display: none; }
      .stat-number { font-size: 24px; }
    }

    /* Accessibility */
    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }
