/* Reset e variáveis VERMELHO LOGO */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      text-decoration: none;
    }

    :root {
      --primary: #dc2626;
      --primary-dark: #b91c1c;
      --primary-light: #ef4444;
      --accent: #f43f5e;
      --dark: #1f2937;
      --glass: rgba(255, 255, 255, 0.1);
      --glass-white: rgba(255, 255, 255, 0.95);
      --shadow: 0 20px 25px -5px rgba(0, 0,0, 0.3);
      --shadow-lg: 0 25px 50px -12px rgba(0, 0,0, 0.4);
    }

    /* FUNDO TODO VERMELHO ANIMADO */
    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
      color: white;
      overflow-x: hidden;
      background: linear-gradient(135deg, var(--glass));
      background-size: 400% 400%;
      background-size: contain;
      background-position: bottom;
      background-repeat: no-repeat;
    }

    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    header {
      position: fixed;
      top: 0;
      width: 100%;
      background: var(--glass-white);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .nav {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .brand-name {
      font-size: 1.8rem;
      font-weight: 800;
      background: linear-gradient(135deg, #dc2626 70%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-decoration: none;
    }

    .nav-menu {
      display: flex;
      gap: 1.5rem;
      align-items: center;
    }

    /* Link ativo (texto branco sempre visível no fundo vermelho) */
    .nav-menu a.active {
      background: linear-gradient(135deg, var(--primary-light), var(--primary));
      color: white !important;
      box-shadow: var(--shadow);
      text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }

    .nav-menu a {
      color: var(--dark);
      text-decoration: none;
      font-weight: 500;
      padding: 0.5rem 1rem;
      border-radius: 50px;
      transition: all 0.3s ease;
      position: relative;
    }

    .nav-menu a:hover {
      background: linear-gradient(135deg, var(--primary-light), var(--primary));
      color: white !important;
      transform: translateY(-2px);
      box-shadow: var(--shadow);
      text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }

    /* Mobile menu também com texto branco no fundo vermelho */
    .nav-mobile a.active,
    .nav-mobile a:hover {
      background: linear-gradient(135deg, var(--primary-light), var(--primary)) !important;
      color: white !important;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 4px;
    }

    .hamburger span {
      width: 28px;
      height: 3px;
      background: var(--primary-light);
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -5px);
    }

    .nav-mobile {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--glass-white);
      backdrop-filter: blur(20px);
      flex-direction: column;
      padding: 1rem 0;
      box-shadow: var(--shadow);
    }

    .nav-mobile.active {
      display: flex;
    }

    .nav-mobile a {
      padding: 1rem 2rem;
      color: var(--dark);
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    /* ✅ BOTÃO WHATSAPP FIXO À DIREITA - TOOLTIP CORRIGIDO */
    .whatsapp-float {
      position: fixed;
      right: 105px;
      bottom: 3.7rem;
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #25D366, #128C7E);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-lg);
      z-index: 1001;
      cursor: pointer;
      transition: all 0.3s ease;
      animation: pulse-whatsapp 2s infinite;
    }

    .whatsapp-float:hover {
      transform: scale(1.1) rotate(10deg);
      box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    }

    .whatsapp-float i {
      font-size: 1.8rem;
      color: white;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    }

    /* Tooltip moderno - SAINDO PARA A DIREITA DO BOTÃO */
    .whatsapp-tooltip {
      position: absolute;
      right: 70px; /* Sai para a DIREITA do botão */
      top: 50%;
      transform: translateY(-50%);
      background: linear-gradient(135deg, #25D366, #128C7E);
      color: white;
      padding: 12px 16px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 600;
      white-space: nowrap;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
      z-index: 1002;
    }

    /* ✅ PONTINHO PERFEITO APONTANDO PARA ESQUERDA */
    .whatsapp-tooltip::before {
      content: '';
      position: absolute;
      right: -8px; /* Na ponta DIREITA do tooltip */
      top: 50%;
      transform: translateY(-50%);
      width: 0;
      height: 0;
      border-top: 8px solid transparent;
      border-bottom: 8px solid transparent;
      border-left: 8px solid #25D366; /* ➜ Aponta para ESQUERDA */
    }

    .whatsapp-float:hover .whatsapp-tooltip {
      opacity: 1;
      visibility: visible;
      animation: slideInLeft 0.3s ease;
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateY(-50%) translateX(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
      }
    }

    @keyframes pulse-whatsapp {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }

    .hero {
      padding: 7rem 2rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      gap: 4rem;
      align-items: center;
      background: linear-gradient(135deg, #991b1b 20%, #991b1b 10%, #dc2626 70%);
    }

    .tagline {
      flex: 1;
    }

    .tagline h1 {
      font-size: clamp(2.5rem, 5vw, 3.7rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 1.5rem;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .tagline p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      max-width: 500px;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    }

    .cta {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn {
      padding: 1rem 2rem;
      border: none;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn.primary {
      background: linear-gradient(135deg, var(--primary-light), var(--primary), var( --primary-dark));
      color: yellow;
      box-shadow: var(--shadow);
      text-shadow: 1px 1px 1px #000;
    }

    .btn.primary:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }

    .btn.secondary {
      background: transparent;
      color: white;
      border: 2px solid rgba(255,255,255,0.9);
    }

    .btn.secondary:hover {
      background: white;
      color: var(--dark);
      transform: translateY(-2px);
    }

    .hero-media {
      flex: 1;
      text-align: right;
    }

    .mock-image {
      width: 100%;
      max-width: 500px;
      height: auto;
      object-fit: contain;
      filter: drop-shadow(var(--shadow-lg));
      border-radius: 20px;
    }

    section {
      padding: 5rem 2rem;
      max-width: 1200px;
      margin: 2rem auto;
      border-radius: 20px;
      backdrop-filter: blur(20px);
      box-shadow: var(--shadow);
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 1.5rem);
      text-align: center;
      margin-bottom: 3rem;
      background: linear-gradient(135deg, var(--primary-light), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: var(--dark);
      margin-bottom:20px;
    }

    .video-wrap {
      max-width: 800px;
      margin: 0 auto;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    video {
      width: 100%;
      height: 70vh;
      display: block;
    }

    .carousel {
      max-width: 800px;
      margin: 0 auto 2rem;
      overflow: hidden;
      border-radius: 20px;
      box-shadow: var(--shadow-lg);
    }

    .slides {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      width: 100%;
      height: 400px;
    }

    .slide {
      min-width: 100%;
      height: 400px;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .dots {
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 1rem;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.3s ease;
      background: linear-gradient(135deg, orange, var(--glass))
    }

    .dot.active {
      background: var(--primary-light);
      transform: scale(1.2);
      box-shadow: 0 0 10px var(--primary-light);
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 800px;
      margin: 0 auto;
    }

    .card {
      padding: 2rem;
      border-radius: 20px;
      text-align: center;
      backdrop-filter: blur(20px);
      box-shadow: var(--shadow);
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: white;
      box-shadow: var(--shadow-lg);
      border-color: var(--primary-light);
    }

    #atendimento .card {
      background: linear-gradient(var(--glass), yellow);
    }

    #atendimento .card div {
      color: #1f2937;
    }

    .card:hover {
      transform: translateY(-10px);
    }

    .card strong {
      font-size: 1.5rem;
      display: block;
      color: var(--primary-light);
    }

    .card .fa-whatsapp { font-size: 1.6rem; color: green; }
    .card .fa-facebook { color: blue; }

    .topo-header {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--primary-light), var(--primary));
      border-radius: 50%;
      display: none;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: var(--shadow-lg);
      transition: all 0.3s ease;
      z-index: 1000;
      font-size: 1.5rem;
      color: white;
    }

    .topo-header:hover {
      transform: scale(1.1);
    }

    footer {
      background: rgba(0,0,0,0.5);
      color: white;
      text-align: center;
      padding: 2rem;
      backdrop-filter: blur(20px);
      margin-top: 2rem;
    }

    footer div {
      display: flex;
      align-items: center;
      gap: 5px;
      justify-content: center;
      margin-top: 15px;
    }

    footer p {
      font-size: 14px;
      margin-top: -10px;
      letter-spacing: 1px;
      color: #000;
    }

    footer br {
      display: none;
    }

    footer div img {
      width: 64px;
    }

    @media (max-width: 870px) {
      .whatsapp-float {
        right: 33px;
        bottom: 100px;
        width: 55px;
        height: 55px;
      }
    }

    @media (max-width: 768px) {
      .hamburger {
        display: flex;
      }

      .nav-menu {
        display: none;
      }

      .hero {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 7rem 2rem 3rem;
      }

      .hero-media {
        text-align: center;
        order: -1;
      }

      .tagline h1 { 
        display: none; 
      }

      .cta {
        justify-content: center;
      }

      section {
        padding: 6rem 1rem 5rem;
        margin: 1rem;
      }

      .whatsapp-float i {
        font-size: 1.6rem;
      }

      /* Tooltip desabilitado em mobile */
      .whatsapp-tooltip {
        display: none;
      }
    }

    @media (max-width: 540px) {
      footer {
        text-align: left;
      }

      footer div {
        justify-content: left;
      }

      footer br {
        display: flex;
      }
    }

