/* ========================================
   artiClone Custom Styles
   Ajustes: Topbar + Header/Menu + Hero
   Mantém: style.css original intacto
   ======================================== */

/* Hide e-commerce / search popup elements */
.popup-search-box,
.sideCart-wrapper,
.sideCart-wrapper.offcanvas-wrapper {
  display: none !important;
}

/* ---------- CSS Variables Override ---------- */
.header-layout3,
.hero-layout3 {
  --art-blue-dark: #233A61;
  --art-blue: #385B99;
  --art-green: #65B68D;
  --art-green-light: #ABD6CA;
  --art-offwhite: #FBFAF6;
  --art-white: #FFFFFF;
}

/* =============================================
   1. TOPBAR
   ============================================= */
.header-layout3 .header-top {
  background-color: #233A61;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-layout3 .header-top .header-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 28px;
  align-items: center;
}

.header-layout3 .header-top .header-links ul li {
  color: #FBFAF6;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.header-layout3 .header-top .header-links ul li i {
  color: #65B68D;
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.header-layout3 .header-top .header-links ul li a {
  color: #FBFAF6;
  text-decoration: none;
  transition: color 0.3s;
}

.header-layout3 .header-top .header-links ul li a:hover {
  color: #65B68D;
}

.header-layout3 .header-top .social-style1 {
  display: flex;
  gap: 8px;
  align-items: center;
}

.header-layout3 .header-top .social-style1 a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FBFAF6;
  font-size: 14px;
  border-radius: 50%;
  transition: color 0.3s, background-color 0.3s;
}

.header-layout3 .header-top .social-style1 a:hover {
  color: #65B68D;
  background-color: rgba(255,255,255,0.06);
}

/* =============================================
   2. HEADER / MENU
   ============================================= */
.header-layout3 .sticky-wrapper {
  background-color: #FFFFFF;
  position: relative; /* override absolute */
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
  width: 100%;
  margin-top: 0;
  z-index: 100;
}

.header-layout3 .sticky-wrapper .menu-area {
  padding: 0;
}

.header-layout3 .sticky-wrapper .container {
  max-width: 1290px;
}

/* Header row: logo left, nav center-right, CTA right */
.header-layout3 .header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  min-height: 72px;
}

/* Logo */
.header-layout3 .header-logo {
  max-width: 180px;
  padding: 12px 0;
  flex-shrink: 0;
}

.header-layout3 .header-logo .logo1 {
  display: block !important;
}

.header-layout3 .header-logo .logo2 {
  display: none !important;
}

.header-layout3 .sticky-wrapper.will-sticky .header-logo .logo1 {
  display: none !important;
}

.header-layout3 .sticky-wrapper.will-sticky .header-logo .logo2 {
  display: block !important;
}

.header-layout3 .header-logo img {
  max-height: 46px;
  width: auto;
}

/* Desktop Navigation */
.articlone-nav {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.articlone-nav > li {
  position: relative;
}

.articlone-nav > li > a {
  display: block;
  padding: 24px 16px;
  color: #233A61;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--title-font);
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}

.articlone-nav > li > a:hover {
  color: #65B68D;
}

/* CTA Button */
.articlone-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #65B68D;
  color: #FFFFFF !important;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--title-font);
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s;
  border: 2px solid #65B68D;
  margin-left: 12px;
  flex-shrink: 0;
}

.articlone-cta:hover {
  background-color: #385B99;
  border-color: #385B99;
  color: #FFFFFF !important;
}

/* Hide original header elements replaced by custom nav */
.header-layout3 .main-menu2,
.header-layout3 .header-icons .link-btn,
.header-layout3 .header-icons .icon-btn,
.header-layout3 .header-icons .vs-menu-toggle {
  display: none !important;
}

/* Keep mobile hamburger */
.header-layout3 .col-auto.d-lg-none .vs-menu-toggle {
  display: inline-block !important;
  color: #233A61;
  font-size: 22px;
  background: none;
  border: none;
  padding: 8px;
}

/* Mobile menu toggle override */
.header-layout3 .d-lg-none .vs-menu-toggle {
  display: inline-block !important;
}

/* =============================================
   3. HERO / TOPBANNER
   ============================================= */
.hero-layout3 {
  background-color: #FBFAF6;
  background-image: none !important;
  position: relative;
  overflow: hidden;
  min-height: 700px;
  display: flex;
  align-items: center;
}

/* Remove old carousel - use single static hero */
.hero-layout3 .hero-slide .vs-carousel {
  display: block !important;
}

.hero-layout3 .hero-slide .vs-carousel .hero-content:not(:first-child) {
  display: none !important;
}

.hero-layout3 .hero-content {
  padding: 0 !important;
  padding-top: 20px !important;
}

/* Hero label */
.hero-layout3 .hero-label {
  display: inline-block;
  color: #385B99;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--title-font);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  background: rgba(56, 91, 153, 0.08);
  padding: 6px 16px;
  border-radius: 4px;
}

/* Hero title */
.hero-layout3 .hero-title {
  color: #233A61 !important;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 560px;
}

/* Hero subtitle */
.hero-layout3 .hero-text {
  color: #555555 !important;
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 520px;
}

/* Hero buttons */
.hero-layout3 .hero-bottom {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-layout3 .hero-bottom .vs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #65B68D !important;
  color: #FFFFFF !important;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--title-font);
  padding: 14px 32px;
  border-radius: 6px;
  border: 2px solid #65B68D !important;
  text-decoration: none;
  transition: all 0.3s;
  min-height: 54px;
}

.hero-layout3 .hero-bottom .vs-btn:hover {
  background-color: #385B99 !important;
  border-color: #385B99 !important;
  color: #FFFFFF !important;
}

.hero-layout3 .hero-bottom .vs-btn.btn-outline {
  background-color: transparent !important;
  color: #385B99 !important;
  border-color: #385B99 !important;
}

.hero-layout3 .hero-bottom .vs-btn.btn-outline:hover {
  background-color: #385B99 !important;
  color: #FFFFFF !important;
}

/* Hero support text */
.hero-layout3 .hero-support {
  margin-top: 20px;
  font-size: 13px;
  color: #777;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-layout3 .hero-support i {
  color: #65B68D;
  font-size: 16px;
}

/* Hero right side - image area */
.hero-layout3 .hero-images {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hide old carousel slides except first */
.hero-layout3 .hero-images .vs-carousel .slide-img:not(:first-child) {
  display: none !important;
}

.hero-layout3 .hero-images .slide-img {
  position: relative;
  z-index: 2;
}

.hero-layout3 .hero-images .slide-img img {
  max-width: 100%;
  max-height: 600px;
  object-fit: contain;
}

/* Hide old badge icon */
.hero-layout3 .hero-images .slide-icon {
  display: none !important;
}

/* Hide slick dots in hero */
.hero-layout3 .slick-dots {
  display: none !important;
}

/* Geometric background elements */
.hero-layout3 .hero-geo {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

/* DNA helix pattern - right side behind image */
.hero-layout3 .hero-geo-dna {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  height: 80%;
  opacity: 0.06;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 4px,
    #385B99 4px,
    #385B99 5px
  ),
  repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 4px,
    #385B99 4px,
    #385B99 5px
  );
  background-size: 40px 40px;
  border-radius: 8px;
}

/* Green accent block */
.hero-layout3 .hero-geo-block {
  position: absolute;
  right: 0;
  top: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(135deg, #ABD6CA 0%, rgba(171, 214, 202, 0.3) 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

/* Blue diagonal accent */
.hero-layout3 .hero-geo-accent {
  position: absolute;
  right: 8%;
  bottom: 8%;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(56, 91, 153, 0.12);
  border-radius: 12px;
  transform: rotate(15deg);
  z-index: 0;
}

/* DNA dots decoration */
.hero-layout3 .hero-geo-dots {
  position: absolute;
  left: 52%;
  top: 30%;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, #385B99 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.15;
  z-index: 0;
}

/* Floating card */
.hero-layout3 .hero-card {
  position: absolute;
  right: 45%;
  bottom: 20%;
  background: #FFFFFF;
  border: 1px solid #ABD6CA;
  border-radius: 10px;
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
  z-index: 3;
  max-width: 240px;
}

.hero-layout3 .hero-card .card-icon {
  width: 40px;
  height: 40px;
  background: rgba(101, 182, 141, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #65B68D;
  font-size: 18px;
}

.hero-layout3 .hero-card .card-title {
  font-size: 14px;
  font-weight: 700;
  color: #233A61;
  font-family: var(--title-font);
  margin-bottom: 4px;
}

.hero-layout3 .hero-card .card-text {
  font-size: 12px;
  color: #777;
  line-height: 1.5;
}

/* =============================================
   4. MOBILE MENU (update colors)
   ============================================= */
.vs-menu-wrapper .vs-menu-area {
  background-color: #233A61;
}

.vs-menu-wrapper .vs-menu-area .vs-mobile-menu ul li a {
  color: #FBFAF6;
}

.vs-menu-wrapper .vs-menu-area .vs-mobile-menu ul li a:hover {
  color: #65B68D;
}

.vs-menu-wrapper .vs-menu-toggle {
  color: #FBFAF6;
}

/* =============================================
   5. RESPONSIVE
   ============================================= */

/* Tablet: 992px - 1199px */
@media (max-width: 1199px) {
  .header-layout3 .header-top {
    display: none;
  }
  
  .articlone-nav {
    display: none !important;
  }
  
  .articlone-cta {
    display: none !important;
  }
  
  .header-layout3 .header-logo {
    max-width: 150px;
  }
  
  .hero-layout3 {
    min-height: 600px;
  }
  
  .hero-layout3 .hero-title {
    font-size: 44px;
  }
  
  .hero-layout3 .hero-text {
    font-size: 16px;
    max-width: 440px;
  }
  
  .hero-layout3 .hero-card {
    display: none;
  }
}

/* Mobile: up to 991px */
@media (max-width: 991px) {
  .hero-layout3 {
    min-height: auto;
    padding: 100px 0 60px;
  }
  
  .hero-layout3 .hero-content {
    padding-top: 0 !important;
  }
  
  .hero-layout3 .hero-title {
    font-size: 36px;
    max-width: 100%;
  }
  
  .hero-layout3 .hero-text {
    font-size: 16px;
    max-width: 100%;
  }
  
  .hero-layout3 .hero-bottom {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-layout3 .hero-bottom .vs-btn {
    text-align: center;
    justify-content: center;
  }
  
  .hero-layout3 .hero-images {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 40px;
  }
  
  .hero-layout3 .hero-images .slide-img img {
    max-height: 350px;
  }
  
  .hero-layout3 .hero-geo-block {
    width: 100%;
    height: 50%;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 100%);
  }
  
  .hero-layout3 .hero-geo-dna {
    width: 90%;
    height: 40%;
    right: 5%;
    top: 60%;
  }
  
  .hero-layout3 .hero-geo-accent,
  .hero-layout3 .hero-geo-dots {
    display: none;
  }
  
  .hero-layout3 .hero-card {
    display: none;
  }
}

/* Small mobile: up to 575px */
@media (max-width: 575px) {
  .hero-layout3 .hero-title {
    font-size: 30px;
  }
  
  .hero-layout3 .hero-text {
    font-size: 15px;
  }
  
  .hero-layout3 .hero-label {
    font-size: 12px;
  }
  
  .header-layout3 .header-logo {
    max-width: 130px;
  }
}

/* =============================================
   6. ABOUT SECTION OVERRIDES
   ============================================= */
.about-layout3 .title-area span {
  color: #65B68D !important;
}

.about-layout3 .about-img .play-btn:before {
  background-color: #385B99 !important;
}

.about-layout3 .about-img .img-content {
  background-color: #233A61 !important;
  border-radius: 8px;
}

.about-layout3 .about-img .img-title {
  color: #FBFAF6 !important;
}

.about-layout3 .about-img .vs-btn {
  background-color: #65B68D !important;
  color: #FFFFFF !important;
  border-color: #65B68D !important;
  border-radius: 6px;
}

.about-layout3 .about-img .vs-btn:hover {
  background-color: #385B99 !important;
  border-color: #385B99 !important;
  color: #FFFFFF !important;
}

.about-layout3 .about-text {
  color: #555;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* Accordion style overrides */
.about-layout3 .accordion-style2 .accordion-button:not(.collapsed) {
  background-color: rgba(101, 182, 141, 0.08);
  color: #233A61;
}

.about-layout3 .accordion-style2 .accordion-button {
  font-weight: 600;
  color: #385B99;
}

.about-layout3 .accordion-style2 .accordion-button:hover {
  color: #65B68D;
}

.about-layout3 .accordion-style2 .accordion-body {
  color: #666;
}

/* Responsive about */
@media (max-width: 991px) {
  .about-layout3 .about-img .img-content {
    transform: translate(0, 0);
    position: relative;
    max-width: 100%;
  }
}

.about-layout3 .about-img .play-btn {
  display: none !important;
}

/* =============================================
   7. CATEGORIES / SOLUTIONS SECTION
   ============================================= */
.categorie-layout2 .title-area .sec-subtitle {
  color: #65B68D !important;
}

.categorie-layout2 .title-link a {
  color: #385B99;
  font-weight: 600;
}

.categorie-layout2 .title-link a:hover {
  color: #65B68D;
}

.categorie-layout2 .categorie-style2 {
  border: 1px solid #ABD6CA;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s;
  position: relative;
  margin-bottom: 30px;
}

.categorie-layout2 .categorie-style2::before {
  display: none !important;
}

.categorie-layout2 .categorie-style2:hover {
  box-shadow: 0 8px 24px rgba(35, 58, 97, 0.1);
}

.categorie-layout2 .categorie-content {
  position: relative !important;
  left: auto !important;
  bottom: auto !important;
  background-color: #FFFFFF !important;
  padding: 20px;
}

.categorie-layout2 .categorie-title a {
  color: #233A61 !important;
  font-size: 18px;
  font-weight: 600;
}

.categorie-layout2 .categorie-title a:hover {
  color: #65B68D !important;
}

.categorie-layout2 .categorie-text {
  color: #555 !important;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 8px;
}

/* Category images - consistent sizing */
.categorie-layout2 .categorie-img {
  height: 200px;
  overflow: hidden;
}

.categorie-layout2 .categorie-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================================
   8. PRODUCT / SOLUTIONS CARDS OVERRIDES
   /* 8. PRODUCT / SOLUTIONS CARDS — PREMIUM */
   .product-layout2 {
     background-color: #FBFAF6;
     position: relative;
     overflow: hidden;
   }

   .product-layout2 .title-area .sec-subtitle {
     color: #65B68D !important;
   }

   .product-layout2 .title-area {
     margin-bottom: 50px;
   }

   /* Carousel row spacing */
   .product-layout2 .row.vs-carousel {
     margin-left: -15px;
     margin-right: -15px;
   }

   .product-layout2 .row.vs-carousel > [class*="col-"] {
     padding-left: 15px;
     padding-right: 15px;
   }

   /* ---- Solution card ---- */
   .product-layout2 .solution-card {
     display: flex;
     flex-direction: column;
     height: 540px;
     min-height: 540px;
     max-height: 540px;
     background: #FFFFFF;
     border: 1px solid #ABD6CA;
     border-radius: 12px;
     overflow: hidden;
     transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     box-shadow: 0 1px 3px rgba(35, 58, 97, 0.04),
                 0 4px 12px rgba(35, 58, 97, 0.03);
     position: relative;
   }

   .product-layout2 .solution-card:hover {
     box-shadow: 0 4px 16px rgba(35, 58, 97, 0.08),
                 0 12px 40px rgba(35, 58, 97, 0.06);
     transform: translateY(-6px);
     border-color: rgba(101, 182, 141, 0.3);
   }

   /* Image */
   .product-layout2 .solution-card .product-img {
     height: 230px;
     min-height: 230px;
     max-height: 230px;
     overflow: hidden;
     flex-shrink: 0;
     position: relative;
   }

   .product-layout2 .solution-card .product-img::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     right: 0;
     height: 40%;
     background: linear-gradient(to top, rgba(255,255,255,0.15) 0%, transparent 100%);
     pointer-events: none;
   }

   .product-layout2 .solution-card .product-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
   }

   .product-layout2 .solution-card:hover .product-img img {
     transform: scale(1.06);
   }

   /* Meta badge */
   .product-layout2 .solution-card .product-media {
     padding: 0;
     margin: 0;
     position: relative;
   }

   .product-layout2 .solution-card .product-media .rating {
     display: none !important;
   }

   .product-layout2 .solution-card .product-media .product-meta {
     position: absolute;
     top: -18px;
     left: 20px;
     background: #65B68D;
     color: #FFFFFF;
     font-size: 10px;
     font-weight: 700;
     padding: 6px 16px;
     border-radius: 5px;
     text-transform: uppercase;
     letter-spacing: 1.2px;
     z-index: 2;
     transition: background 0.3s;
   }

   .product-layout2 .solution-card:hover .product-meta {
     background: #385B99;
   }

   /* Content area */
   .product-layout2 .solution-card .product-about {
     padding: 28px 24px 0;
     flex: 1;
     display: flex;
     flex-direction: column;
     min-height: 0;
   }

   .product-layout2 .solution-card .product-about .text,
   .product-layout2 .solution-card .product-about .price {
     display: none !important;
   }

   .product-layout2 .solution-card .product-title {
     margin-bottom: 8px;
     flex-shrink: 0;
   }

   .product-layout2 .solution-card .product-title a {
     color: #233A61 !important;
     font-size: 17px;
     font-weight: 700;
     line-height: 1.3;
     text-decoration: none;
     transition: color 0.3s;
   }

   .product-layout2 .solution-card .product-title a:hover {
     color: #65B68D !important;
   }

   .product-layout2 .solution-card .solution-text {
     color: #666;
     font-size: 13.5px;
     line-height: 1.65;
     flex: 1;
     overflow: hidden;
   }

   /* CTA button */
   .product-layout2 .solution-card .social-style {
     padding: 20px 24px 24px;
     margin-top: auto;
     flex-shrink: 0;
   }

   .product-layout2 .solution-card .social-style ul {
     display: none !important;
   }

   .product-layout2 .solution-card .social-style .vs-btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     background: #65B68D;
     color: #FFFFFF !important;
     border: 2px solid #65B68D;
     padding: 10px 28px;
     border-radius: 6px;
     font-size: 13px;
     font-weight: 600;
     text-transform: none;
     text-decoration: none;
     transition: all 0.3s ease;
     letter-spacing: 0.3px;
     box-shadow: 0 2px 8px rgba(101, 182, 141, 0.25);
   }

   .product-layout2 .solution-card .social-style .vs-btn:hover {
     background: #385B99;
     border-color: #385B99;
     color: #FFFFFF !important;
     box-shadow: 0 4px 14px rgba(56, 91, 153, 0.3);
   }

   /* DNA decorative element behind section */
   .product-layout2::before {
     content: '';
     position: absolute;
     top: 0;
     right: 0;
     width: 300px;
     height: 300px;
     background: radial-gradient(circle, #ABD6CA 1px, transparent 1px);
     background-size: 20px 20px;
     opacity: 0.25;
     pointer-events: none;
     z-index: 0;
   }

   /* Responsive */
   @media (max-width: 991px) {
     .product-layout2 .solution-card {
       height: 520px;
       min-height: 520px;
       max-height: 520px;
     }
     .product-layout2 .solution-card .product-img {
       height: 210px;
       min-height: 210px;
       max-height: 210px;
     }
   }

   @media (max-width: 575px) {
     .product-layout2 .solution-card {
       height: 500px;
       min-height: 500px;
       max-height: 500px;
     }
     .product-layout2 .solution-card .product-img {
       height: 200px;
       min-height: 200px;
       max-height: 200px;
     }
   }

/* =============================================
   9. COLLECTION / APLICAÇÕES ESTRATÉGICAS — PREMIUM
   ============================================= */
.collection-layout1 {
  background-color: #FBFAF6;
  position: relative;
  overflow: hidden;
}

/* DNA helix dots — top right */
.collection-layout1::before {
  content: '';
  position: absolute;
  top: 60px;
  right: 40px;
  width: 180px;
  height: 180px;
  background-image: radial-gradient(circle, #ABD6CA 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

/* Diagonal accent line — bottom left */
.collection-layout1::after {
  content: '';
  position: absolute;
  bottom: 80px;
  left: -30px;
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #65B68D, transparent);
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-35deg);
}

.collection-layout1 .title-area {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.collection-layout1 .title-area .sec-subtitle {
  color: #65B68D !important;
  display: inline-block;
  background: rgba(101, 182, 141, 0.08);
  padding: 5px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.collection-layout1 .title-area .sec-title {
  color: #233A61 !important;
  margin-bottom: 14px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
}

.collection-layout1 .title-area .sec-support {
  color: #777777;
  font-size: 15px;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
  padding-top: 4px;
}

/* ---- Collection card ---- */
.collection-layout1 .collection-style1 {
  display: flex;
  align-items: stretch;
  background: #FFFFFF;
  border: 1px solid rgba(171, 214, 202, 0.5);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  position: relative;
  z-index: 1;
  box-shadow: 0 1px 3px rgba(35, 58, 97, 0.03),
              0 4px 16px rgba(35, 58, 97, 0.04);
}

.collection-layout1 .collection-style1:hover {
  box-shadow: 0 4px 20px rgba(35, 58, 97, 0.08),
              0 16px 48px rgba(35, 58, 97, 0.06);
  transform: translateY(-5px);
  border-color: rgba(101, 182, 141, 0.35);
}

/* Green accent bar on left edge */
.collection-layout1 .collection-style1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #65B68D 0%, #ABD6CA 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
  pointer-events: none;
}

.collection-layout1 .collection-style1:hover::before {
  opacity: 1;
}

/* Content area */
.collection-layout1 .collection-content {
  padding: 44px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Small DNA dots in content corner */
.collection-layout1 .collection-content::after {
  content: '';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 60px;
  height: 60px;
  background-image: radial-gradient(circle, #ABD6CA 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.2;
  pointer-events: none;
}

.collection-layout1 .collection-title {
  color: #233A61 !important;
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.collection-layout1 .collection-text {
  color: #555;
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

/* CTA button */
.collection-layout1 .collection-content .vs-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #65B68D;
  color: #FFFFFF !important;
  border: 2px solid #65B68D;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
  align-self: flex-start;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 10px rgba(101, 182, 141, 0.2);
  position: relative;
  z-index: 1;
}

.collection-layout1 .collection-content .vs-btn:hover {
  background: #385B99;
  border-color: #385B99;
  color: #FFFFFF !important;
  box-shadow: 0 4px 16px rgba(56, 91, 153, 0.3);
  transform: translateY(-1px);
}

.collection-layout1 .collection-content .vs-btn i {
  font-size: 12px;
  transition: transform 0.3s;
}

.collection-layout1 .collection-content .vs-btn:hover i {
  transform: translateX(3px);
}

/* Image area */
.collection-layout1 .collection-img {
  width: 260px;
  min-height: 320px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

/* Gradient overlay on image for contrast */
.collection-layout1 .collection-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(35, 58, 97, 0.08) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.collection-layout1 .collection-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-layout1 .collection-style1:hover .collection-img img {
  transform: scale(1.04);
}

/* Hide old elements */
.collection-layout1 .collection-content .price,
.collection-layout1 .collection-img .img-2,
.collection-layout1 .list-style1 {
  display: none !important;
}

/* Carousel dots styling */
.collection-layout1 .slick-dots {
  margin-top: 30px;
}

.collection-layout1 .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ABD6CA;
  opacity: 0.4;
  transition: all 0.3s;
}

.collection-layout1 .slick-dots li.slick-active button {
  background: #65B68D;
  opacity: 1;
  width: 24px;
  border-radius: 5px;
}

/* Responsive Collection */
@media (max-width: 991px) {
  .collection-layout1 .collection-style1 {
    flex-direction: column;
  }
  .collection-layout1 .collection-img {
    width: 100%;
    height: 220px;
    min-height: auto;
  }
  .collection-layout1 .collection-content {
    padding: 32px 28px;
  }
  .collection-layout1 .title-area .sec-title {
    font-size: 26px;
  }
  .collection-layout1::before {
    width: 100px;
    height: 100px;
    top: 30px;
    right: 20px;
  }
}

@media (max-width: 575px) {
  .collection-layout1 .collection-content {
    padding: 28px 22px;
  }
  .collection-layout1 .collection-title {
    font-size: 18px;
  }
  .collection-layout1 .collection-text {
    font-size: 13.5px;
  }
  .collection-layout1 .title-area .sec-title {
    font-size: 22px;
  }
  .collection-layout1::before,
  .collection-layout1::after {
    display: none;
  }
}

/*==============================
  Diferenciais artiClone - adaptação da antiga seção OUR BEST SERVICES
==============================*/
.counter-layout2.articlone-diferenciais {
  position: relative;
  background: linear-gradient(180deg, #233A61 0%, #31538B 46%, #65B68D 100%);
  padding-top: 0;
}

.counter-layout2.articlone-diferenciais::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 560px;
  background: linear-gradient(135deg, rgba(35, 58, 97, 0.22) 0%, rgba(56, 91, 153, 0.12) 55%, rgba(255, 255, 255, 0.06) 100%);
}

.counter-layout2.articlone-diferenciais .container {
  position: relative;
  z-index: 1;
}

.counter-layout2.articlone-diferenciais .diferenciais-hero {
  min-height: 460px;
  padding: 90px 56px 120px;
  border-radius: 0 0 34px 34px;
  position: relative;
}

.counter-layout2.articlone-diferenciais .title-area {
  margin-bottom: 0;
}

.counter-layout2.articlone-diferenciais .title-img {
  margin-bottom: 18px;
}

.counter-layout2.articlone-diferenciais .sec-subtitle {
  color: #ABD6CA !important;
  letter-spacing: 0.12em;
}

.counter-layout2.articlone-diferenciais .sec-title {
  color: #FFFFFF !important;
  line-height: 1.2;
  margin: 16px 0 20px;
  max-width: 13ch;
}

.counter-layout2.articlone-diferenciais .title-text {
  color: rgba(255, 255, 255, 0.88);
  max-width: 58ch;
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 0;
}

.counter-layout2.articlone-diferenciais .diferenciais-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.counter-layout2.articlone-diferenciais .diferencial-badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.counter-layout2.articlone-diferenciais .counter-img {
  position: relative;
  bottom: auto;
  max-width: 500px;
  margin-left: auto;
  border-radius: 32px;
  overflow: hidden;
  border: 6px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 60px rgba(8, 20, 38, 0.28);
}

.counter-layout2.articlone-diferenciais .counter-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(35,58,97,0.18) 100%);
  pointer-events: none;
}

.counter-layout2.articlone-diferenciais .counter-img img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

.counter-layout2.articlone-diferenciais .counter-style2 {
  margin: -56px auto 0;
  padding: 34px;
  background: linear-gradient(135deg, #2D4B7C 0%, #385B99 48%, #65B68D 100%);
  border: 1px solid rgba(171, 214, 202, 0.34);
  border-radius: 30px;
  box-shadow: 0 30px 75px rgba(23, 41, 70, 0.22);
  position: relative;
  z-index: 2;
  color: #FFFFFF;
}

.counter-layout2.articlone-diferenciais .counter-style2::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 42%);
  pointer-events: none;
}

.counter-layout2.articlone-diferenciais .counter-style2 .counter-card,
.counter-layout2.articlone-diferenciais .counter-style2 .counter-card-number,
.counter-layout2.articlone-diferenciais .counter-style2 .counter-card-title,
.counter-layout2.articlone-diferenciais .counter-style2 .counter-card-text {
  opacity: 1 !important;
}

.counter-layout2.articlone-diferenciais .counter-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 14px 36px rgba(16, 29, 51, 0.12);
  backdrop-filter: blur(6px);
}

.counter-layout2.articlone-diferenciais .counter-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.counter-layout2.articlone-diferenciais .counter-card-title {
  color: #FFFFFF !important;
  font-size: 22px;
  line-height: 1.35;
  margin-bottom: 14px;
}

.counter-layout2.articlone-diferenciais .counter-card-text {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 0;
}

@media (max-width: 1199px) {
  .counter-layout2.articlone-diferenciais::before {
    height: 540px;
  }

  .counter-layout2.articlone-diferenciais .diferenciais-hero {
    padding: 80px 36px 110px;
  }

  .counter-layout2.articlone-diferenciais .sec-title {
    max-width: 15ch;
  }

  .counter-layout2.articlone-diferenciais .counter-card-title {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .counter-layout2.articlone-diferenciais::before {
    height: 760px;
  }

  .counter-layout2.articlone-diferenciais .diferenciais-hero {
    min-height: auto;
    padding: 72px 28px 110px;
    border-radius: 0 0 28px 28px;
  }

  .counter-layout2.articlone-diferenciais .sec-title,
  .counter-layout2.articlone-diferenciais .title-text {
    max-width: none;
  }

  .counter-layout2.articlone-diferenciais .counter-img {
    max-width: 620px;
    margin: 0 auto;
  }

  .counter-layout2.articlone-diferenciais .counter-img img {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .counter-layout2.articlone-diferenciais .counter-style2 {
    margin-top: -40px;
    padding: 26px;
  }
}

@media (max-width: 767px) {
  .counter-layout2.articlone-diferenciais::before {
    height: 860px;
  }

  .counter-layout2.articlone-diferenciais .diferenciais-hero {
    padding: 58px 20px 95px;
  }

  .counter-layout2.articlone-diferenciais .title-text {
    font-size: 15px;
    line-height: 1.75;
  }

  .counter-layout2.articlone-diferenciais .diferenciais-badges {
    gap: 10px;
  }

  .counter-layout2.articlone-diferenciais .diferencial-badge {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .counter-layout2.articlone-diferenciais .counter-style2 {
    margin-top: -34px;
    padding: 18px;
    border-radius: 24px;
  }

  .counter-layout2.articlone-diferenciais .counter-card {
    padding: 22px 20px;
  }

  .counter-layout2.articlone-diferenciais .counter-card-title {
    font-size: 19px;
  }
}

/*==============================
  Serviços Técnicos - Layout inspirado na Farmix e adaptado para artiClone
==============================*/
.service-layout2 {
  background-color: #FBFAF6;
}

.service-layout2 .title-area {
  margin-bottom: 50px;
}

.service-layout2 .title-area .sec-subtitle {
  color: #65B68D !important;
}

.service-layout2 .title-area .sec-title {
  color: #233A61 !important;
}

.service-layout2 .title-area .sec-support {
  color: #666666;
  font-size: 15px;
  line-height: 1.7;
  max-width: 700px;
  margin: 10px auto 0;
}

.service-layout2 .service-list ul {
  padding: 0;
  margin: 0;
}

.service-layout2 .service-list ul li {
  list-style: none;
}

.service-layout2 .service-list ul li:not(:last-child) {
  margin-bottom: 12px;
}

.service-layout2 .service-list ul li .vs-btn {
  width: 100%;
  position: relative;
  text-align: left;
  padding: 22px 30px;
  padding-right: 86px;
  font-size: 21px;
  line-height: 1.25;
  background-color: #FFFFFF;
  border: 1px solid #D8E8E0;
  color: #233A61;
  transition: all ease 0.3s;
}

.service-layout2 .service-list ul li .vs-btn:hover,
.service-layout2 .service-list ul li .vs-btn.active {
  background-color: #65B68D;
  border-color: #65B68D;
  color: #FFFFFF;
}

.service-layout2 .service-list ul li .vs-btn i {
  position: absolute;
  right: 5px;
  width: 54px;
  height: 54px;
  line-height: 54px;
  background-color: #65B68D;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #233A61;
  font-size: 18px;
  transition: all ease 0.3s;
}

.service-layout2 .service-list ul li .vs-btn:hover i,
.service-layout2 .service-list ul li .vs-btn.active i {
  background-color: #FFFFFF;
  color: #233A61;
}

.service-layout2 .service-tab-wrap {
  position: relative;
  min-height: 100%;
}

.service-layout2 .service-pane {
  display: none;
}

.service-layout2 .service-pane.active {
  display: block;
}

.service-layout2 .service-inner {
  padding-right: 8px;
}

.service-layout2 .service-inner .service-icon {
  width: 112px;
  height: 112px;
  line-height: 112px;
  text-align: center;
  background-color: #65B68D;
  border-radius: 50%;
  margin-bottom: 25px;
}

.service-layout2 .service-icon-svg {
  width: 112px;
  height: 112px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-layout2 .service-icon-svg svg {
  width: 52px;
  height: 52px;
  stroke: #233A61;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-layout2 .service-title a {
  color: #233A61;
}

.service-layout2 .service-title a:hover {
  color: #65B68D;
}

.service-layout2 .service-text {
  margin-bottom: 18px;
  color: #666666;
}

.service-layout2 .link-btn {
  border-bottom: 2px solid #233A61;
  color: #233A61;
}

.service-layout2 .link-btn:hover {
  border-color: #65B68D;
  color: #65B68D;
}

.service-layout2 .service-img {
  border-radius: 50%;
  overflow: hidden;
  background-color: #E9F3ED;
}

.service-layout2 .service-img img {
  border-radius: 100%;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.service-layout2 .service-pane#service-pane-preservacao .service-img img {
  object-position: center top;
}

@media (max-width: 1199px) {
  .service-layout2 .service-list ul li .vs-btn {
    font-size: 18px;
    padding: 18px 24px;
    padding-right: 78px;
  }
}

@media (max-width: 991px) {
  .service-layout2 .service-list {
    margin-bottom: 35px;
  }

  .service-layout2 .service-inner {
    margin-bottom: 30px;
    padding-right: 0;
  }

  .service-layout2 .service-img {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .service-layout2 .title-area {
    margin-bottom: 35px;
  }

  .service-layout2 .service-list ul li .vs-btn {
    font-size: 16px;
    padding: 16px 20px;
    padding-right: 70px;
  }

  .service-layout2 .service-list ul li .vs-btn i {
    width: 46px;
    height: 46px;
    line-height: 46px;
    font-size: 16px;
  }

  .service-layout2 .service-inner .service-icon,
  .service-layout2 .service-icon-svg {
    width: 92px;
    height: 92px;
    line-height: 92px;
  }

  .service-layout2 .service-icon-svg svg {
    width: 42px;
    height: 42px;
  }
}

/*==============================
  Equipe Técnica artiClone
==============================*/
.team-layout2.articlone-team {
  background: #FBFAF6;
}

.team-layout2.articlone-team .title-area {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.team-layout2.articlone-team .sec-subtitle {
  color: #65B68D;
  letter-spacing: 0.12em;
}

.team-layout2.articlone-team .sec-title {
  color: #233A61;
  max-width: 15ch;
  margin-left: auto;
  margin-right: auto;
}

.team-layout2.articlone-team .team-section-text {
  color: #4F6274;
  font-size: 16px;
  line-height: 1.85;
  max-width: 78ch;
  margin: 22px auto 0;
}

.team-layout2.articlone-team .col-lg-4 {
  display: flex;
}

.team-layout2.articlone-team .team-style2 {
  background-color: #FFFFFF;
  border: 1px solid rgba(171, 214, 202, 0.9);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(35, 58, 97, 0.08);
  display: flex;
  flex-direction: column;
  width: 100%;
}

.team-layout2.articlone-team .team-img {
  clip-path: none;
  border-bottom: 1px solid rgba(171, 214, 202, 0.75);
  background: linear-gradient(180deg, rgba(171, 214, 202, 0.18) 0%, rgba(255, 255, 255, 0) 100%);
}

.team-layout2.articlone-team .team-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
}

.team-layout2.articlone-team .team-content {
  display: flex;
  flex: 1;
  padding: 26px 28px 30px;
}

.team-layout2.articlone-team .team-dsc {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.team-layout2.articlone-team .team-name {
  color: #233A61;
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.team-layout2.articlone-team .team-name a {
  color: inherit;
  pointer-events: none;
}

.team-layout2.articlone-team .team-degi {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #385B99;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.team-layout2.articlone-team .team-degi::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #65B68D;
  box-shadow: 0 0 0 6px rgba(101, 182, 141, 0.16);
}

.team-layout2.articlone-team .team-contact {
  display: block;
  color: #5F6E7C;
  font-size: 15px;
  line-height: 1.75;
  text-decoration: none;
  margin: 0;
}

.team-layout2.articlone-team .social-style1 {
  display: none !important;
}

.team-layout2.articlone-team .vs-carousel .slick-track {
  display: flex;
}

.team-layout2.articlone-team .vs-carousel .slick-track .slick-slide {
  height: auto;
}

.team-layout2.articlone-team .vs-carousel .slick-track .slick-slide > div,
.team-layout2.articlone-team .team-style2 {
  height: 100%;
}

@media (max-width: 991px) {
  .team-layout2.articlone-team .sec-title {
    max-width: 18ch;
  }
}

@media (max-width: 767px) {
  .team-layout2.articlone-team .team-img img {
    height: 240px;
  }

  .team-layout2.articlone-team .team-content {
    padding: 24px 22px 26px;
  }

  .team-layout2.articlone-team .team-name {
    font-size: 22px;
  }
}

/*==============================
  Newsletter artiClone
==============================*/
.subscribe-layout1.articlone-newsletter {
  transform: none;
  margin: 0;
  padding: 0 0 110px;
}

.subscribe-layout1.articlone-newsletter .subscribe-style1 {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 54px 56px;
  background: linear-gradient(135deg, #233A61 0%, #385B99 100%);
  box-shadow: 0 22px 55px rgba(35, 58, 97, 0.22);
}

.subscribe-layout1.articlone-newsletter .subscribe-style1::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(101, 182, 141, 0.22) 0, rgba(101, 182, 141, 0) 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: auto, 26px 26px, 26px 26px;
  opacity: 0.5;
  pointer-events: none;
}

.subscribe-layout1.articlone-newsletter .z-index-common {
  position: relative;
  z-index: 1;
}

.subscribe-layout1.articlone-newsletter .subscribe-inner {
  align-items: flex-start;
  margin-bottom: 28px;
}

.subscribe-layout1.articlone-newsletter .subscribe-icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 4px 24px 0 0;
  border-radius: 20px;
  background: rgba(101, 182, 141, 0.14);
  color: #65B68D;
  box-shadow: inset 0 0 0 1px rgba(101, 182, 141, 0.32);
}

.subscribe-layout1.articlone-newsletter .subscribe-inner .subscribe-icon i {
  font-size: 34px;
}

.subscribe-layout1.articlone-newsletter .subscribe-title {
  max-width: 620px;
}

.subscribe-layout1.articlone-newsletter .subscribe-inner .sec-title {
  color: #FBFAF6;
  text-transform: none;
  font-size: 36px;
  line-height: 1.18;
  margin-bottom: 14px;
}

.subscribe-layout1.articlone-newsletter .subscribe-inner .sec-subtitle {
  color: rgba(251, 250, 246, 0.92);
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
}

.subscribe-layout1.articlone-newsletter .newsletter-form {
  margin-left: 0;
  max-width: 640px;
}

.subscribe-layout1.articlone-newsletter .newsletter-form .search-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 35px rgba(19, 33, 56, 0.16);
}

.subscribe-layout1.articlone-newsletter .newsletter-form .search-btn input {
  flex: 1;
  min-width: 0;
  height: 60px;
  padding: 0 22px;
  color: #233A61;
  background: transparent;
  border: none;
  box-shadow: none;
}

.subscribe-layout1.articlone-newsletter .newsletter-form .search-btn input::placeholder {
  color: #6C7B88;
}

.subscribe-layout1.articlone-newsletter .newsletter-form .search-btn .vs-btn {
  min-width: 250px;
  min-height: 60px;
  padding: 16px 28px;
  border-radius: 16px;
  border: none;
  background: #65B68D;
  color: #233A61;
  font-weight: 700;
  box-shadow: none;
}

.subscribe-layout1.articlone-newsletter .newsletter-form .search-btn .vs-btn:hover {
  background: #ABD6CA;
  color: #233A61;
}

.subscribe-layout1.articlone-newsletter .subscribe-img {
  position: relative;
  right: auto;
  transform: none;
  max-width: 430px;
  margin-left: auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(18, 31, 53, 0.28);
}

.subscribe-layout1.articlone-newsletter .subscribe-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35, 58, 97, 0.04) 0%, rgba(35, 58, 97, 0.18) 100%);
}

.subscribe-layout1.articlone-newsletter .subscribe-img img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  object-fit: cover;
}

@media (max-width: 1199px) {
  .subscribe-layout1.articlone-newsletter .subscribe-style1 {
    padding: 48px 40px;
  }

  .subscribe-layout1.articlone-newsletter .subscribe-inner .sec-title {
    font-size: 32px;
  }

  .subscribe-layout1.articlone-newsletter .newsletter-form .search-btn .vs-btn {
    min-width: 220px;
  }
}

@media (max-width: 991px) {
  .subscribe-layout1.articlone-newsletter {
    padding-bottom: 90px;
  }

  .subscribe-layout1.articlone-newsletter .subscribe-style1 {
    padding: 42px 28px;
  }

  .subscribe-layout1.articlone-newsletter .subscribe-img {
    display: none;
  }
}

@media (max-width: 767px) {
  .subscribe-layout1.articlone-newsletter {
    padding-bottom: 74px;
  }

  .subscribe-layout1.articlone-newsletter .subscribe-style1 {
    padding: 34px 22px;
    border-radius: 24px;
  }

  .subscribe-layout1.articlone-newsletter .subscribe-inner {
    display: block;
    margin-bottom: 22px;
  }

  .subscribe-layout1.articlone-newsletter .subscribe-icon {
    margin: 0 0 18px;
  }

  .subscribe-layout1.articlone-newsletter .subscribe-inner .sec-title {
    font-size: 28px;
  }

  .subscribe-layout1.articlone-newsletter .subscribe-inner .sec-subtitle {
    font-size: 15px;
    line-height: 1.65;
  }

  .subscribe-layout1.articlone-newsletter .newsletter-form .search-btn {
    flex-direction: column;
    align-items: stretch;
    border-radius: 18px;
  }

  .subscribe-layout1.articlone-newsletter .newsletter-form .search-btn input {
    height: 56px;
    padding: 0 18px;
  }

  .subscribe-layout1.articlone-newsletter .newsletter-form .search-btn .vs-btn {
    width: 100%;
    min-width: 0;
    min-height: 56px;
  }
}

/*==============================
  Rodapé artiClone
==============================*/
.footer-layout2.articlone-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FBFAF6 0%, #F2F7F3 54%, #E7F1EC 100%) !important;
  box-shadow: inset 0 1px 0 rgba(35, 58, 97, 0.08);
}

.footer-layout2.articlone-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(101, 182, 141, 0.12), transparent 34%),
              linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(171, 214, 202, 0.10) 100%);
  pointer-events: none;
}

.footer-layout2.articlone-footer .widget-area,
.footer-layout2.articlone-footer .copyright-wrap {
  position: relative;
  z-index: 1;
}

.footer-layout2.articlone-footer .widget-area {
  padding: 90px 0 42px;
}

.footer-layout2.articlone-footer .footer-widget {
  margin-bottom: 34px;
}

.footer-layout2.articlone-footer .footer-logo {
  margin-bottom: 12px;
}

.footer-layout2.articlone-footer .footer-logo img {
  width: 100%;
  max-width: 168px;
  height: auto;
  filter: none;
}

.footer-layout2.articlone-footer .footer-text {
  color: #000000;
  max-width: 38ch;
  line-height: 1.8;
  margin: 18px 0 24px;
  text-shadow: none;
}

.footer-layout2.articlone-footer .footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-layout2.articlone-footer .footer-social a {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #233A61;
  background: rgba(56, 91, 153, 0.08);
  border: 1px solid rgba(56, 91, 153, 0.16);
  transition: all 0.3s ease;
}

.footer-layout2.articlone-footer .footer-social a:hover {
  color: #FFFFFF;
  background: #233A61;
  border-color: #233A61;
  transform: translateY(-2px);
}

.footer-layout2.articlone-footer .widget_title {
  color: #000000;
}

.footer-layout2.articlone-footer .widget_title::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: #65B68D;
}

.footer-layout2.articlone-footer .widget_categories ul,
.footer-layout2.articlone-footer .footer-media {
  margin-top: 26px;
}

.footer-layout2.articlone-footer .widget_categories li:not(:last-child),
.footer-layout2.articlone-footer .footer-media .media-style1:not(:last-child) {
  margin-bottom: 14px;
}

.footer-layout2.articlone-footer .widget_categories a,
.footer-layout2.articlone-footer .media-info,
.footer-layout2.articlone-footer .media-info a {
  color: #000000;
  line-height: 1.72;
}

.footer-layout2.articlone-footer .widget_categories a:hover,
.footer-layout2.articlone-footer .media-info a:hover {
  color: #233A61;
}

.footer-layout2.articlone-footer .media-style1 {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(56, 91, 153, 0.10);
}

.footer-layout2.articlone-footer .media-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  margin-right: 0;
  line-height: 46px;
  border-radius: 14px;
  background: rgba(56, 91, 153, 0.12);
  color: #233A61;
  font-size: 18px;
}

.footer-layout2.articlone-footer .copyright-wrap {
  position: relative;
  padding: 24px 0 0;
  border-top: 1px solid rgba(35, 58, 97, 0.12);
}

.footer-layout2.articlone-footer .copyright-text,
.footer-layout2.articlone-footer .copyright-text a {
  color: #000000;
}

.footer-layout2.articlone-footer .copyright-text a:hover {
  color: #233A61;
}

@media (max-width: 991px) {
  .footer-layout2.articlone-footer .widget-area {
    padding: 80px 0 34px;
  }
}

@media (max-width: 767px) {
  .footer-layout2.articlone-footer .widget-area {
    padding: 72px 0 28px;
  }

  .footer-layout2.articlone-footer .footer-text {
    max-width: none;
  }

  .footer-layout2.articlone-footer .footer-logo img {
    max-width: 150px;
  }
}

/*==============================
  Ajustes finais: mobile + ícones/carrosséis desktop
==============================*/
.title-area .title-img img {
  width: auto;
  max-width: 58px !important;
  max-height: 58px;
}

@media (min-width: 992px) {
  .slick-arrow {
    width: 56px;
    height: 56px;
    line-height: 56px;
    font-size: 18px;
    margin-top: -28px;
  }

  .collection-layout1::before {
    width: 110px;
    height: 110px;
    top: 36px;
    right: 24px;
    opacity: 0.18;
  }
}

@media (max-width: 991px) {
  .space,
  .space-top {
    padding-top: 72px;
  }

  .space,
  .space-bottom {
    padding-bottom: 72px;
  }

  .title-area {
    margin-bottom: 32px;
  }

  .title-area .title-img img {
    max-width: 46px;
    max-height: 46px;
  }

  .header-layout3 .sticky-wrapper {
    box-shadow: 0 1px 8px rgba(0,0,0,0.05);
  }

  .header-layout3 .sticky-wrapper .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-layout3 .header-row {
    min-height: 68px;
  }

  .header-layout3 .vs-menu-toggle,
  .header-layout3 .col-auto.d-lg-none .vs-menu-toggle,
  .header-layout3 .d-lg-none .vs-menu-toggle {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 12px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(101, 182, 141, 0.16);
    border: 1px solid rgba(56, 91, 153, 0.14);
    color: #233A61;
    font-size: 19px;
    box-shadow: none;
  }

  .hero-layout3 {
    min-height: auto;
    display: block;
    padding: 40px 0 48px;
  }

  .hero-layout3 .container,
  .hero-layout3 .row,
  .hero-layout3 [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }

  .hero-layout3 .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-layout3 .hero-content {
    position: relative;
    z-index: 2;
  }

  .hero-layout3 .hero-label {
    margin-bottom: 14px;
    letter-spacing: 1.1px;
    line-height: 1.45;
  }

  .hero-layout3 .hero-title {
    font-size: 34px;
    line-height: 1.14;
    margin-bottom: 16px;
  }

  .hero-layout3 .hero-text {
    font-size: 16px;
    line-height: 1.72;
    margin-bottom: 24px;
  }

  .hero-layout3 .hero-bottom {
    gap: 12px;
  }

  .hero-layout3 .hero-bottom .vs-btn {
    min-height: 54px;
    padding: 14px 18px;
  }

  .hero-layout3 .hero-support {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-layout3 .hero-images {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    margin-top: 28px;
    padding: 0 16px;
    z-index: 2;
  }

  .hero-layout3 .hero-images .slide-img {
    width: 100%;
  }

  .hero-layout3 .hero-images .slide-img img {
    width: 100%;
    max-width: none;
    max-height: none;
    height: 240px;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
    box-shadow: 0 16px 34px rgba(35, 58, 97, 0.12);
  }

  .hero-layout3 .hero-geo,
  .hero-layout3 .hero-geo-block,
  .hero-layout3 .hero-geo-dna,
  .hero-layout3 .hero-geo-accent,
  .hero-layout3 .hero-geo-dots {
    display: none !important;
  }

  .product-layout2 .row.vs-carousel {
    margin-left: 0;
    margin-right: 0;
  }

  .product-layout2 .row.vs-carousel > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
  }

  .product-layout2 .title-area,
  .collection-layout1 .title-area,
  .service-layout2 .title-area,
  .counter-layout2.articlone-diferenciais .title-area,
  .subscribe-layout1.articlone-newsletter .title-area {
    margin-bottom: 28px;
  }

  .categorie-layout2 .title-area {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }

  .categorie-layout2 .title-link {
    width: 100%;
    text-align: center;
  }

  .categorie-layout2 .title-link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .categorie-layout2 .row > [class*="col-"],
  .product-layout2 .row > [class*="col-"],
  .collection-layout1 .row > [class*="col-"],
  .team-layout2.articlone-team .row > [class*="col-"],
  .service-layout2 .service-style2 .row > [class*="col-"] {
    display: flex;
  }

  .categorie-layout2 .categorie-style2,
  .product-layout2 .solution-card,
  .collection-layout1 .collection-style1,
  .team-layout2.articlone-team .team-style2 {
    width: 100%;
  }

  .counter-layout2.articlone-diferenciais .title-area {
    text-align: center;
  }

  .counter-layout2.articlone-diferenciais .diferenciais-badges {
    justify-content: center;
  }

  .counter-layout2.articlone-diferenciais .counter-img {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 24px;
  }

  .collection-layout1::before,
  .collection-layout1::after,
  .product-layout2::before {
    display: none;
  }

  .collection-layout1 .collection-content {
    padding: 30px 22px;
  }

  .counter-layout2.articlone-diferenciais .diferenciais-hero {
    min-height: auto;
    padding: 64px 22px 96px;
  }

  .counter-layout2.articlone-diferenciais .counter-img img {
    min-height: 260px;
  }

  .hero-layout3 .hero-bottom .vs-btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .space,
  .space-top {
    padding-top: 60px;
  }

  .space,
  .space-bottom {
    padding-bottom: 60px;
  }

  .header-layout3 .sticky-wrapper .container,
  .hero-layout3 .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-layout3 {
    padding: 32px 0 40px;
  }

  .hero-layout3 .hero-title {
    font-size: 30px;
  }

  .hero-layout3 .hero-label {
    font-size: 11px;
    padding: 6px 12px;
  }

  .hero-layout3 .hero-bottom .vs-btn {
    min-height: 52px;
    font-size: 14px;
  }

  .hero-layout3 .hero-images {
    padding: 0 14px;
  }

  .hero-layout3 .hero-images .slide-img img {
    height: 220px;
    border-radius: 20px;
  }

  .product-layout2 .solution-card {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .product-layout2 .solution-card .product-img {
    height: 190px;
    min-height: 190px;
    max-height: 190px;
  }

  .product-layout2 .solution-card .product-about {
    padding: 24px 20px 0;
  }

  .product-layout2 .solution-card .social-style {
    padding: 18px 20px 22px;
  }

  .collection-layout1 .collection-content {
    padding: 28px 20px;
  }

  .counter-layout2.articlone-diferenciais .diferenciais-hero {
    padding: 56px 18px 90px;
  }
}

