
    :root {
      --primary-light: #00A5B5;
      --primary-dark: #004E7C;
      --accent: #FF8000;
      --bg: #f9f9f9;
      --text: #333;
      --heading: 'Segoe UI', sans-serif;
      --body: 'Open Sans', sans-serif;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: var(--body); color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; }
    header { background: #fff; padding: 0rem 2rem; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
    .container { max-width: 1200px; margin: 0 auto; padding: 2rem 1rem; }
    nav { display: flex; align-items: center; justify-content: space-between; position: relative; }
    nav img.logo { height: 50px; }
    .nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--primary-dark); cursor: pointer; }
    .nav-menu { list-style: none; display: flex; gap: 1.5rem; }
    .nav-menu li a { color: var(--primary-dark); text-decoration: none; font-weight: 600; transition: color .3s; }
    .nav-menu li a:hover { color: var(--accent); }

    .hero { background: #fff; }
    .hero .hero-container { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 2rem; }
    .hero-image { text-align: center; }
    .hero-image img { max-width: 100%; max-height: 500px; transition: transform .4s; }
    .hero-image img:hover { transform: scale(1.05); }
    .hero-text h1 { font-family: var(--heading); font-size: 2.1rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 1rem; }
    .hero-text p { font-size: 1.1rem; margin-bottom: 1rem; }
    .hero-text span.sub { display: block; font-style: italic; color: var(--primary-light); font-size: 1rem; margin-bottom: 1.5rem; }
    .btn-primary {
      background: var(--accent);
      color: #fff;
      padding: 1rem 2rem;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-size: 1rem;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: background .3s, transform .3s;
      display: inline-block;
    }
    .btn-primary:hover { background: #e67300; transform: translateY(-2px); }

    section h2 {
      font-family: var(--heading);
      font-size: 2rem;
      text-align: center;
      color: var(--primary-dark);
      margin-bottom: 2rem;
      position: relative;
    }
    section h2::after {
      content: "";
      width: 80px;
      height: 3px;
      background: var(--accent);
      display: block;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .logo{
      color: white;
    }

    .about-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: center;
      margin: 2rem 0;
    }
    .about-content {
      line-height: 1.8;
    }

    .about-content p{
      max-width: 500px;
      margin: 0 auto;
      text-align: left;
    }
    .about-image img {
      max-width: 100%; max-height: 500px; transition: transform .4s; 
      box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    }

    .about-quote {
      margin: 2rem 0;
      padding: 1rem 1.5rem;
      border-left: 4px solid var(--accent);
      background: #f0f8ff;
      font-style: italic;
      color: var(--primary-dark);
    }

    /* Responsivo: empilha no mobile */
    @media (max-width: 768px) {
      .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
      }
      .about-image {
        order: -1; /* imagem acima do texto */
        margin-bottom: 1.5rem;
      }
    }


    .services-grid, .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }
    .services-grid .card {
      background: #fff;
      padding: 2rem;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .services-grid .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    }
    .services-grid .card .icon {
      font-size: 2.5rem;
      color: var(--accent);
      margin-bottom: 1rem;
    }
    .services-grid .card h3 {
      margin-bottom: 0.5rem;
      color: var(--primary-dark);
    }
 
      @media (max-width: 768px) {

      .services-grid .card:nth-child(3) {
      grid-column: 1 / -1;
      justify-self: center;
      }

     }
   

    .link-btn {
      color: var(--accent);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s;
    }
    .link-btn:hover { color: var(--primary-dark); }

    .products-carousel .swiper-slide {
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      text-align: center;
      padding: 1rem;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .products-carousel .swiper-slide img {
      width: 100%;
      height: auto;
      border-radius: 6px;
      margin-bottom: .5rem;
    }

    .ormenu-header{
      text-align: center;
    }
    .ormenu-logo{
      width: 200px;
      height: 200px;
    }

    .btn-demo{
      text-align: center;
      padding: 1rem 2rem;
    }

    .slide-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      align-items: center;
    }

   .slide-text {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
  }
  .slide-text h3 {
   
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
  }
  .slide-text p {
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  

    .slide-image img {
      width: 100%;
      border-radius: 6px;
    }
    @media (max-width: 768px) {
      .slide-content {
        display: flex;
        flex-direction: column-reverse;
        text-align: center;
      }
    }
    .features {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
      margin-top: 1rem;
    }
    .features div {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--primary-dark);
    }

     .Logo-rodape{
        width: 160px;
        height: 60px;
    }

    .contact-grid {
      padding: 20px;
      margin: 20px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }
    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 0.75rem;
      margin-bottom: 1rem;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 1rem;
    }
    .contact-form button {
      width: 100%;
    }
    .contact-info p {
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.95rem;
    }
    .map iframe {
      width: 100%;
      height: 180px;
      border: 0;
      border-radius: 4px;
    }

    @media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
  }
}

     .whatsapp-btn { position: fixed; bottom: 20px; right: 20px; background: var(--accent); color: #fff; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0,0,0,0.2); cursor: pointer; text-decoration: none; font-size: 1.5rem; transition: background .3s; }
    .whatsapp-btn:hover { background: #25d366; }

    footer {
      background: #222;
      color: #ccc;
      padding: 3rem 1rem 1rem;
    }
    .footer-col h4 {
      color: #fff;
      margin-bottom: 1rem;
    }

    .footer-col img.logo {
      height: 40px;      /* Reduz para um tamanho profissional */
      margin-bottom: 1rem;
    }



    .footer-col ul { list-style: none; padding: 0; }
    .footer-col ul li { margin-bottom: 0.5rem; }
    .footer-col ul li a { color: #ccc; text-decoration: none; }
    .footer-col ul li a:hover { color: var(--accent); }
    .social a { margin-right: 1rem; font-size: 1.2rem; color: #ccc; }
    .social a:hover { color: var(--accent); }
    .footer-bottom {
      text-align: center;
      font-size: 0.85rem;
      margin-top: 2rem;
    }
    .footer-bottom a { color: #777; text-decoration: none; }
    .footer-bottom a:hover { color: #fff; }

    .modal {
      display: none; 
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0,0,0,0.6);
      align-items: center;
      justify-content: center;
      z-index: 1000;
    }
    .modal-content {
      background: #fff;
      padding: 2rem;
      color: var(--primary-light);
      border-radius: 8px;
      width: 90%;
      max-width: 800px;
      position: relative;
    }
    .modal-close {
      position: absolute;
      top: 12px; right: 16px;
      font-size: 1.5rem;
      cursor: pointer;
      color: #000000;
    }
    .modal-content h3 {
      margin-bottom: 1rem;
      font-family: var(--heading);
      color: var(--primary-dark);
    }
    .modal-content .form-group {
      margin-bottom: 1rem;
    }
    .modal-content .form-group label {
      display: block;
      margin-bottom: .25rem;
      font-weight: 600;
    }
    .modal-content .form-group input,
    .modal-content .form-group select,
    .modal-content .form-group textarea {
      width: 100%;
      padding: .75rem;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-size: 1rem;
    }
    .modal-content button[type="submit"] {
      width: 100%;
      margin-top: .5rem;
    }

    .success-card {
      position: fixed;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%) scale(0);
      background: #fff;
      padding: 2rem;
      border-radius: 8px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
      text-align: center;
      z-index: 1100;
      color: var(--primary-light);
      transition: transform 0.3s ease;
    }
    .success-card.show {
      transform: translate(-50%, -50%) scale(1);
    }
    .success-card h4 {
      margin-bottom: 1rem;
      color: var(--primary-dark);
    }
    .success-card button {
      margin-top: 1rem;
    }

    @media (max-width: 992px) {
      .nav-toggle { display: block; }
      .nav-menu {
        position: absolute;
        padding: 20px;
        top: 100%;
        right: 0;
        background: #fff;
        flex-direction: column;
        width: 200px;
        display: none;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      }
      .nav-menu.active { display: flex; }
    }
    @media (max-width: 768px) {
    
      

    .hero .hero-text p{
      line-height: 1.6;
      font-size: 1rem;
      margin-bottom: 1rem;
    }
    .hero .hero-container {
      display: flex;
      flex-direction: column;
      padding: 2rem 1rem;
    }
    .hero-image {
      display: none;
    }

    
  }

   
