:root {
        --primary-color: #008080; /* Azul turquesa principal */
        --secondary-color: #006666; /* Tom mais escuro para hover */
        --text-color: #ffffff;
        --bg-color: #f8f9fa;
      }

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

        body {
            font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
            /*line-height: 1.6;*/
            background-color: red;
            overflow-x: hidden;

         /* Barra de navegação */
        .navbar {
            background-color: #e3edf7;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            height: 180px;
            position: relative;
        }

        /* Logo */
        .logo {
            height: 150px;
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 100%;
            width: auto;
        }

        /* Menu principal */
        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            position: relative;
            padding: 0 15px;
        }

        .nav-links a {
            color: #008080;
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: color 0.3s;
            padding: 10px 0;
            display: inline-block;
        }

        .nav-links a:hover {
            color: #40dcff;
            border-top: 1px solid #008080;
            border-bottom: 0.5px solid #008080;
        }

        /* Submenu */
        .submenu {
            position: absolute;
            top: 100%;
            left: 0;
           /* background-color: #a12e2e;*/
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            /*border-radius: 0 0 15px 15px;*/
            width: 250px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 100;
            list-style: none;
        }

        .nav-links li:hover .submenu {
            opacity: 1;
            visibility: visible;
            background-color: #e3edf7;
            box-shadow: 0 5px 15px rgba(0,0,0,0.6);
        }

        .submenu li {
            padding: 0.8em 0;
            text-align: center;
            /*border-bottom: 1px solid #f0f0f0;*/
        }
        .submenu li:hover{
            background-color: #0fffe3;
        }

        .submenu a {
            padding: 12px 20px;
            width: 100%;
            font-size: 16px;
        }

        .submenu a:hover{
            color: #f9f9f9; 
            background-color: transparent;
            border: unset;
        }

        /* Botão mobile */
        .mobile-menu-btn {
            display: none;
            cursor: pointer;
        }

        .mobile-menu-btn div {
            width: 25px;
            height: 3px;
            background-color: #333333;
            margin: 5px;
            transition: all 0.3s;
        }

        /* Responsivo barra de menu */
        @media (max-width: 992px) {
            .nav-links {
                background-color:#e3edf7;
                position: absolute;
                top: 130px;
                left: 0;
                width: 100%;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                clip-path: circle(0px at 90% -10%);
                transition: all 0.5s ease-out;
                z-index: 100;
            }
            .logo{
                img{
                    height: 100px;
                }
            }

            .nav-links.open {
                clip-path: circle(1000px at 90% -10%);
            }

            .nav-links li {
                width: 100%;
                text-align: center;
                padding: 0;
                border: none;
            }

            .nav-links a {
                padding: 15px 0;
                display: block;
                color: #000;
            }
            .nav-links a:hover{
              border: none;
            }

            .submenu {
                position: static;
                width: 100%;
                opacity: 1;
                visibility: visible;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s;
                box-shadow: none;
                /*background-color: #0c0c0c;*/
            }

            .nav-links li:hover .submenu {
                max-height: 300px;
                border: unset;
            }

            .mobile-menu-btn {
                display: block;
            }

            .mobile-menu-btn.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .mobile-menu-btn.active div:nth-child(2) {
                opacity: 0;
            }

            .mobile-menu-btn.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
        }
        /*botão agendar*/
        .icons{
          display: flex;
          list-style: none;
          padding: 4em 0;
        }
        .text_social a{
          display: flex;
          justify-content: center;
          align-items: center;
          background: #e3edf7;
          color: #1373b7;
          width: 205px;
          height: 45px;
          font-size: 18px;
          font-weight: 600;
          border-radius: 20px;
          margin: 0 25px;
          text-decoration: none;
          box-shadow: -3px -3px 7px #ffffff73, 3px 3px 5px  rgba(94, 104, 121, 288);
          border: 2px solid rgba(0, 0, 0, 0.01);
        }
       .text_social a:hover{
          box-shadow: -3px -3px 7px #ffffff73, 3px 3px 5px inset rgba(94, 104, 121, 288);
          color: #1373b7;
        }
        /*responsivo botão agendar*/
        @media(max-width:500px){
        .icons{
          position: absolute;
          left: 12em;
          padding: 0;
          width: 100px;
        }
       .text_social a{
         width: 100px;
         text-align: center;
         font-size: 15px;
        }
        }

        /*Slider Principal*/
        .carousel-container {
          background-color: rgb(0, 0, 0);
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .carousel {
            display: flex;
            transition: transform 0.5s ease-in-out;
            width: 100%;
            height: 70vh;
            min-height: 400px;
        }

        .carousel-item {
            flex: 0 0 100%;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            opacity: 0.8;
            /*object-fit: cover;*/
            display: block;
        }

        .carousel-item:hover {
            transform: scale(1.02);
        }

        .carousel-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 30px;
            padding-bottom: 60px;
        }

        .carousel-content h2 {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .carousel-content p {
            font-size: 1rem;
            margin-bottom: 20px;
            max-width: 600px;
        }

        .schedule-btn {
            background-color: #ff6b6b;
            filter: brightness(1) invert(1);
            color: rgb(25, 86, 25);
            border: none;
            padding: 12px 25px;
            font-size: 1rem;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .schedule-btn:hover {
            background-color: #ff5252;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .schedule-btn a{
            text-decoration: none;
        }

        .carousel-nav {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .carousel-dot {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 1px solid aqua;
            background-color: #121212;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .carousel-dot.active {
            background-color: aqua;
        }

        @media (max-width: 768px) {
            .carousel {
                height: 60vh;
            }
            
            .carousel-content {
                padding: 20px;
                padding-bottom: 50px;
            }
            
            .carousel-content h2 {
                font-size: 1.5rem;
            }
            
            .carousel-content p {
                font-size: 0.9rem;
            }
            
            .schedule-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .carousel {
                height: 50vh;
                min-height: 300px;
            }
            
            .carousel-content {
                padding: 15px;
                padding-bottom: 40px;
            }
            
            .carousel-content h2 {
                font-size: 1.2rem;
            }
            
            .carousel-content p {
                font-size: 0.8rem;
            }
        }
        /*Texto-Central ozonio*/    
        .center-ozon {
           
            width: 100%;
            text-align: center;
            padding: 5em 0;
        }

        .center-ozon h1 {
            font-size: 3.5rem;
            color: var(--white);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .center-ozon h1 span {
            color: aqua;
        }

        .center-ozon p {
            font-size: 1.2rem;
            color: rgba(0, 0, 0, 0.9);
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        @media(max-width:500px){
           .center-ozon h1{
            font-size: 3rem;
           }
        }
        /*video plano-de-fundo "Sobre Ozonio"*/
        .containervideo{
          position: absolute;
          left: 0;
          right: 0;
          width: 100%;
          height:100%;
          z-index: -10;
        }
        .containervideo video{
          width: 100%;
        }

         /* Sobre Ozonio*/
        .about {
            padding: 5rem 5%;
            color: rgb(0, 0, 0);
        }
    
        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 4rem;
            align-items: center;
            animation:  name 11s infinite alternate;
        }

        .about-image {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(40, 135, 134, 0.2);          
        }

        .about-image img {
            width: 100%;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
            color: rgb(1, 102, 80);   
        }

        .about-text h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: #2047d6;
            border-radius: 2px;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            line-height: 1.6;
            font-size: 22px;
            text-shadow: 0 2px rgb(68, 226, 226);  
        }

        .about-list {
            margin: 2rem 0;
        }

        .about-list li {
            margin-bottom: 0.8rem;
            display: flex;
            align-items: flex-start;
        }

        .about-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: rgb(0, 0, 0);
            margin-right: 0.8rem;
        }
        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        .btn-primary {
            background: rgb(1, 102, 80);
            color: #ffffff;
            border: 2px solid var(--accent);
        }
        .btn-primary:hover {
            background: transparent;
            color: var(--accent);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(17, 16, 16, 0.3);
        }
        /*Responsivo Sobre nos*/
        @media (max-width: 900px) {
        .containervideo video{
            display: none;

          }
        .about-container{
            display: block;
            align-content: center;
        }
      
        .about-image {
            height: 300px;
            width: 600px;
        }

        .about-text h2 {
            padding: 4em  0 0;
            font-size: 2rem;   
        }

        .about-text p {
            font-size: 20px;
        }
        }

        @media(max-width:500px){
        .containervideo video{
          display: none;
        }
        
        .about{
          display: block;
        }
        .about-container {
            margin: 0;
        }
        .about-image {
            height: 300px;
            width: 350px;
        }
        .about-image img {
            width: 100%;
        }
        .about-text h2 {
            font-size: 2rem;   
        }
        .about-text p {
            margin-bottom: 1.5rem;
            line-height: 1.3;
            font-size: 20px;  
        }
        }

        /*Cards de Videos youtube*/
        .youtube{
           display: flex;
           justify-content: center;
           
        }
        .carrossel-container {
          width: 100%;
          max-width: 1260px;
          position: relative;
          overflow: hidden;
          padding: 240px 0 3em;
        }

        .carrossel {
          display: flex;
          transition: transform 0.6s ease-in-out;
        }

        .card-video {
          min-width: 600px;
          height: 300px;
          margin: 0 15px;
          /*border-radius: 12px;*/
          overflow: hidden;
          box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
          flex-shrink: 0;
          position: relative;
        }

        .video-container {
          width: 100%;
          height: 100%;
          position: relative;
        }

        .video-container iframe {
          width: 100%;
          height: 100%;
          /*object-fit: cover;*/
        }

        .video-overlay {
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
          color: white;
          padding: 15px;
        }

        .video-title {
          font-size: 18px;
          font-weight: 600;
          margin-bottom: 5px;
        }

        .video-desc {
          font-size: 14px;
          opacity: 0.9;
        }

        .controle {
          position: absolute;
          top: 60%;
          transform: translateY(-50%);
          width: 50px;
          height: 50px;
          background-color: #000;
          border-radius: 50%;
          display: flex;
          justify-content: center;
          align-items: center;
          cursor: pointer;
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
          z-index: 10;
          border: none;
          font-size: 24px;
          color: #1e9989;
          transition: all 0.3s ease;
        }

        .controle:hover {
          background-color: #1e9989;
          color: #000;
          transform: translateY(-50%) scale(1.1);
        }

        .controle.esquerda {
          left: 25px;
        }

        .controle.direita {
          right: 20px;
        }

        .indicadores {
          display: flex;
          justify-content: center;
          margin-top: 20px;
          gap: 8px;
        }

        .indicador {
          width: 12px;
          height: 12px;
          border-radius: 50%;
          background-color: #000000;
          cursor: pointer;
          transition: all 0.3s ease;
        }

        .indicador.ativo {
          background-color: #118888;
          transform: scale(1.2);
        }
        /*#Reponsivo Cards de videos#*/
        @media (max-width: 768px) {
          .card-video {
            min-width: 330px;
            height: 250px;
            margin: 0 10px;
          }

          .controle {
            width: 40px;
            height: 40px;
            font-size: 20px;
          }
        }

        @media (max-width: 500px) {
          .carrossel-container{
            width:350px;
          }
          
          .card-video {
            min-width: 300px;
            height: 200px;
            margin: 0 8px;
          }

          .controle {
            width: 36px;
            height: 36px;
            font-size: 18px;
          }

          .video-title {
            font-size: 16px;
          }

          .video-desc {
            font-size: 12px;
          }
        }

         /*Tratamentos*/
        .title-tratamentos{
          color: rgb(1, 102, 80);
          font-weight: 700;
          padding: 5em 0 40px;
          text-align: center;
          font-size: 2.5em;
        }

        .cards-container {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 30px;
          max-width: 1400px;
          margin: 0 auto;
        }

        .card {
          width: 400px;
          height: 500px;
          background-color: #b48e66;
          border-radius: 10px;
          overflow: hidden;
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          display: flex;
          flex-direction: column;
        }

        .card:hover {
          transform: translateY(-10px);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .card-image {
          width: 100%;
          height: 200px;
          object-fit: cover;
        }

        .card-content {
          padding: 20px;
          flex-grow: 1;
          display: flex;
          flex-direction: column;
        }

        .card-title {
          font-size: 22px;
          color: #ffffff;
          margin-bottom: 15px;
        }

        .card-text {
          color: #000;
          line-height: 1.6;
          margin-bottom: 20px;
          flex-grow: 1;
        }

        .card-button {
          display: inline-block;
          padding: 12px 25px;
          background-color: #b93b69;
          color: white;
          text-decoration: none;
          border-radius: 5px;
          font-weight: bold;
          text-align: center;
          transition: background-color 0.3s ease;
          align-self: flex-start;
        } 

        .card-button:hover {
          background-color: #51d9f4;
          color: #000;
        }
         /**Responsivo Tratamentos**/
        @media (max-width: 900px) {
          .cards-container {
            flex-direction: column;
            align-items: center;
          }

          .card {
            width: 100%;
            max-width: 400px;
          }
        }

        @media (max-width: 500px) {
          .title-trat {
            padding: 1em 0 40px;
          }
          .card {
            height: auto;
            width: 300px;
          }

          .card-image {
            height: 150px;
          }
        }
      }

      /*Cards de Produtos Fitoterapicos*/
      .produtos-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
        max-width: 1000px;
        margin: 0 auto;
      }

      .produto-card {
        width: 300px;
        height: 300px;
        background-color: #e8e3d5; /* Cor camurça */
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        position: relative;
        border: 1px solid #d0c9b5;
      }

      .produto-card:hover {
        transform: scale(1.03);
      }
      .title-produtos {
        padding: 7em 0 40px;
        text-align: center;
        font-weight: 600;
        color: rgb(1, 102, 80);
        font-size: 2.5em;
      }

      .produto-imagem {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-bottom: 2px solid #7fd4d4; /* Aqua */
      }

      .produto-conteudo {
        padding: 15px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
      }

      .produto-titulo {
        font-size: 18px;
        color: #006666; /* Aqua escuro */
        margin-bottom: 8px;
        text-align: center;
      }

      .produto-preco {
        color: #333;
        font-weight: bold;
        font-size: 20px;
        text-align: center;
        margin-top: auto;
        padding: 8px;
        background-color: #7fd4d4; /* Aqua */
        border-radius: 5px;
        
      }
      .produto-preco a{
        text-decoration: none;
        color: white;
      }
      
      /*
        .badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: #ff6b6b;
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
        }
        */
      @media (max-width: 700px) {
        .produtos-container {
          flex-direction: column;
          align-items: center;
        }

        .produto-card {
          width: 100%;
          max-width: 300px;
        }
      }

     
      /*Depoimentos de Pacientes*/
      .depo_iner {
        text-align: center;
        padding: 13em 0 0;
      }
      /*texto titulo*/
      .depoimentos {
        /*font-family: "Rowdies", sans-serif;*/
        color: rgb(1, 102, 80);
        font-size: 2.5em;
      }

      .sob_testimonial {
        display: flex;
        justify-content: center;
        padding: 2em 0 15em;
        border-bottom: 2px solid black;
      }
      .testimonial-container {
        border-radius: 15px;
        background-color: rgb(34, 48, 46);
        margin: 20px;
        position: relative;
        padding: 30px 80px;
        width: 700px;
        height: 350px;
        border: 3px solid rgb(72, 192, 178);
      }
      .testimonial {
        /*testo avaliação*/
        line-height: 18px;
        text-align: center;
        position: relative;
        justify-content: center;
        top: 8em;
        color: rgb(160, 160, 160);
        font-weight: bold;
      }
      .bxs-quote-alt-left {
        color: rgb(73, 247, 247);
        position: relative;
        top: 9rem;
        font-size: 25px;
        right: 2em;
      }
      .bxs-quote-alt-right {
        color: rgb(73, 238, 238);
        position: relative;
        top: 9rem;
        left: 21em;
        font-size: 25px;
      }
      .user {
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .user .user-image {
        /*imagem*/
        border-radius: 50%;
        border: 1px solid rgb(73, 238, 238);
        width: 100px;
        height: 100px;
        object-fit: cover;
        position: absolute;
        top: 55px;
        opacity: 1;
      }
      .user .usarname {
        margin: 0;
        color: rgb(237, 237, 238);
        position: relative;
        font-size: 15px;
        top: 7em;
      }
      .progress-bar {
        height: 1px;
        background-color: aqua;
        width: 100%;
        animation: grow 6s linear infinite; /*tempo da barra*/
        transform-origin: left;
      }
      @keyframes grow {
        0% {
          transform: scaleX(0);
        }
      }
      /*#Responsive Testimonial#*/
      @media (max-width: 700px) {
        .sob_testimonial {
          justify-content: center;
          background-color: rgb(191, 203, 202);
          text-align: center;
          padding: 0 0 4em;
          border: unset;
        }
        .testimonial-container {
          width: 100%;
          height: 390px;
          text-align: center;
        }
        .testimonial {
          /*texto*/
          line-height: 18px;
          position: relative;
          color: rgb(233, 236, 241);
          font-weight: none;
          text-align: center;
          width: 200px;
          top: 8em;
          margin: auto;
        }
        .user .user-image {
          border: 2px solid rgb(61, 191, 200);
        }
        .user .usarname {
          color: rgb(231, 220, 220);
          position: relative;
          top: 7em;
        }
        .bxs-quote-alt-left {
          position: relative;
          left: -4em;
          top: 7em;
        }
        .bxs-quote-alt-right {
          position: relative;
          left: 4em;
          top: 7em;
        }
      }
      @media(max-width:500px){
        .depo_iner {
          padding: 5em 0 2em;
      }
      }
      
      /*Rodapé e Copyright*/
      footer {
        background-color: var(--primary-color);
        color: var(--text-color);
        padding: 50px 0 25px;
      }

      .footer-container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 20px;
        display: grid;
        font-size: 18px;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      }
      /*
        .footer-hours{
            position: relative;
            left: 20em;
        }
        .footer-contact{
            position: relative;
            left: 10em;
        }*/
      .footer-links {
        position: relative;
        left: 5em;
      }

      .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 40px;
      }

      .footer-logo img {
        max-width: 300px;
        height: auto;
        filter: brightness(0) invert(1);
      }

      .footer-section h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
        text-transform: uppercase;
        font-weight: 600;
      }

      .footer-section h3::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 3px;
        background-color: rgb(5, 32, 123);
      }

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

      .footer-links li {
        margin-bottom: 12px;
      }

      .footer-links a {
        color: var(--text-color);
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
      }

      .footer-links a:hover {
        color: var(--text-color);
        transform: translateX(5px);
      }

      .footer-contact p,
      .footer-hours p {
        margin-bottom: 12px;
        display: flex;
        align-items: flex-start;
      }

      .footer-contact i,
      .footer-hours i {
        margin-right: 10px;
        margin-top: 3px;
      }

      .social-media {
        grid-column: 1 / -1;
        text-align: center;
        margin: 30px 0;
      }

      .social-media a {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        color: black;
        background-color: rgb(59, 227, 149);
        width: 42px;
        height: 42px;
        border-radius: 50%;
        margin: 0 8px;
        transition: all 0.3s ease;
        font-size: 1.3rem;
      }

      .social-media a:hover {
        background-color: rgb(34, 222, 255);
        color: var(--text-color);
        transform: translateY(-5px);
      }

      .copyright {
        grid-column: 1 / -1;
        text-align: center;
        padding-top: 25px;
        border-top: 1px solid rgb(255, 255, 255);
        font-size: 0.9rem;
      }
      /*#Responsivo Rodapé#*/
      @media (max-width: 825px) {
        .footer-container {
          grid-template-columns: 1fr;
          text-align: center;
          gap: 25px;
        }
        .footer-links {
          left: 0;
        }
        .footer-logo img {
          width: 150px;
        }

        .footer-section h3::after {
          left: 50%;
          transform: translateX(-50%);
        }

        .footer-contact p,
        .footer-hours p {
          justify-content: center;
        }

        .social-media a {
          margin: 0 5px;
        }
      }

      /*i
      nserir particulas*/
      /*#particles-js {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -10;
      }*/
