
    :root {
      --orange: #FF6B00;
      --orange-dark: #E55A00;
      --black: #1A1A1A;
      --gray: #333;
      --light-gray: #f5f5f5;
      --white: #ffffff;
      --blue: #007bff;
    }

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

    body {
      font-family: 'Poppins', sans-serif;
      background-color: var(--white);
      color: var(--black);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Header */
    header {
      background-color: var(--black);
      color: var(--white);
      padding: 1rem 0;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      transition: padding 0.3s;
    }

    .header-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo img {
      height: 50px;
      width: auto;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 2rem;
    }

    nav ul li a {
      color: var(--white);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
    }

    nav ul li a:hover {
      color: var(--orange);
    }

    .contact-info {
      font-size: 0.9rem;
      text-align: right;
    }

    .contact-info i {
      color: var(--orange);
      margin-right: 0.5rem;
    }

    .header-social {
      display: flex;
      gap: 1rem;
    }

    .header-social a {
      color: var(--white);
      font-size: 1.2rem;
      transition: color 0.3s;
    }

    .header-social a:hover {
      color: var(--orange);
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('https://r2.orangestoreoficial.com.br/assets/fotosDaLoja/OrangeStoreFotoExterna1.jpg') center/cover no-repeat;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: var(--white);
      margin-top: 70px;
      position: relative;
      padding-bottom: 10rem;
    }

    .hero-content {
      max-width: 800px;
      padding: 2rem;
      opacity: 0;
      transform: translateY(30px);
    }

    .hero h1 {
      font-size: 3.5rem;
      margin-bottom: 1rem;
      font-weight: 700;
      text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    }

    .hero p {
      font-size: 1.3rem;
      margin-bottom: 2rem;
      text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    }

    .btn-primary {
      background-color: var(--orange);
      color: white;
      padding: 1rem 2.5rem;
      border: none;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
      display: inline-block;
      box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    }

    .btn-primary:hover {
      background-color: var(--orange-dark);
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
    }

    /* Scroll Indicator */
    .scroll-indicator {
      position: absolute;
      bottom: 8rem;
      left: 50%;
      transform: translateX(-50%);
      width: 30px;
      height: 50px;
      border: 2px solid white;
      border-radius: 25px;
      display: flex;
      justify-content: center;
      opacity: 1;
    }

    .scroll-indicator::before {
      content: '';
      width: 6px;
      height: 12px;
      background: white;
      border-radius: 3px;
      margin-top: 10px;
      animation: scroll 1.5s infinite;
    }

    @keyframes scroll {
      0% { transform: translateY(0); opacity: 1; }
      100% { transform: translateY(20px); opacity: 0; }
    }

    /* Diferenciais Section */
    .diferenciais {
      padding: 6rem 2rem;
      background-color: var(--light-gray);
    }

    .diferenciais-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }

    .card {
      background: white;
      padding: 2rem;
      border-radius: 16px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      text-align: center;
      opacity: 0;
      transform: translateY(30px);
    }

    .card:hover {
      transform: translateY(-8px);
    }

    .card-icon {
      width: 70px;
      height: 70px;
      margin: 0 auto 1.5rem;
      background-color: #e3f2fd;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .card-icon i {
      font-size: 2rem;
      color: var(--blue);
    }

    .card h3 {
      font-size: 1.4rem;
      margin-bottom: 1rem;
      color: var(--blue);
      font-weight: 600;
    }

    .card p {
      font-size: 1rem;
      color: #555;
      margin-bottom: 1.5rem;
    }

    .card .btn-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background-color: var(--blue);
      color: white;
      padding: 0.7rem 1.5rem;
      border-radius: 50px;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.3s;
    }

    .card .btn-cta:hover {
      background-color: #0056b3;
      transform: translateX(5px);
    }

    .card .btn-cta i {
      font-size: 1.1rem;
    }

    /* Assistencia Tecnica Section */
    .assistencia-tecnica {
      padding: 6rem 2rem;
      background-color: var(--white);
    }

    .assistencia-tecnica-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .assistencia-tecnica-text h2 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      color: var(--black);
    }

    .assistencia-tecnica-text p {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
      color: #555;
    }

    .assistencia-tecnica-image img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    /* Store Section */
    .store {
      padding: 6rem 2rem;
      background-color: var(--white);
    }

    .store-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .store-text h2 {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      color: var(--black);
    }

    .store-text p {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
      color: #555;
    }

    .store-gallery {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .store-gallery img {
      width: 100%;
      aspect-ratio: 4/3; /* Ajustado para 4:3 */
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s;
    }

    .store-gallery img:hover {
      transform: scale(1.05);
    }

    /* Location Section */
    .location {
      padding: 6rem 2rem;
      background-color: var(--black);
      color: var(--white);
      text-align: center;
    }

    .location h2 {
      font-size: 2.5rem;
      margin-bottom: 2rem;
    }

    .map-container {
      max-width: 1000px;
      margin: 2rem auto;
      height: 450px;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* Contact Form Section */
    .contact-form {
      padding: 6rem 2rem;
      background-color: var(--light-gray);
    }

    .contact-form-container {
      max-width: 800px;
      margin: 0 auto;
      background-color: white;
      padding: 3rem;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .contact-form h2 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: var(--black);
      text-align: center;
    }

    .contact-form p {
      text-align: center;
      margin-bottom: 2rem;
      color: #555;
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 500;
      color: var(--gray);
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 1rem;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-family: inherit;
      font-size: 1rem;
      transition: border 0.3s;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--orange);
      box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
    }

    .form-group textarea {
      min-height: 120px;
      resize: vertical;
    }

    .submit-btn {
      background-color: var(--orange);
      color: white;
      padding: 1rem 2.5rem;
      border: none;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      width: 100%;
      transition: all 0.3s;
    }

    .submit-btn:hover {
      background-color: var(--orange-dark);
      transform: translateY(-2px);
    }

    /* Footer */
    footer {
      background-color: var(--gray);
      color: var(--white);
      padding: 3rem 2rem;
      text-align: center;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .social-links {
      margin: 1.5rem 0;
    }

    .social-links a {
      color: var(--orange);
      font-size: 1.5rem;
      margin: 0 1rem;
      transition: color 0.3s;
    }

    .social-links a:hover {
      color: white;
    }

    /* WhatsApp Float */
    .whatsapp-float {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #25D366;
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
      z-index: 999;
      transition: all 0.3s;
      text-decoration: none !important;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      background-color: #128C7E;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .store-container, .assistencia-tecnica-container {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .hero h1 {
        font-size: 2.8rem;
      }

      .store-gallery {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      nav ul {
        display: none;
      }

      .hero h1 {
        font-size: 2.3rem;
      }

      .hero p {
        font-size: 1.1rem;
      }

      .contact-info {
        display: none;
      }

      .contact-form-container {
        padding: 2rem;
      }

      .diferenciais-container {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 480px) {
      .hero h1 {
        font-size: 2rem;
      }

      .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
      }

      .scroll-indicator {
        bottom: 8rem;
      }
    }
