 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     -webkit-font-smoothing: antialiased;
     -moz-osx-font-smoothing: grayscale;
     transition: all 0.5s;
     font-family: "Roboto", sans-serif;
 }

 :root {
     --primary-color: #35ff49;
     --secondary-color: #2C3E50;
     --accent-color: #3498DB;
     --text-color: #2C3E50;
     --linght-gray: #F8F9FA;
     --border-color: #E9ECEF;
     --success-color: #2ecc71;
     --error-color: #e74c3c;
 }

 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     color: var(--text-color);
     background-color: var(--linght-gray);
     line-height: 1.6;
 }

 body.no-scroll {
     overflow: hidden;
 }


 /*ANIMAÇÕES*/


 /* OVERLAY */
 .ProductModalOverlay {
     position: fixed;
     inset: 0;
     z-index: 9999;
     background: rgba(0, 0, 0, 0.72);
     backdrop-filter: blur(6px);
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 24px;
     opacity: 0;
     visibility: hidden;
     pointer-events: none;
     transition: opacity 0.3s ease, visibility 0.3s ease;
 }

 /* modal aberto */
 .ProductModalOverlay.active {
     opacity: 1;
     visibility: visible;
     pointer-events: auto;
 }

 /* CAIXA PRINCIPAL */
 .ProductModalBox {
     position: relative;
     width: min(1180px, 100%);
     min-height: 620px;
     background: #ffffff;
     border-radius: 24px;
     box-shadow: 0 35px 80px rgba(0, 0, 0, 0.28);
     overflow: hidden;
     transform: translateY(18px) scale(0.98);
     transition: transform 0.35s ease;
 }

 .ProductModalOverlay.active .ProductModalBox {
     transform: translateY(0) scale(1);
 }

 /* BOTÃO FECHAR */
 .ProductModalClose {
     position: absolute;
     top: 18px;
     right: 18px;
     z-index: 4;
     width: 46px;
     height: 46px;
     border: none;
     border-radius: 50%;
     background: rgba(17, 17, 17, 0.08);
     color: #111;
     font-size: 1.8rem;
     font-weight: 500;
     cursor: pointer;
     transition: 0.25s ease;
 }

 .ProductModalClose:hover {
     background: #111;
     color: #fff;
     transform: rotate(90deg);
 }

 /* CONTEÚDO */
 .ProductModalContent {
     display: grid;
     grid-template-columns: 1fr 1fr;
     min-height: 620px;
 }

 /* LADO ESQUERDO */
 .ProductModalInfo {
     padding: 60px 54px 54px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     background: #fff;
 }

 .ProductModalTitle {
     font-size: 3rem;
     line-height: 1.02;
     color: #111;
     font-weight: 800;
     margin-bottom: 18px;
 }

 .ProductModalPrice {
     font-size: 2rem;
     font-weight: 800;
     color: #111;
     margin-bottom: 22px;
 }

 .ProductModalDescription {
     font-size: 1.02rem;
     line-height: 1.75;
     color: #666;
     margin-bottom: 24px;
     max-width: 520px;
 }

 .ProductModalSpecs {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 12px;
     margin-bottom: 34px;
     padding: 0;
 }

 .ProductModalSpecs li {
     position: relative;
     padding-left: 18px;
     color: #444;
     font-size: 0.98rem;
     line-height: 1.55;
 }

 .ProductModalSpecs li::before {
     content: "";
     position: absolute;
     left: 0;
     top: 11px;
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: #00f228;
 }

 .ProductModalBuyBtn {
     width: fit-content;
     min-height: 56px;
     padding: 0 32px;
     border: none;
     border-radius: 999px;
     background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
     color: #fff;
     font-size: 0.96rem;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: 0.04em;
     cursor: pointer;
     transition: 0.5s ease;
 }

 .ProductModalBuyBtn:hover {
     transform: translateY(-2px);
     background: linear-gradient(135deg, #00f228, #00f269);
     color: #ffffff;
 }

 /* LADO DIREITO */
 .ProductModalGallery {
     position: relative;
     background: #f7f5f2;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 40px;
 }

 .ProductImagePlaceholder {
     width: min(100%, 430px);
     height: 460px;
     border-radius: 24px;
     background: #111;
     object-fit: cover;
     display: block;
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
 }

 /* setas laterais */
 .ProductGalleryArrow {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 52px;
     height: 52px;
     border: none;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.95);
     color: #111;
     font-size: 1.2rem;
     font-weight: 700;
     cursor: pointer;
     box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
     transition: 0.25s ease;
     z-index: 2;
 }

 .ProductGalleryArrow:hover {
     background: #111;
     color: #fff;
 }

 .ProductGalleryArrow.left {
     left: 28px;
 }

 .ProductGalleryArrow.right {
     right: 28px;
 }

 /* RESPONSIVO */
 @media (max-width: 980px) {
     .ProductModalBox {
         max-height: 92vh;
         overflow-y: auto;
     }

     .ProductModalContent {
         grid-template-columns: 1fr;
     }

     .ProductModalInfo {
         padding: 42px 28px 34px;
         order: 2;
     }

     .ProductModalGallery {
         min-height: 380px;
         padding: 70px 20px 30px;
         order: 1;
     }

     .ProductModalTitle {
         font-size: 2.2rem;
     }

     .ProductModalPrice {
         font-size: 1.7rem;
     }

     .ProductImagePlaceholder {
         width: 100%;
         max-width: 420px;
         height: 320px;
     }

     .ProductGalleryArrow.left {
         left: 14px;
     }

     .ProductGalleryArrow.right {
         right: 14px;
     }
 }

 @media (max-width: 640px) {
     .ProductModalOverlay {
         padding: 12px;
     }

     .ProductModalBox {
         border-radius: 18px;
     }

     .ProductModalClose {
         top: 12px;
         right: 12px;
         width: 42px;
         height: 42px;
     }

     .ProductModalInfo {
         padding: 34px 20px 28px;
     }

     .ProductModalTitle {
         font-size: 1.85rem;
     }

     .ProductModalDescription {
         font-size: 0.96rem;
     }

     .ProductModalBuyBtn {
         width: 100%;
     }

     .ProductImagePlaceholder {
         height: 260px;
         border-radius: 18px;
     }

     .ProductGalleryArrow {
         width: 44px;
         height: 44px;
     }
 }


 /* --- ESTILOS DA LOJA (HEADER, PRODUTOS, ETC) --- */
 .hero-header {
     background-color: #ffffff0d;
     padding: 1rem 2rem;
     flex-wrap: wrap;
     box-shadow: 0 2px 5px rgb(0 0 0 / 30%);
     position: absolute;
     top: 0;
     left: 0;
     z-index: 1000;
     margin: 0 auto 40px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 20px;
     width: 100%;
     backdrop-filter: blur(5px);

     transition:
         background .35s ease,
         transform .35s ease,
         box-shadow .35s ease,
         padding .35s ease;
 }

 /* Header fixo */
 .hero-header.fixed {
     position: fixed;
     top: 0;
     left: 0;

     background: rgba(87, 87, 87, 0.285);

     box-shadow: 0 8px 25px rgba(0, 0, 0, .25);

     animation: headerSlide .35s ease;
 }


 @keyframes headerSlide {
     from {
         transform: translateY(-100%);
     }

     to {
         transform: translateY(0);
     }
 }

 .LogoCutelaria {
     width: 70%;
 }

 .NavHeader {
     display: flex;
     gap: 25px;
 }

 .LinkHEader {
     font-weight: 600;
     cursor: pointer;
 }

 .LinkHEader:hover {
     text-shadow: 0 0 15px rgb(0, 255, 0);
 }

 .hero-section {
     padding: 3rem 2rem;
     height: 85vh;
 }

 .hero-section {
     position: relative;
     min-height: 93vh;
     color: #fff;
     overflow: hidden;
     padding: 100px 0;
     background:
         linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.58) 42%, rgba(0, 0, 0, 0.75) 100%),
         linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.78)),
         url("./imgs/BackgroundSec1.png");
     background-size: cover;
     background-position: center;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
 }

 /* brilho suave para dar mais profundidade */
 .hero-section::before {
     content: "";
     position: absolute;
     inset: 0;
     background:
         radial-gradient(circle at 18% 42%, rgba(53, 255, 113, 0.12), transparent 26%),
         radial-gradient(circle at 70% 25%, rgba(53, 255, 113, 0.08), transparent 22%);
     pointer-events: none;
 }


 .hero-logo {
     display: flex;
     align-items: center;
     gap: 12px;
     font-weight: 800;
     font-size: 1.2rem;
     letter-spacing: -0.02em;
 }

 .hero-logo i {
     color: #31ff69;
     font-size: 1.2rem;
 }

 .hero-logo span {
     color: #fff;
 }

 .hero-top-btn:hover {
     transform: translateY(-2px);
     background: rgba(255, 255, 255, 0.14);
 }

 .hero-container {
     position: relative;
     z-index: 2;
     max-width: 90%;
     margin: 0 auto;
     min-height: calc(100vh - 120px);
     align-items: center;
     gap: 48px;
     display: flex;
 }

 .hero-content {
     max-width: 700px;
 }

 .hero-kicker {
     display: inline-block;
     margin-bottom: 18px;
     color: #31ff69;
     font-size: 0.82rem;
     font-weight: 700;
     letter-spacing: 0.22em;
     text-transform: uppercase;
 }

 .hero-title {
     font-size: 58px;
     line-height: 0.98;
     font-weight: 900;
     letter-spacing: -0.04em;
     margin-bottom: 22px;
     max-width: 760px;
 }

 .hero-title span {
     color: #31ff69;
 }

 .hero-description {
     max-width: 720px;
     font-size: 1.18rem;
     line-height: 1.6;
     color: rgba(255, 255, 255, 0.92);
     margin-bottom: 34px;
 }

 .hero-actions {
     display: flex;
     flex-wrap: wrap;
     gap: 14px;
     margin-bottom: 38px;
 }

 .hero-btn {
     min-height: 54px;
     padding: 0 28px;
     border-radius: 999px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
     font-weight: 800;
     font-size: 0.98rem;
     transition: 0.25s ease;
 }

 .hero-btn.primary {
     background: #31ff69;
     color: #07140b;
     box-shadow: 0 14px 35px rgba(49, 255, 105, 0.25);
 }

 .hero-btn.primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 18px 38px rgba(49, 255, 105, 0.34);
 }

 .hero-btn.secondary {
     border: 1px solid rgba(255, 255, 255, 0.16);
     background: rgba(255, 255, 255, 0.06);
     backdrop-filter: blur(10px);
     color: #fff;
     cursor: pointer;
 }

 .hero-btn.secondary:hover {
     transform: translateY(-2px);
     background: rgba(255, 255, 255, 0.1);
 }

 .hero-main-image {
     height: 49%;
     max-width: 100%;
 }
 .hero-main-image:hover{
    transform: scale(1.1);
 }

 .hero-floating-card {
     position: absolute;
     left: -30px;
     bottom: 28px;
     background: #fff;
     color: #111;
     border-radius: 16px;
     padding: 18px 20px;
     min-width: 220px;
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.28);
 }

 .hero-floating-label {
     display: block;
     color: #31c85d;
     font-size: 0.75rem;
     font-weight: 800;
     letter-spacing: 0.18em;
     text-transform: uppercase;
     margin-bottom: 8px;
 }

 .hero-floating-card strong {
     font-size: 1.65rem;
     line-height: 1.05;
     font-weight: 800;
 }

 /* RESPONSIVO */
 @media (max-width: 1100px) {
     .hero-container {
         gap: 40px;
         padding-top: 10px;
         min-height: auto;
         flex-direction: column;
     }

     .hero-content {
         max-width: 100%;
         text-align: center;
         margin: 0 auto;
     }

     .hero-actions,
     .hero-benefits {
         justify-content: center;
     }

     .hero-visual {
         justify-content: center;
     }

     .hero-floating-card {
         left: 20px;
         bottom: 20px;
     }
 }


 .search-container {
     width: 300px;
     margin: 0;
     display: flex;
     align-items: center;
     background-color: var(--linght-gray);
     border-radius: 1.5rem;
     padding: 0.5rem 1rem;
     box-shadow: 0 0 5px;
     position: absolute;
     top: 43px;
     opacity: 0.8;
     z-index: 100;
 }

 .search-container input {
     width: 100%;
     border: none;
     background: none;
     outline: none;
     padding: 0.5rem;
     font-size: 1rem;
 }

 .search-container i {
     color: var(--primary-color);
     cursor: pointer;
 }

 .categories-container {
     background-color: #006e0f;
     display: flex;
     overflow-x: auto;
 }

 .categories-bar {
     display: none;
     align-items: center;
     padding: 10px;
     gap: 0.5rem;
     width: 100%;
     max-width: 100%;
     justify-content: center;
 }

 .category-btn {
     display: flex;
     gap: 0.5rem;
     align-items: center;
     border: none;
     color: #fff;
     border-radius: 1.5rem;
     padding: 0.5rem 1rem;
     cursor: pointer;
     background: none;
     white-space: nowrap;
     font-size: 0.9rem;
 }

 .category-btn.active {
     background-color: var(--primary-color);
 }




 .GrennB {
     color: rgb(47, 255, 75);
 }

 footer {
     background-color: rgb(32 32 32);
     color: #fff;
     text-align: center;
     padding: 2rem;
     display: flex;
     flex-direction: column;
     gap: 10px;
 }

 footer a {
     color: white;
     text-decoration-line: none;
     font-weight: 400;
     letter-spacing: 2px;
     text-align: center;
     font-size: 12px;
 }

 .products {
     margin: 0 auto;
     display: flex;
     flex-wrap: wrap;
     width: 100%;
     flex-direction: column-reverse;
     justify-content: center;
     align-items: center;
     gap: 25px;
     height: 92vh;
     position: relative;
     margin-top: 30px;
 }

 .products-container {
     padding: 55px 0px 0px;
     width: 80%;
     overflow-y: scroll;
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: center;
     gap: 30px;
 }

 .product-card {
     background-color: #fff;
     border-radius: 1rem;
     overflow: hidden;
     cursor: pointer;
     transition: 0.3s;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
     width: 310px;
 }

 .product-card:hover {
     transform: translateY(-0.5rem);
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.248);
 }

 .product-img {
     width: 100%;
     height: 200px;
     object-fit: cover;
 }

 .product-info {
     padding: 1rem;
 }

 .product-name {
     font-size: 1.1rem;
     font-weight: bold;
     margin-bottom: 0.5rem;
     color: var(--text-color);
 }

 .product-description {
     font-size: 0.9rem;
     margin-bottom: 1rem;
     color: #6c757d;
 }

 .product-price {
     font-size: 1.4rem;
     color: var(--primary-color);
     margin-bottom: 1rem;
     font-weight: bold;
 }

 .product-button {
     width: 100%;
     background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
     ;
     color: #fff;
     border: none;
     padding: 0.7rem;
     font-size: 1rem;
     font-weight: 600;
     border-radius: 0.3rem;
     cursor: pointer;
     transition: 0.3s;
 }

 .product-button:hover {
     background-color: #3aa9f3;
 }

 .SectionAbout {
     display: flex;
     align-items: center;
     justify-content: center;
     min-height: 90vh;
     gap: 50px;
     padding: 150px 20px;
 }

 .DivImageAbout {
     border-radius: 25px;
     background-color: #3c3c3c;
     height: 500px;
 }

 .AboutImage {
     height: 100%;
     max-width: 30%;
     border-radius: 25px;
 }

 .TextsAbout {
     width: 40%;
 }

 .TitleAbout {
     margin-bottom: 15px;
     font-weight: bold;
     color: #00d000;
 }

 .H2About {
     font-size: 35px;
     line-height: 34px;
     margin-bottom: 15px;
     font-weight: bold;
 }

 .PAbout {}

 .ULAbout {
     padding-left: 25px;
     margin-top: 25px;
 }

 .LiAbout {
     color: black;
     font-weight: 700;
 }



 .SectionProblems {
     background-color: black;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 50px;
 }

 .MainSecProblems {
     width: 80%;
     display: flex;
     flex-direction: column;
     gap: 20px;
     align-items: center;
 }

 .TitleSecProblems {
     color: #00be00;
     font-weight: 600;
 }

 .H2SecProblems {
     color: white;
     font-size: 30px;
     width: 500px;
     line-height: 30px;
     text-align: center;
 }

 .BoxSecProblems {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: center;
     background-color: #282828;
     gap: 1px;
     width: 963px;
     margin-top: 35px;
 }

 .boxProblems {
     display: flex;
     flex-direction: column;
     padding: 20px;
     width: 320px;
     background-color: black;
     height: 160px;
 }
 .boxProblems:hover{
     background-color: rgb(16, 28, 17);
 }

 .ProblemP1 {
     color: #00be00;
     font-weight: 600;
     font-size: 14px;
 }

 .ProblemP2 {
     color: white;
     font-weight: 600;
     margin-top: 10px;
 }

 .ProblemP3 {
     color: #8e8e8e;
     font-weight: 600;
     font-size: 14px;
     line-height: 20px;
 }

 .TextProblem {
     color: white;
     font-weight: bold;
     font-size: 30px;
     text-align: center;
     line-height: 30px;
     width: 500px;
     margin-top: 50px;
 }


 .SectionAB {
     padding: 80px 50px;
 }

 .MainSecAB {}

 .HeaderSercAB {
     padding-left: 120px;
 }

 .VideoAB {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 15px;
 }

 .TitleSecAB {
     color: #00ce00;
     font-weight: bold;
     font-size: 20px;
 }

 .H2SevAB {
     font-weight: bold;
     font-size: 30px;
 }

 .PSecAB {
     font-weight: 600;
     font-size: 19px;
 }

 .SecShowAB {
     display: flex;
     width: 100%;
     align-items: center;
     justify-content: center;
     gap: 50px;
     margin-top: 50px;
 }

 .ShowABvideo {
     border: solid 1px;
     border-radius: 15px;
     background-color: rgb(44, 44, 44);
     height: 600px;
     position: relative;
 }

 .TextsShowAB {
     padding: 10px;
     width: 100%;
     background-color: white;
     position: absolute;
     bottom: 0;
     border-bottom-left-radius: 15px;
     border-bottom-right-radius: 15px;
 }

 .pShowAB1 {
     font-weight: 700;
 }

 .pShowAB2 {}



 .services-section {
     width: 100%;
     background: #1a1a1a;
     padding: 100px 20px;
     font-family: Arial, Helvetica, sans-serif;
 }

 .services-container {
     max-width: 1240px;
     margin: 0 auto;
 }

 /* TOPO */
 .services-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     gap: 40px;
     margin-bottom: 48px;
 }

 .services-header-left {
     max-width: 720px;
 }

 .services-label {
     font-size: 14px;
     letter-spacing: 4px;
     color: #20f200;
     margin-bottom: 16px;
     font-weight: 600;
 }

 .services-header h2 {
     font-size: 45px;
     line-height: 1.05;
     font-weight: 700;
     color: #ffffff;
     max-width: 720px;
 }

 .services-link {
     font-size: 15px;
     font-weight: 600;
     color: #111;
     text-decoration: none;
     border-bottom: 2px solid #f28a00;
     padding-bottom: 4px;
     white-space: nowrap;
     margin-top: 6px;
     transition: 0.2s ease;
     display: none;
 }

 .services-link:hover {
     opacity: 0.75;
 }

 /* GRID */
 .services-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 22px;
 }

 /* CARD */
 .service-card {
     background: #262626;
     border: 1px solid #e5ded5;
     border-radius: 14px;
     padding: 25px 25px 25px;
     min-height: 335px;
     display: flex;
     flex-direction: column;
 }

 .service-card:hover {
     transform: translateY(-5px);
     border: 1px solid #79da63;
     box-shadow: 0 0 25px black;

 }

 .service-top {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     margin-bottom: 26px;
 }

 .service-number {
     font-size: 14px;
     color: #09ff00;
     font-weight: 600;
     letter-spacing: 1px;
 }

 .service-icon-box {
     display: none;
     width: 34px;
     height: 34px;
     border-radius: 6px;
     background: #f3efea;
 }

 .service-card h3 {
     font-size: 24px;
     line-height: 1.2;
     color: #fafafa;
     margin-bottom: 16px;
     font-weight: 700;
 }

 .service-description {
     font-size: 16px;
     line-height: 1.65;
     color: #9a9a9a;
     max-width: 95%;
 }

 .service-divider {
     width: 100%;
     height: 1px;
     background: #e8e1d8;
     margin: 24px 0 18px;
 }

 .service-list {
     list-style: none;
     display: flex;
     flex-direction: column;
     gap: 12px;
 }

 .service-list li {
     position: relative;
     padding-left: 14px;
     font-size: 15px;
     line-height: 1.5;
     color: #ffffff;
 }

 .service-list li::before {
     content: "";
     width: 5px;
     height: 5px;
     background: #17f200;
     border-radius: 50%;
     position: absolute;
     left: 0;
     top: 10px;
 }

 /* RESPONSIVO */
 @media (max-width: 1100px) {
     .services-header {
         flex-direction: column;
         align-items: flex-start;
     }

     .services-header h2 {
         font-size: 46px;
     }

     .services-grid {
         grid-template-columns: 1fr;
     }
 }

 @media (max-width: 768px) {
     .services-section {
         padding: 70px 20px;
     }

     .services-header h2 {
         font-size: 34px;
     }

     .service-card {
         padding: 24px;
     }

     .service-card h3 {
         font-size: 22px;
     }

     .service-description {
         font-size: 15px;
     }
 }

 /**/

 .processo {
     width: 100%;
     background: white;
     padding: 90px 20px 100px;
     font-family: Arial, Helvetica, sans-serif;
 }

 .processo-container {
     max-width: 1180px;
     margin: 0 auto;
 }

 .processo-tag {
     font-size: 17px;
     color: #09d000;
     margin-bottom: 18px;
     font-weight: 600;
 }

 .processo-titulo {
     font-size: 46px;
     line-height: 1.05;
     font-weight: 700;
     color: #111;
     max-width: 760px;
     margin-bottom: 70px;
 }

 .processo-linha {
     position: relative;
 }

 .linha-bg {
     position: absolute;
     top: 19px;
     left: 0;
     width: 100%;
     height: 1px;
     background: #e6e1da;
     z-index: 0;
 }

 .processo-grid {
     position: relative;
     z-index: 1;
     display: grid;
     grid-template-columns: repeat(5, 1fr);
     gap: 28px;
 }

 .etapa {
     min-width: 0;
 }

 .numero {
     width: 40px;
     height: 40px;
     border: 1px solid #d9d3cb;
     border-radius: 50%;
     background: #fff;
     color: #111;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 14px;
     font-weight: 700;
     margin-bottom: 18px;
 }

 .etapa h3 {
     font-size: 14px;
     line-height: 1.2;
     font-weight: 600;
     color: #111;
     margin-bottom: 8px;
     text-transform: uppercase;
 }

 .etapa p {
     font-size: 14px;
     line-height: 1.45;
     color: #6f6f6f;
     max-width: 150px;
 }

 .etapa.active .numero {
     background: #17f200;
     border-color: #01f200;
     color: #fff;
 }

 /* Responsivo */
 @media (max-width: 1200px) {
     .ULAbout {
         display: flex;
         flex-direction: column;
         align-items: center;
     }

     .service-card {
         align-items: center;
     }

     .processo-grid {
         grid-template-columns: repeat(4, 1fr);
         row-gap: 35px;
     }

     .linha-bg {
         display: none;
     }
 }

 @media (max-width: 768px) {
     .etapa {
         display: flex;
         flex-direction: column;
         align-items: center;
         text-align: center;
     }

     .NavHeader {
         display: none;
     }

     .processo {
         padding: 70px 20px;
     }

     .processo-titulo {
         font-size: 36px;
         margin-bottom: 45px;
     }

     .processo-grid {
         grid-template-columns: repeat(2, 1fr);
         gap: 24px;
     }

     .etapa p {
         max-width: 100%;
     }
 }

 @media (max-width: 480px) {
     .processo-titulo {
         font-size: 30px;
     }

     .processo-grid {
         grid-template-columns: 1fr;
     }
 }

 /**/

 /* --- ESTILOS DO CARRINHO --- */

 .cart-icon {
     position: relative;
     cursor: pointer;
 }

 .cart-icon i {
     font-size: 1.8rem;
     color: #00b82b;
 }

 .cart-badge {
     position: absolute;
     top: 0;
     right: 0;
     background-color: var(--primary-color);
     color: #fff;
     border-radius: 50%;
     width: 20px;
     height: 20px;
     display: flex;
     justify-content: center;
     align-items: center;
     font-size: 0.8rem;
     font-weight: bold;
     transform: translate(25%, -25%);
 }

 .cart-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.5);
     z-index: 999;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.3s ease, visibility 0.3s ease;
 }

 .cart-overlay.show {
     opacity: 1;
     visibility: visible;
 }

 .cart-sidebar {
     position: fixed;
     top: 0;
     right: 0;
     width: 100%;
     max-width: 420px;
     height: 100%;
     background-color: #fff;
     box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
     z-index: 1000;
     display: flex;
     flex-direction: column;
     transform: translateX(100%);
     transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
 }

 .cart-sidebar.show {
     transform: translateX(0);
 }

 .cart-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 1rem 1.5rem;
     border-bottom: 1px solid var(--border-color);
 }

 .cart-header h3 {
     font-size: 1.5rem;
     color: var(--secondary-color);
 }

 .close-cart-btn {
     background: none;
     border: none;
     font-size: 2rem;
     cursor: pointer;
     color: var(--text-color);
 }

 .cart-body {
     padding: 1.5rem;
     overflow-y: auto;
     flex-shrink: 1;
 }

 .cart-footer {
     padding: 1rem 1.5rem;
     border-top: 1px solid var(--border-color);
     background-color: var(--linght-gray);
     overflow-y: auto;
     flex-grow: 1;
 }

 .finish-order-btn-container {
     padding: 1rem 1.5rem;
     border-top: 1px solid var(--border-color);
     background-color: #fff;
     box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
 }

 .cart-body::-webkit-scrollbar,
 .cart-footer::-webkit-scrollbar {
     width: 6px;
 }

 .cart-body::-webkit-scrollbar-track,
 .cart-footer::-webkit-scrollbar-track {
     background: var(--linght-gray);
 }

 .cart-body::-webkit-scrollbar-thumb,
 .cart-footer::-webkit-scrollbar-thumb {
     background-color: #ccc;
     border-radius: 10px;
     border: 2px solid var(--linght-gray);
 }

 .cart-empty {
     text-align: center;
     padding-top: 4rem;
     color: #999;
 }

 .cart-empty i {
     font-size: 4rem;
     margin-bottom: 1rem;
     color: var(--border-color);
 }

 .cart-empty p {
     font-size: 1.2rem;
     font-weight: 600;
 }

 .cart-item {
     display: flex;
     align-items: center;
     gap: 1rem;
     margin-bottom: 1.5rem;
 }

 .cart-item-img {
     width: 80px;
     height: 80px;
     object-fit: cover;
     border-radius: 0.5rem;
     border: 1px solid var(--border-color);
 }

 .cart-item-info {
     flex-grow: 1;
 }

 .cart-item-name {
     font-size: 1rem;
     font-weight: 600;
     margin-bottom: 0.25rem;
 }

 .cart-item-price {
     font-size: 0.9rem;
     color: var(--primary-color);
     font-weight: bold;
 }

 .cart-item-controls {
     display: flex;
     align-items: center;
     gap: 0.5rem;
     margin-top: 0.5rem;
 }

 .quantity-btn {
     background-color: var(--linght-gray);
     border: 1px solid var(--border-color);
     width: 28px;
     height: 28px;
     border-radius: 50%;
     cursor: pointer;
     font-weight: bold;
     transition: background-color 0.2s;
 }

 .quantity-btn:hover {
     background-color: #ddd;
 }

 .remove-item-btn {
     background: none;
     border: none;
     color: #36f43f;
     font-size: 1.8rem;
     cursor: pointer;
     margin-left: auto;
     transition: color 0.2s;
 }

 .remove-item-btn:hover {
     color: #2ec226;
 }

 .product-image-fly {
     position: fixed;
     z-index: 1001;
     border-radius: 50%;
     transition: all 0.7s cubic-bezier(0.55, 0.055, 0.675, 0.19);
     object-fit: cover;
 }

 .options-toggle {
     display: flex;
     border: 1px solid var(--border-color);
     border-radius: 1.5rem;
     overflow: hidden;
     margin-bottom: 1.5rem;
 }

 .delivery-btn {
     flex: 1;
     padding: 0.75rem;
     border: none;
     background-color: #fff;
     cursor: pointer;
     font-size: 1rem;
     font-weight: 600;
     color: var(--text-color);
     transition: background-color 0.3s;
 }

 .delivery-btn.active {
     background-color: var(--secondary-color);
     color: #fff;
 }

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

 .form-group label {
     display: block;
     margin-bottom: 0.5rem;
     font-weight: 600;
     font-size: 0.9rem;
 }

 .form-group input,
 .form-group select,
 .form-group textarea {
     width: 100%;
     padding: 0.75rem;
     border: 1px solid var(--border-color);
     border-radius: 0.5rem;
     font-size: 1rem;
     font-family: inherit;
     transition: border-color 0.2s, box-shadow 0.2s;
 }

 .form-group input:focus,
 .form-group select:focus,
 .form-group textarea:focus {
     border-color: var(--accent-color);
     box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
     outline: none;
 }

 .form-group input.error,
 .form-group textarea.error,
 .form-group select.error {
     border-color: var(--error-color) !important;
     box-shadow: 0 0 0 3px rgba(60, 231, 80, 0.2) !important;
 }

 .form-group input:read-only {
     background-color: #eee;
     cursor: not-allowed;
     opacity: 0.8;
 }

 .payment-options-container {
     border-top: 1px solid var(--border-color);
     margin-top: 1.5rem;
     padding-top: 1.5rem;
 }

 .payment-options-container h4 {
     font-size: 1rem;
     margin-top: 0;
     margin-bottom: 1rem;
 }

 .payment-option {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     padding: 0.75rem;
     border: 1px solid var(--border-color);
     border-radius: 0.5rem;
     margin-bottom: 0.5rem;
     cursor: pointer;
     transition: border-color 0.2s, background-color 0.2s;
 }

 .payment-option:hover {
     background-color: #fff;
 }

 .payment-option input[type="radio"] {
     width: auto;
 }

 .payment-option.selected {
     border-color: var(--primary-color);
     background-color: #fff5f0;
 }

 #troco-container {
     display: none;
     margin-top: 1rem;
     padding: 1rem;
     background-color: #fff;
     border-radius: 0.5rem;
     border: 1px solid var(--border-color);
 }

 .delivery-fee-notice {
     font-size: 0.8rem;
     text-align: center;
     color: #777;
     background-color: #fff;
     padding: 0.5rem;
     border-radius: 0.5rem;
     margin: 1.5rem 0;
 }

 .date-time-row {
     display: flex;
     gap: 1rem;
 }

 .cart-summary {
     margin: 1.5rem 0;
     border-top: 1px solid var(--border-color);
     padding-top: 1.5rem;
 }

 .summary-line {
     display: flex;
     justify-content: space-between;
     margin-bottom: 0.5rem;
     font-size: 1rem;
 }

 .summary-line.total {
     font-size: 1.2rem;
     font-weight: bold;
     color: var(--primary-color);
     margin-top: 1rem;
 }

 .coupon-container {
     display: flex;
     gap: 0.5rem;
     margin-bottom: 0.5rem;
 }

 #coupon-input {
     flex-grow: 1;
     border: 1px solid var(--border-color);
     border-radius: 0.5rem;
     padding: 0.75rem;
     font-size: 1rem;
 }

 #apply-coupon-btn {
     border: none;
     background-color: var(--secondary-color);
     color: #fff;
     padding: 0 1.5rem;
     border-radius: 0.5rem;
     cursor: pointer;
     font-weight: 600;
     transition: background-color 0.2s;
 }

 #apply-coupon-btn:hover {
     background-color: #3e5771;
 }

 .coupon-feedback {
     font-size: 0.9rem;
     font-weight: 600;
     margin-bottom: 1rem;
     height: 1em;
 }

 .coupon-feedback.success {
     color: var(--success-color);
 }

 .coupon-feedback.error {
     color: var(--error-color);
 }

 .summary-line.discount-line {
     color: var(--success-color);
     font-weight: 600;
 }

 .finish-order-btn {
     width: 100%;
     padding: 1rem;
     font-size: 1.2rem;
     font-weight: bold;
     color: #fff;
     background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
     ;
     border: none;
     border-radius: 0.5rem;
     cursor: pointer;
     transition: background-color 0.3s;
 }

 .finish-order-btn:hover:not(:disabled) {
     background-color: #27ae60;
 }

 .finish-order-btn:disabled {
     background-color: #ccc;
     cursor: not-allowed;
 }

 .finish-order-btn .fa-whatsapp {
     margin-right: 0.5rem;
 }

 /* --- BARRA INFERIOR "VER CARRINHO" (RESTAURADA) --- */
 .view-cart-banner {
     position: fixed;
     bottom: -100px;
     /* Começa escondida */
     left: 0;
     width: 100%;
     background-color: var(--secondary-color);
     color: #fff;
     z-index: 980;
     padding: 1rem;
     display: flex;
     justify-content: space-between;
     align-items: center;
     box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
     transition: bottom 0.4s ease-in-out;
 }

 .view-cart-banner.show {
     bottom: 0;
 }

 .view-cart-banner p {
     margin: 0;
     font-weight: 600;
 }

 .view-cart-banner-btn {
     background-color: var(--primary-color);
     color: #fff;
     border: none;
     padding: 0.75rem 1.5rem;
     border-radius: 1.5rem;
     font-weight: bold;
     cursor: pointer;
 }


 .SectionCall {
     position: relative;
     width: 100%;
     padding: 90px 40px;
     text-align: center;
     background: radial-gradient(circle at 15% 20%, rgb(8 196 0 / 35%), transparent 28%), radial-gradient(circle at 85% 25%, rgb(0 200 36 / 28%), transparent 30%), radial-gradient(circle at 30% 85%, rgb(0 170 9 / 35%), transparent 28%), radial-gradient(circle at 80% 80%, rgb(117 255 110 / 18%), transparent 30%), linear-gradient(135deg, #002c00 0%, #034600 35%, #085400 65%, #003002 100%);
     box-shadow:
         0 25px 60px rgba(12, 43, 29, 0.22),
         inset 0 1px 0 rgba(255, 255, 255, 0.08);
 }

 /* brilho/aurora por cima */
 .SectionCall::before {
     content: "";
     position: absolute;
     inset: 0;
     background:
         linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 30%, transparent 70%, rgba(255, 255, 255, 0.04)),
         radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05), transparent 55%);
     pointer-events: none;
 }

 /* leve borda glow */
 .SectionCall::after {
     content: "";
     position: absolute;
     inset: 1px;
     border-radius: 27px;
     border: 1px solid rgba(255, 255, 255, 0.08);
     pointer-events: none;
 }

 .TitleSecCall {
     position: relative;
     z-index: 2;
     max-width: 980px;
     margin: 0 auto 30px;
     color: #ffffff;
     font-size: 3rem;
     line-height: 1.08;
     font-weight: 800;
     letter-spacing: -0.02em;
     text-transform: uppercase;
     text-wrap: balance;
 }

 .LinkSecCall {
     position: relative;
     z-index: 2;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     padding: 18px 34px;
     border-radius: 999px;
     background: linear-gradient(rgb(13 255 0) 0%, rgb(0 255 85) 100%);
     color: rgb(0 0 0);
     font-size: 0.98rem;
     font-weight: 800;
     text-decoration: none;
     text-transform: uppercase;
     letter-spacing: 0.04em;
     box-shadow:
         0 12px 30px rgba(0, 0, 0, 0.18),
         inset 0 1px 0 rgba(255, 255, 255, 0.8);
     transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
 }

 .LinkSecCall:hover {
     transform: translateY(-3px);
     box-shadow:
         0 18px 35px rgba(0, 0, 0, 0.22),
         0 0 0 10px rgba(255, 255, 255, 0.06);
 }

 .LinkSecCall::after {
     content: "→";
     font-size: 1rem;
     transition: transform 0.25s ease;
 }

 .LinkSecCall:hover::after {
     transform: translateX(4px);
 }

 .LocateP {
     color: #00ff2a;
     font-weight: bold;
     text-shadow: 0 0 15px;
     margin-top: 70px;
     font-size: 20px;
 }


 .DivMapLocal {
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 90px;
     border: solid 4px #14ff00;
     border-radius: 5px;
     margin-top: 30px;
     box-shadow: 0 0 36px #000000a8;
 }

 .MapLocal {
     width: 100%;
     height: 300px;
 }



 .FaqSection {
     width: 100%;
     background: #ffffff;
     padding: 100px 20px;
 }

 .FaqContainer {
     max-width: 980px;
     margin: 0 auto;
 }

 .FaqHeader {
     text-align: center;
     margin-bottom: 50px;
 }

 .FaqLabel {
     display: inline-block;
     font-size: 12px;
     letter-spacing: 4px;
     text-transform: uppercase;
     color: #1cf200;
     margin-bottom: 16px;
     font-weight: 600;
 }

 .FaqTitle {
     font-size: 2.8rem;
     line-height: 1.1;
     color: #111;
     font-weight: 800;
     max-width: 720px;
     margin: 0 auto;
 }

 .FaqList {
     width: 100%;
 }

 .FaqItem {
     border-bottom: 1px solid #e8e1d8;

 }

 .FaqQuestion {
     width: 100%;
     background: transparent;
     border: none;
     outline: none;
     padding: 28px 0;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 24px;
     text-align: left;
     cursor: pointer;
     font-size: 1.15rem;
     font-weight: 700;
     color: #111;
     text-align: center;
 }

 .FaqQuestion span:first-child {
     flex: 1;
 }

 .FaqIcon {
     font-size: 1.8rem;
     line-height: 1;
     color: #0cf200;
     transition: transform 0.3s ease;
     flex-shrink: 0;
 }

 .FaqAnswer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.35s ease;
 }

 .FaqAnswer p {
     padding: 0 0 28px 0;
     color: #666;
     font-size: 1rem;
     line-height: 1.7;
     max-width: 850px;
     text-align: center;
 }

 .FaqItem.active .FaqAnswer {
     max-height: 250px;
     display: flex;
     justify-content: center;
 }

 .FaqItem.active .FaqIcon {
     transform: rotate(45deg);
 }

 /* hover leve */
 .FaqQuestion:hover {
     color: #00f245;
 }

 /* responsivo */
 @media (max-width: 768px) {
     .FaqSection {
         padding: 70px 20px;
     }

     .FaqTitle {
         font-size: 2rem;
     }

     .FaqQuestion {
         font-size: 1rem;
         padding: 22px 0;
     }

     .FaqAnswer p {
         font-size: 0.95rem;
         padding-bottom: 22px;
     }

     .FaqIcon {
         font-size: 1.5rem;
     }
 }

 /* responsivo */
 @media (max-width: 992px) {


     .TitleSecCall {
         font-size: 2.2rem;
     }
 }

 /* --- MEDIA QUERIES PARA RESPONSIVIDADE --- */
 @media screen and (max-width: 1100px) {



     .SectionCall {
         padding: 55px 22px;
     }

     .TitleSecCall {
         font-size: 1.65rem;
         line-height: 1.15;
         margin-bottom: 24px;
     }

     .LinkSecCall {
         width: 100%;
         max-width: 420px;
         padding: 16px 22px;
         font-size: 0.9rem;
     }

     .search-container {
         order: 2;
         flex-basis: auto;
     }

     .categories-bar {
         justify-content: flex-start;
     }



     .category-btn {
         padding: 0.75rem 1.5rem;
         font-size: 1rem;
     }

     .products-container {
         gap: 2rem;
     }

     .product-img {
         height: 250px;
     }

     .product-info {
         padding: 1.5rem;
     }

     .product-name {
         font-size: 1.2rem;
     }

     .logo h1 {
         font-size: 20px;
     }


     .hero-section {
         min-height: auto;
         padding: 90px 16px 30px;
     }

     .hero-header {
         margin-bottom: 28px;
     }

     .hero-logo {
         font-size: 1rem;
     }

     .hero-top-btn {
         display: none;
     }

     .hero-title {
         font-size: 2.35rem;
         line-height: 1.02;
     }

     .hero-description {
         font-size: 1rem;
         margin-bottom: 28px;
     }

     .hero-actions {
         flex-direction: column;
         align-items: stretch;
     }

     .hero-btn {
         width: 100%;
     }

     .hero-benefits {
         flex-direction: column;
     }

     .hero-main-image {
         display: none;
     }

     .hero-floating-card {
         position: absolute;
         left: 14px;
         right: 14px;
         bottom: 14px;
         min-width: auto;
         padding: 16px;
     }

     .hero-floating-card strong {
         font-size: 1.3rem;
     }

     .SectionAbout {
         flex-direction: column-reverse;
         padding: 90px 20px;
     }

     .AboutImage {
         max-width: 70%;
     }

     .TextsAbout {
         width: 100%;
     }


     .DivMapLocal {
         width: 100%;
         border: none;
     }



     .SectionProblems {
         padding: 50px 0;
     }

     .MainSecProblems {}

     .TitleSecProblems {}

     .H2SecProblems {
         width: 100%;
         font-size: 27px;
     }

     .BoxSecProblems {
         width: 100%;
     }

     .boxProblems {
         width: 100%;
     }

     .ProblemP1 {}

     .ProblemP2 {}

     .ProblemP3 {}

     .TextProblem {
         width: 100%;
         font-size: 18px;
         line-height: 23px;
     }



     .SectionAB {
         padding: 80px 5px;
     }

     .MainSecAB {}

     .HeaderSercAB {
         text-align: center;
         padding-left: 0;
     }

     .TitleSecAB {}

     .H2SevAB {}

     .PSecAB {}

     .SecShowAB {
         flex-direction: column;
     }

     .ShowABvideo {}

     .TextsShowAB {}

     .pShowAB1 {}

     .pShowAB2 {}

     .view-cart-banner {
         display: none;
     }
 }