/*
Theme Name: IC Hospitalar
Theme URI: https://ichospitalar.com.br
Author: IC Hospitalar
Description: Tema personalizado para IC Hospitalar.
Version: 1.0.0
Text Domain: ic-hospitalar
*/

:root{
  --primary:#253B80;
  --secondary:#3E5AA8;
  --light:#F7F9FC;
  --text:#1B2430;
  --green:#25D366;
  --border:#E8EDF5;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:#fff;
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
}

.container{
  width:1280px;
  max-width:92%;
  margin:auto;
}

.section{
  padding:120px 0;
}

.light-section{
  background:#F8FAFF;
}

/* TOPBAR */

/* TOPBAR */

.topbar{
  background:
  linear-gradient(
    90deg,
    #1C3170,
    #253B80
  );

  color:#fff;
  height:48px;
  display:flex;
  align-items:center;

  border-bottom:
  1px solid rgba(255,255,255,.08);
}

.topbar-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  width:100%;
}

.topbar-left,
.topbar-right{
  display:flex;
  align-items:center;
}

.topbar-right{
  gap:28px;
}

.topbar-item{
  display:flex;
  align-items:center;
  gap:8px;

  color:#fff;

  font-size:14px;
  font-weight:500;

  transition:.3s ease;
}

.topbar-item svg{
  opacity:.85;
}

.topbar-item:hover{
  opacity:.8;
  transform:translateY(-1px);
}

/* HEADER */

.header{
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(14px);
  position:sticky;
  top:0;
  z-index:999;
  border-bottom:1px solid rgba(0,0,0,.04);
}

.header-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:28px;

  padding:22px 0;

  min-height:92px;
}

.logo img{
  width:200px;
  height:auto;
  display:block;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  flex:1;
  min-width:0;
}

.nav > ul,
.nav .nav-menu,
.nav .menu{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:clamp(14px, 2vw, 30px);
  flex-wrap:nowrap;
  list-style:none !important;
  margin:0 !important;
  padding:0 !important;
}

.nav li,
.nav .menu-item{
  list-style:none !important;
  margin:0;
  padding:0;
  position:relative;
  flex:0 1 auto;
}

.nav li::marker{
  content:'';
}

.nav a{
  display:flex;
  align-items:center;
  color:var(--text);
  font-weight:600;
  font-size:clamp(13px, 1.02vw, 15px);
  line-height:1.25;
  max-width:132px;
  text-align:left;
  position:relative;
  transition:.3s;
}

.nav a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:var(--primary);
  transition:.3s;
}

.nav a:hover::after{
  width:100%;
}

.nav .sub-menu{
  position:absolute;
  top:calc(100% + 16px);
  left:0;
  z-index:1000;
  min-width:220px;
  display:block;
  list-style:none !important;
  margin:0 !important;
  padding:10px !important;
  background:#fff;
  border:1px solid rgba(37,59,128,.12);
  border-radius:14px;
  box-shadow:0 18px 40px rgba(13,27,62,.14);
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:.25s ease;
}

.nav li:hover > .sub-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.nav .sub-menu a{
  display:block;
  padding:10px 12px;
  white-space:nowrap;
  border-radius:8px;
}

.nav .sub-menu a::after{
  display:none;
}

.nav .sub-menu a:hover{
  background:#F3F6FF;
  color:var(--primary);
}

/* BUTTONS */

.btn{
  padding:18px 34px;
  border-radius:16px;
  font-weight:700;
  font-size:15px;
  transition:.35s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.btn:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 35px rgba(0,0,0,.12);
}

.btn-whatsapp{
  background:linear-gradient(135deg,#25D366,#1fb455);
  color:#fff;
}

.btn-outline{
  border:2px solid rgba(255,255,255,.9);
  color:#fff;
  background:rgba(255,255,255,.08);
  gap:12px;
}

.btn-outline svg{
  width:22px;
  height:22px;
  flex-shrink:0;
}

.btn-outline:hover{
  background:#fff;
  color:var(--primary);
  border-color:#fff;
}


/* HERO */



.badge{
  display:inline-block;
  background:#E9F0FF;
  color:var(--primary);
  padding:10px 18px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
  margin-bottom:14px;
}




.hero-buttons{
  display:flex;
  gap:20px;
  margin-bottom:14px;
}

.hero-buttons .btn{
  min-width:260px;
  min-height:58px;
  padding:0 26px;
  white-space:nowrap;
}

.hero-features{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.feature{
  background:#fff;
  border:1px solid rgba(37,59,128,.08);
  padding:16px 20px;
  border-radius:14px;
}

.hero-image{
  position:relative;
}



/* CPAP */

.cpap-section{
  padding:70px 0;
}

.cpap-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.cpap-image{
  background:#fff;
  border-radius:34px;
  padding:40px;
  box-shadow:
  0 25px 50px rgba(37,59,128,.08);
}

.cpap-image img{
  border-radius:24px;
}

.cpap-content h2{
  font-size:58px;
  line-height:1.05;
  letter-spacing:-2px;
  margin-bottom:24px;
  color:var(--primary);
  font-family:'Poppins',sans-serif;
}

.cpap-content p{
  line-height:1.9;
  color:#667085;
  margin-bottom:35px;
}

.cpap-benefits{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-bottom:35px;
}

.benefit-card{
  background:#fff;
  border:1px solid rgba(37,59,128,.08);
  border-radius:16px;
  padding:20px;
}

/* TITLES */

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title h2{
  font-size:58px;
  line-height:1.05;
  letter-spacing:-2px;
  color:var(--primary);
  margin-bottom:18px;
  font-family:'Poppins',sans-serif;
}

.section-title p{
  color:#667085;
  font-size:18px;
  max-width:700px;
  margin:auto;
  line-height:1.8;
}

/* DIFFERENTIALS */

.differentials-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}

.diff-card{
  background:#fff;
  border:1px solid rgba(37,59,128,.08);
  border-radius:28px;
  padding:48px 36px;
  transition:.35s ease;
  box-shadow:
  0 10px 30px rgba(37,59,128,.04);
}

.diff-card:hover{
  transform:translateY(-8px);
  box-shadow:
  0 25px 50px rgba(37,59,128,.10);
}

.diff-card h3{
  margin-bottom:18px;
  color:var(--primary);
  font-size:26px;
}


/* CTA */

.cta-section{
  background:
  linear-gradient(
    135deg,
    #13275B 0%,
    #253B80 50%,
    #1A2E68 100%
  );
  padding:100px 0;
  position:relative;
  overflow:hidden;
  color:#fff;
}

.cta-section::before{
  content:'';
  position:absolute;
  inset:0;
  background:
  radial-gradient(
    circle at top right,
    rgba(255,255,255,.08),
    transparent 40%
  );
}

.cta-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
  position:relative;
  z-index:2;
}

.cta-content h2{
  font-size:58px;
  line-height:1.05;
  margin-bottom:20px;
  font-family:'Poppins',sans-serif;
}

.cta-content p{
  font-size:18px;
  color:#D6DEEE;
}

/* FOOTER */

.footer{
  background:#13275B;
  padding:78px 0 28px;
  color:#fff;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.25fr 1fr 1.25fr .9fr;
  gap:54px;
  align-items:flex-start;
}

.footer h4{
  margin-bottom:22px;
  font-size:17px;
  font-weight:800;
  color:#fff;
}

.footer-logo{
  display:inline-flex;
  margin-bottom:22px;
}

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

.footer p,
.footer li{
  color:#D6DEEE;
  line-height:1.8;
  font-size:15px;
}

.footer ul{
  list-style:none;
  margin:0;
  padding:0;
}

.footer li{
  margin-bottom:10px;
}

.footer a{
  color:#D6DEEE;
  text-decoration:none;
  transition:.25s ease;
}

.footer a:hover{
  color:#fff;
}

.footer-contact-list a{
  line-height:1.55;
}

.footer-social-list a{
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.footer-social-list svg{
  width:20px;
  height:20px;
  flex-shrink:0;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.footer-social-list a[href*="wa.me"] svg{
  fill:currentColor;
  stroke:none;
}

.footer-bottom{
  margin-top:46px;
  padding-top:24px;
  border-top:1px solid rgba(255,255,255,.12);
  color:#AEBBE0;
  font-size:13px;
}

.floating-whatsapp{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:9999;
  min-width:168px;
  height:58px;
  padding:0 22px;
  border-radius:999px;
  background:#25D366;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:800;
  font-size:15px;
  text-decoration:none;
  box-shadow:0 18px 36px rgba(37,211,102,.35);
  transition:.25s ease;
}

.floating-whatsapp:hover{
  transform:translateY(-3px);
  box-shadow:0 22px 44px rgba(37,211,102,.44);
}

.floating-whatsapp svg{
  width:28px;
  height:28px;
  fill:currentColor;
  flex-shrink:0;
}

@media(max-width:768px){
  .floating-whatsapp{
    right:16px;
    bottom:16px;
    min-width:58px;
    width:58px;
    padding:0;
  }

  .floating-whatsapp span{
    display:none;
  }
}

/* MOBILE */

.mobile-menu-btn{
  display:none;
  font-size:30px;
  cursor:pointer;
  border:0;
  background:transparent;
  padding:0;
  line-height:1;
}

.mobile-menu{
  display:none;
}

.mobile-menu.active{
  display:none;
}

@media(max-width:1100px){

  .header-content{
    gap:18px;
  }

  .logo img{
    width:170px;
  }

  .nav > ul,
  .nav .nav-menu,
  .nav .menu{
    gap:14px;
  }

  .nav a{
    font-size:13px;
    max-width:112px;
  }

  .desktop-btn{
    height:48px;
    padding:0 18px;
    font-size:14px;
  }
 

  .hero h1{
    font-size:62px;
  }

  .section-title h2,
  .cpap-content h2,
  .cta-content h2{
    font-size:48px;
  }

}

@media(max-width:1024px){
  .nav,
  .desktop-btn{
    display:none;
  }

  .mobile-menu-btn{
    display:block;
    margin-left:auto;
  }

  .mobile-menu{
    display:none;
    flex-direction:column;
    background:#fff;
    padding:20px;
    border-bottom:1px solid rgba(0,0,0,.05);
    box-shadow:0 18px 34px rgba(13,27,62,.12);
  }

  .mobile-menu.active{
    display:flex;
  }

  .mobile-menu ul,
  .mobile-menu li{
    list-style:none !important;
    margin:0 !important;
    padding:0 !important;
  }

  .mobile-menu a{
    display:block;
    padding:16px 0;
    border-bottom:1px solid rgba(0,0,0,.05);
    color:var(--text);
  }

  .mobile-menu .sub-menu{
    padding-left:16px !important;
  }

  .mobile-menu .sub-menu a{
    font-size:14px;
    color:#5d6985;
  }
}

@media(max-width:991px){

  .differentials-grid,
  .categories-grid,
  .kits-grid,
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:1120px){
  .categories-grid{
    grid-template-columns: repeat(2, minmax(0, 480px));
  }
}

@media(max-width:768px){

  .nav,
  .desktop-btn{
    display:none;
  }

  .mobile-menu-btn{
    display:block;
  }

  .mobile-menu{
    display:none;
    flex-direction:column;
    background:#fff;
    padding:20px;
    border-bottom:1px solid rgba(0,0,0,.05);
    box-shadow:0 18px 34px rgba(13,27,62,.12);
  }

  .mobile-menu.active{
    display:flex;
  }

  .mobile-menu ul,
  .mobile-menu li{
    list-style:none !important;
    margin:0 !important;
    padding:0 !important;
  }

  .mobile-menu a{
    display:block;
    padding:16px 0;
    border-bottom:1px solid rgba(0,0,0,.05);
    color:var(--text);
  }

  .mobile-menu .sub-menu{
    padding-left:16px !important;
  }

  .mobile-menu .sub-menu a{
    font-size:14px;
    color:#5d6985;
  }





  .hero-buttons{
    flex-direction:column;
  }

  .hero-buttons .btn{
    width:100%;
    min-width:0;
  }

  .hero-features{
    flex-direction:column;
  }

  .cpap-benefits{
    grid-template-columns:1fr;
  }

  .section-title h2,
  .cpap-content h2,
  .cta-content h2{
    font-size:40px;
  }

}

.header{
  box-shadow:
  0 4px 20px rgba(0,0,0,.03);
}

/* HERO SLIDER */

.hero-slider{
  position:relative;
  width:100%;
  height:460px;
  overflow:hidden;
}

.slides{
  width:100%;
  height:100%;
  position:relative;
}

.slide{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transition:1s ease;
}

.slide.active{
  opacity:1;
  visibility:visible;
}

.slide-bg{
  position:absolute;
  inset:0;
  z-index:1;
}

.slide-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(
    90deg,
    rgba(9,18,43,.82) 0%,
    rgba(9,18,43,.68) 35%,
    rgba(9,18,43,.18) 70%,
    rgba(9,18,43,.05) 100%
  );
  z-index:2;
}

.slide .container{
  position:relative;
  z-index:3;
  height:100%;
  display:flex;
  align-items:center;
}

.slide-content{
  max-width:460px;
  color:#fff;
}

.slide-content h1{
  font-size:38px;
  line-height:1.05;
  letter-spacing:-2px;

  margin-bottom:14px;

  font-family:'Poppins',sans-serif;

  max-width:580px;
}

.slide-content p{
  font-size:14px;
  line-height:1.65;

  margin-bottom:14px;

  color:rgba(255,255,255,.88);

  max-width:540px;
}

.slide-benefits{
  display:flex;
  gap:12px;
  flex-wrap:wrap;

  margin-bottom:14px;

  max-width:560px;
}

.slide-benefits .benefit{

  background:rgba(255,255,255,.10);

  backdrop-filter:blur(12px);

  border:1px solid rgba(255,255,255,.12);

  padding:10px 14px;

  border-radius:12px;

  color:#fff;

  font-size:12px;

  font-weight:500;

  letter-spacing:-0.2px;
}

.slider-controls{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  z-index:5;

  pointer-events:none;
}

.slider-controls button{
  pointer-events:all;

  width:58px;
  height:58px;

  border:none;
  border-radius:50%;

  background:rgba(255,255,255,.12);

  backdrop-filter:blur(10px);

  color:#fff;

  cursor:pointer;

  margin:0 30px;

  font-size:22px;

  transition:.3s ease;
}

.slider-controls button:hover{
  background:#fff;
  color:var(--primary);
}

.slider-dots{
  position:absolute;
  bottom:40px;
  left:50%;
  transform:translateX(-50%);

  display:flex;
  gap:12px;

  z-index:5;
}

.dot{
  width:12px;
  height:12px;
  border-radius:50%;
  background:rgba(255,255,255,.35);
  cursor:pointer;
  transition:.3s ease;
}

.dot.active{
  width:42px;
  border-radius:999px;
  background:#fff;
}

@media(max-width:768px){

  .hero-slider{
    height:460px;
  }

  .slide-content h1{
    font-size:38px;
    letter-spacing:-2px;
  }

  .slide-content p{
    font-size:18px;
  }

  .slide-benefits{
    flex-direction:column;
  }

  .slider-controls{
    display:none;
  }

}
.slide .container{
  padding-left:40px;
}

.benefit-item{

  display:flex;

  align-items:center;

  gap:12px;
}

.benefit-icon{

  width:42px;
  height:42px;

  border:2px solid #4C63B6;

  border-radius:50%;

  display:flex;

  align-items:center;

  justify-content:center;

  color:#4C63B6;

  flex-shrink:0;
}
.benefit-icon svg{

  width:20px;
  height:20px;
}
.benefit-item span{

  font-size:14px;

  line-height:1.4;

  color:#253B80;

  font-weight:500;
}

.btn-whatsapp{

  display:inline-flex;

  align-items:center;

  gap:12px;
}

.btn-whatsapp svg{

  width:26px;

  height:26px;

  flex-shrink:0;
}

/* =========================
   CATEGORIAS PREMIUM
========================= */

.categories-section{

  padding:60px 0;

  background:#F7F9FC;
}

.categories-header{

  text-align:center;

  margin-bottom:38px;
}

.section-line{

  width:60px;
  height:5px;

  border-radius:999px;

  background:#8BB8FF;

  display:block;

  margin:0 auto 22px;
}

.categories-header h2{

  font-family:'Poppins',sans-serif;

  font-size:58px;

  font-weight:700;

  line-height:1.1;

  letter-spacing:-1.5px;

  color:#253b80;

  margin-bottom:12px;
}

.categories-header p{

  font-size:17px;

  line-height:1.6;

  color:#667085;
}

.categories-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 360px));
  justify-content: center;
  gap: 22px;
}


.category-card{

  background:#fff;

  border-radius:26px;

  border:1px solid #EEF2F7;

  min-height:190px;

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:18px;

  padding:22px 20px;

  overflow:hidden;

  text-decoration:none;

  transition:.4s ease;

  box-shadow:
  0 10px 40px rgba(20,30,60,.04);
}

.category-card:hover{

  transform:translateY(-8px);

  box-shadow:
  0 25px 60px rgba(20,30,60,.10);
}

.category-image{

  width:45%;

  display:flex;

  align-items:center;

  justify-content:center;
}

.category-image img{

  width:100%;

  max-width:320px;

  object-fit:contain;

  transition:.45s ease;
}

.category-card:hover img{

  transform:scale(1.05);
}

.category-content{

  width:55%;
  min-width:0;
}

.category-content h3{

  font-size:clamp(21px, 1.75vw, 26px);

  line-height:1.08;

  letter-spacing:0;

  color:#253B80;

  margin-bottom:22px;
  overflow-wrap:break-word;
}

.card-line{

  width:55px;
  height:5px;

  border-radius:999px;

  background:#BFD7FF;

  display:block;

  margin-bottom:28px;
}

.category-button{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  height:52px;

  padding:0 26px;

  border-radius:999px;

  border:2px solid #AFC4EE;

  color:#253B80;

  font-size:15px;

  font-weight:600;

  transition:.35s ease;
}

.category-card:hover .category-button{

  background:#253B80;

  border-color:#253B80;

  color:#fff;
}

/* =========================
   KITS SUPRA
========================= */

.kits-section{

  padding:55px 0 45px;

  background:#F7F9FC;

  overflow:visible;
}

/* HEADER */

.kits-header{

  text-align:center;

  margin-bottom:30px;
}

.section-line{

  width:60px;
  height:6px;

  background:#8DB9FF;

  border-radius:999px;

  margin:0 auto 20px;
}

.kits-header h2{

  font-family:'Poppins',sans-serif;

  font-size:38px;

  font-weight:800;

  line-height:1.1;

  letter-spacing:-1.5px;

  color:#253B80;

  margin-bottom:12px;
}

.kits-header p{

  font-size:16px;

  line-height:1.6;

  color:#667085;
}

/* SWIPER */

.kits-swiper{

  overflow:visible;
}

.kits-swiper .swiper-slide {
  width: calc((100% - 48px) / 3);
  box-sizing: border-box;
}



/* CARD */

/* CARD */

.kit-card{

  display:block;

  background:#fff;

  border-radius:34px;

  overflow:hidden;

  text-decoration:none;

  border:1px solid #EEF2F7;

  transition:.4s ease;

  box-shadow:
  0 12px 40px rgba(20,30,60,.05);
}

.kit-card:hover{

  transform:translateY(-6px);

  box-shadow:
  0 20px 50px rgba(20,30,60,.10);
}

/* IMAGE */

.kit-image{

  position:relative;

  height:190px;

  overflow:hidden;

  background:#F5F8FD;
}

.kit-image img{

  width:100%;
  height:100%;

  object-fit:cover;

  transition:1s ease;
}

.kit-card:hover .kit-image img{

  transform:scale(1.04);
}

/* BADGE */

.kit-badge{

  position:absolute;

  top:24px;
  left:24px;

  background:rgba(255,255,255,.92);

  backdrop-filter:blur(12px);

  padding:12px 18px;

  border-radius:999px;

  font-size:14px;

  font-weight:600;

  color:#3D73E8;

  box-shadow:
  0 10px 30px rgba(30,40,90,.08);
}

/* CONTENT */

.kit-content{

padding:24px 26px 26px;
}

.kit-content h3{

  font-size:25px;

  line-height:1.15;

  letter-spacing:-1px;

  color:#253B80;

  margin-bottom:12px;
}

.kit-content p{

  font-size:15px;

  line-height:1.5;

  color:#667085;

  margin-bottom:20px;
}

/* BUTTON */

.kit-button{

  display:inline-flex;

  align-items:center;
  justify-content:center;

  height:44px;

  padding:0 24px;

  border-radius:999px;

  border:2px solid #AFC4EE;

  color:#3D73E8;

  font-size:15px;

  font-weight:600;

  transition:.35s ease;
}

.kit-card:hover .kit-button{

  background:#3D73E8;

  border-color:#3D73E8;

  color:#fff;
}

/* ARROWS */

/* O wrapper define o limite das setas */
.kits-slider-wrapper {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 80px;
}


.kits-prev,
.kits-next {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 10;

  width: 60px;
  height: 60px;
  background: #fff;
  border: 1px solid #EEF2F7;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto !important;
  margin: 0;
}

.kits-prev {
  left: 0;
}

.kits-next {
  right: 0;
}



.kits-prev::after,
.kits-next::after{

  content:'';

  position:absolute;

  top:50%;
  left:50%;

  width:12px;
  height:12px;

  border-top:3px solid #3D73E8;
  border-right:3px solid #3D73E8;
}

.kits-prev::after{

  transform:
  translate(-35%,-50%)
  rotate(-135deg);
}

.kits-next::after{

  transform:
  translate(-65%,-50%)
  rotate(45deg);
}

/* DOTS */

.kits-swiper .swiper-pagination{

  position:relative;

  margin-top:24px;
}

.kits-swiper .swiper-pagination-bullet{

  width:10px;
  height:10px;

  background:#D3DAE6;

  opacity:1;
}

.kits-swiper .swiper-pagination-bullet-active{

  width:28px;

  border-radius:999px;

  background:#253B80;
}

.cta-whatsapp-section {
  padding: 70px 0;
  background: #f4f6f9;
}

.google-reviews-section {
  padding: 70px 0 0;
  background: #f4f6f9;
}

.cta-whatsapp-box {
  min-height: 220px;
  padding: 36px 60px;
  border-radius: 28px;
  background: linear-gradient(135deg, #062c86 0%, #07358f 45%, #043084 100%);
  box-shadow: 0 24px 60px rgba(20, 30, 60, 0.14);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.cta-whatsapp-content {
  max-width: 680px;
}

.cta-whatsapp-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  line-height: 1.18;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}

.cta-whatsapp-content p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  max-width: 650px;
}

.cta-whatsapp-button {
  min-width: 390px;
  height: 88px;
  padding: 0 42px;
  border-radius: 14px;
  background: #19d45b;
  color: #fff;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;

  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;

  box-shadow: 0 18px 34px rgba(25, 212, 91, 0.24);
  transition: 0.3s ease;
}

.cta-whatsapp-button:hover {
  background: #12bf4e;
  transform: translateY(-3px);
}

.cta-whatsapp-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
}

.cta-whatsapp-icon svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}
@media (max-width: 991px) {
  .cta-whatsapp-box {
    padding: 50px 34px;
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 34px;
  }

  .cta-whatsapp-content h2 {
    font-size: 34px;
  }

  .cta-whatsapp-content p {
    font-size: 18px;
  }

  .cta-whatsapp-button {
    width: 100%;
    min-width: 0;
    height: 72px;
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .cta-whatsapp-section {
    padding: 35px 0;
  }

  .cta-whatsapp-box {
    padding: 38px 24px;
    border-radius: 22px;
  }

  .cta-whatsapp-content h2 {
    font-size: 28px;
  }

  .cta-whatsapp-button {
    height: 66px;
    font-size: 18px;
    gap: 14px;
  }

  .cta-whatsapp-icon {
    width: 32px;
    height: 32px;
  }
}

.specialist-left {
  display: flex;
  align-items: center;
  gap: 26px;
  min-width: 0;
}
.specialist-text {
  max-width: 760px;
}

.specialist-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.7);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 0 0 4px rgba(141, 185, 255, 0.2);
}

.specialist-icon svg {
  width: 38px;
  height: 38px;
  fill: #fff;
}

.specialist-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 25px;
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}


.specialist-text p {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.82);
}

.specialist-button {
  min-width: 280px;
  height: 56px;
  padding: 0 28px;
  border-radius: 8px;

  background: #fff;
  color: #07348c;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;

  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
  transition: 0.3s ease;
}

.specialist-button:hover {
  transform: translateY(-2px);
  background: #f3f7ff;
}

.specialist-whatsapp {
  width: 24px;
  height: 24px;
  display: inline-flex;
}

.specialist-whatsapp svg {
  width: 100%;
  height: 100%;
  fill: #07348c;
}
@media (max-width: 900px) {


  .specialist-left {
    gap: 18px;
  }

  .specialist-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
  }

  .specialist-icon svg {
    width: 30px;
    height: 30px;
  }

  .specialist-text h2 {
    font-size: 22px;
  }

  .specialist-button {
    width: 100%;
    min-width: 0;
  }
}
.specialist-strip {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 0;
  background: linear-gradient(135deg, #062d84 0%, #073b99 50%, #07348c 100%);
}

.specialist-strip .container {
  width: 100%;
  max-width: none;
  padding: 0;
}

.specialist-strip-box {
  min-height: 120px;
  padding: 22px 8%;
  border-radius: 0;
  background: transparent;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}


@media (max-width: 576px) {


  .specialist-left {
    align-items: flex-start;
  }

  .specialist-text h2 {
    font-size: 19px;
  }

  .specialist-text p {
    font-size: 12px;
  }

  .specialist-button {
    height: 52px;
    font-size: 15px;
  }
}

.ic-location-section {
  background: #f4f7fb;
  padding: 86px 20px;
  font-family: 'Poppins', Arial, sans-serif;
}

.ic-location-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 56px;
  align-items: center;
}

.ic-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #253B80;
  border: 1px solid rgba(37, 59, 128, 0.14);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(18, 61, 141, 0.08);
}

.ic-location-badge svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ic-location-content h2 {
  color: #253B80;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  font-weight: 800;
  margin: 0 0 20px;
}

.ic-location-text {
  color: #526070;
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 620px;
}

.ic-info-card {
  background: #ffffff;
  border: 1px solid #e8eef7;
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 18px 45px rgba(37, 59, 128, 0.10);
  margin-bottom: 22px;
}

.ic-info-item {
  display: flex;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid #e8edf5;
}

.ic-info-item:last-child {
  border-bottom: none;
}

.ic-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #eef3fb;
  color: #253B80;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.ic-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ic-info-item strong {
  color: #253B80;
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
}

.ic-info-item p {
  margin: 0;
  color: #35475e;
  font-size: 15px;
  line-height: 1.45;
}

.ic-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 22px;
}

.ic-btn {
  min-height: 62px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.25s ease;
}

.ic-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.ic-btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.25);
}

.ic-btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.34);
}

.ic-btn-outline {
  background: #ffffff;
  color: #253B80;
  border: 2px solid #253B80;
}

.ic-btn-outline:hover {
  background: #253B80;
  color: #ffffff;
}

.ic-social-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e8eef7;
  box-shadow: 0 14px 35px rgba(37, 59, 128, 0.08);
}

.ic-social-proof div {
  padding: 22px;
}

.ic-social-proof div:first-child {
  border-right: 1px solid #e8edf5;
}

.ic-social-proof strong {
  display: block;
  color: #253B80;
  font-size: 20px;
  margin-bottom: 6px;
}

.ic-social-proof span {
  color: #5f6f83;
  font-size: 14px;
}

.ic-map-card {
  height: 540px;
  background: #ffffff;
  border-radius: 28px;
  padding: 14px;
  box-shadow: 0 24px 60px rgba(37, 59, 128, 0.14);
  overflow: hidden;
}

.ic-map-card iframe {
  border-radius: 22px;
}

@media (max-width: 900px) {
  .ic-location-section {
    padding: 58px 18px;
  }

  .ic-location-container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ic-buttons {
    grid-template-columns: 1fr;
  }

  .ic-social-proof {
    grid-template-columns: 1fr;
  }

  .ic-social-proof div:first-child {
    border-right: none;
    border-bottom: 1px solid #e8edf5;
  }

  .ic-map-card {
    height: 400px;
  }
}

@media (max-width: 520px) {
  .ic-location-section {
    padding: 46px 14px;
  }

  .ic-location-content h2 {
    font-size: 31px;
  }

  .ic-location-text {
    font-size: 15px;
  }

  .ic-info-item {
    align-items: flex-start;
    padding: 16px 0;
  }

  .ic-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 14px;
  }

  .ic-btn {
    min-height: 56px;
    font-size: 15px;
  }

  .ic-map-card {
    height: 320px;
    border-radius: 22px;
  }
}

/* =========================
   AJUSTES RESPONSIVOS GERAIS
========================= */

@media (max-width: 768px) {
  .container {
    max-width: calc(100% - 32px);
  }

  .topbar {
    height: auto;
    padding: 8px 0;
  }

  .topbar-content {
    justify-content: center;
  }

  .topbar-right {
    display: none;
  }

  .topbar-left .topbar-item {
    font-size: 12px;
    text-align: center;
  }

  .header-content {
    min-height: 74px;
    padding: 12px 0;
  }

  .logo img {
    width: 155px;
  }

  .desktop-btn {
    display: none !important;
  }

  .mobile-menu-btn {
    display: block;
    font-size: 30px;
    color: var(--text);
  }

  .hero-slider {
    height: 520px;
  }

  .slide .container {
    padding-left: 0;
  }

  .slide-content {
    max-width: 100%;
  }

  .slide-content h1 {
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .slide-content p {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-buttons {
    width: 100%;
    gap: 14px;
  }

  .hero-buttons .btn {
    width: 100%;
    min-height: 56px;
    padding: 16px 20px;
  }

  .slider-dots {
    bottom: 30px;
  }

  .cpap-section {
    padding: 45px 0;
  }

  .cpap-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .cpap-image {
    padding: 22px;
    border-radius: 24px;
  }

  .cpap-content h2,
  .categories-header h2,
  .kits-header h2 {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .cpap-content p {
    line-height: 1.65;
  }

  .categories-section {
    padding: 45px 0;
  }

  .categories-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .category-card {
    min-height: auto;
    padding: 20px;
    gap: 18px;
  }

  .category-image img {
    max-width: 170px;
  }

  .category-content h3 {
    font-size: 22px;
    letter-spacing: 0;
  }

  .category-button {
    height: 46px;
    padding: 0 22px;
    font-size: 14px;
  }

  .kits-slider-wrapper {
    padding: 0;
  }

  .kits-swiper {
    overflow: hidden;
  }

  .kits-swiper .swiper-slide {
    width: 100% !important;
  }

  .kits-prev,
  .kits-next {
    display: none;
  }

  .cta-whatsapp-box {
    padding: 34px 24px;
  }

  .specialist-strip-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 24px;
  }

  .specialist-left {
    align-items: flex-start;
  }

  .footer {
    padding: 55px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 480px) {
  .header-content {
    gap: 16px;
  }

  .mobile-menu-btn {
    display: block !important;
    margin-left: auto;
    font-size: 28px;
    line-height: 1;
  }

  .slide .container {
    max-width: calc(100% - 32px);
    padding-left: 0 !important;
    padding-right: 0;
  }

  .slide-content {
    width: 100%;
    max-width: 100%;
  }

  .slide-content h1 {
    font-size: 30px;
    line-height: 1.12;
    letter-spacing: -0.8px;
    max-width: 330px;
  }

  .slide-content p {
    font-size: 15px;
    line-height: 1.55;
    max-width: 330px;
  }

  .hero-buttons {
    width: 100%;
    max-width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-slider {
    height: 520px;
  }

  .cpap-section {
    padding: 35px 0;
  }

  .cpap-grid {
    gap: 26px;
  }
}
.category-page {
  background: #f7f9fc;
  padding: 40px 20px 80px;
  font-family: 'Poppins', sans-serif;
}

.category-hero {
  max-width: 1280px;
  margin: 0 auto 16px;
  min-height: 180px;
  background: linear-gradient(135deg, #ffffff 0%, #eef3fa 100%);
  border: 1px solid #e4ebf5;
  border-radius: 20px;
  padding: 22px 42px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 24px;
}


.breadcrumb {
  font-size: 13px;
  color: #65758b;
  margin-bottom: 14px;
}


.category-hero h1 {
  font-size: 42px;
  line-height: 1.05;
  color: #253B80;
  margin-bottom: 12px;
}


.category-hero p {
  font-size: 16px;
  line-height: 1.5;
  color: #526070;
  max-width: 560px;
}


.btn-whatsapp,
.product-btn,
.btn-help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 14px;
  transition: .25s ease;
}

.btn-whatsapp {
  height: 52px;
  padding: 0 clamp(18px, 2vw, 28px);
  flex-shrink: 0;
  white-space: nowrap;
}

.btn-whatsapp:hover,
.product-btn:hover,
.btn-help:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.25);
}

.hero-benefits {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-benefits span {
  font-size: 13px;
  color: #253B80;
  font-weight: 500;
}

.category-hero-image img {
  width: 100%;
  max-height: 170px;
  object-fit: contain;
}


.category-toolbar {
  max-width: 1280px;
  margin: 0 auto 16px;
  background: #ffffff;
  border: 1px solid #e8eef7;
  border-radius: 18px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-toolbar button {
  border: 1px solid #e8eef7;
  background: #ffffff;
  color: #253B80;
  border-radius: 12px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
}

.category-toolbar span {
  font-size: 14px;
  color: #65758b;
  margin-right: 8px;
}

.products-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: #ffffff;
  border: 1px solid #e8eef7;
  border-radius: 24px;
  padding: 22px;
  transition: .25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(37, 59, 128, 0.10);
}

.product-image {
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.product-image img {
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
  transition: .3s ease;
}

.product-card:hover img {
  transform: scale(1.04);
}

.product-card h3 {
  font-size: 20px;
  line-height: 1.2;
  color: #253B80;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #526070;
  margin-bottom: 18px;
}

.product-btn {
  width: 100%;
  height: 44px;
  font-size: 14px;
}

.category-help {
  max-width: 1280px;
  margin: 32px auto 0;
  background: #eef6ff;
  border: 1px solid #d8e8fb;
  border-radius: 24px;
  padding: 28px 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-help h2 {
  color: #253B80;
  font-size: 24px;
  margin-bottom: 6px;
}

.category-help p {
  color: #526070;
  font-size: 15px;
}

.btn-help {
  height: 50px;
  padding: 0 28px;
}

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-hero {
    grid-template-columns: 1fr;
  }

  .category-hero-image img {
    max-height: 240px;
  }
}

@media (max-width: 768px) {
  .category-page {
    padding: 24px 16px 60px;
  }

  .category-hero {
    padding: 22px 20px;
    border-radius: 20px;
    min-height: auto;
  }

  .category-hero h1 {
    font-size: 34px;
  }

  .category-toolbar {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .category-help {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .btn-help {
    width: 100%;
  }
}
.product-actions{
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.btn-secondary{
  flex: 1;

  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  border: 1px solid #DCE6F5;

  background: #FFFFFF;

  color: #253B80;

  text-decoration: none;

  font-size: 14px;
  font-weight: 600;

  transition: .25s ease;
}

.btn-secondary:hover{
  background: #F7F9FC;

  transform: translateY(-2px);
}

.product-btn{
  flex: 1;
}

.product-page {
  background: #f7f9fc;
  padding: 36px 20px 80px;
  font-family: 'Poppins', sans-serif;
}

.product-breadcrumb {
  max-width: 1280px;
  margin: 0 auto 28px;
  font-size: 13px;
  color: #65758b;
}

.product-hero {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: start;
}

.product-gallery {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
}

.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.thumb {
  width: 82px;
  height: 82px;
  border-radius: 16px;
  border: 1px solid #dce6f5;
  background: #ffffff;
  cursor: pointer;
  padding: 8px;
}

.thumb.active {
  border: 2px solid #2f80ed;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-product-image {
  min-height: 520px;
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid #e8eef7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main-product-image img {
  width: 88%;
  max-height: 430px;
  object-fit: contain;
}

.main-product-image span {
  margin-top: 18px;
  font-size: 12px;
  color: #91a0b8;
}

.product-info {
  background: transparent;
}

.product-category {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef6ff;
  color: #253B80;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.product-info h1 {
  font-size: 48px;
  line-height: 1.08;
  color: #253B80;
  margin-bottom: 16px;
  letter-spacing: -1.4px;
}

.product-intro {
  color: #526070;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-description-top p{
  margin:0 0 12px;
}

.product-description-top p:last-child{
  margin-bottom:0;
}

.product-description-top h2,
.product-description-top h3,
.product-description-top h4{
  color:#253B80;
  line-height:1.2;
  margin:18px 0 10px;
}

.product-description-top ul,
.product-description-top ol{
  display:grid;
  gap:8px;
  list-style:none;
  margin:14px 0 0;
  padding:0;
}

.product-description-top li{
  position:relative;
  padding-left:24px;
}

.product-description-top li::before{
  content:"\2713";
  position:absolute;
  left:0;
  top:0;
  color:#25D366;
  font-weight:700;
}

.product-features {
  display: grid;
  gap: 18px;
  margin-bottom: 22px;
}

.product-features div {
  padding-left: 18px;
  border-left: 3px solid #d8e8fb;
}

.product-features strong {
  display: block;
  color: #253B80;
  font-size: 15px;
  margin-bottom: 4px;
}

.product-features span {
  color: #65758b;
  font-size: 14px;
}

.delivery-box {
  background: #eef6ff;
  border: 1px solid #cfe4ff;
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 18px;
}

.delivery-box strong {
  display: block;
  color: #253B80;
  font-size: 15px;
  margin-bottom: 4px;
}

.delivery-box span {
  color: #65758b;
  font-size: 14px;
}

.product-whatsapp {
  height: 58px;
  width: 100%;
  border-radius: 16px;
  background: #25D366;
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: .25s ease;
}

.product-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(37, 211, 102, .28);
}

.secure-note {
  text-align: center;
  color: #65758b;
  font-size: 13px;
  margin-top: 14px;
}


.product-details{
    max-width: 1280px;

    margin: 0 auto 36px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;

    align-items: start;
}

.detail-card {
  background: #ffffff;
  border: 1px solid #e8eef7;
  border-radius: 24px;
  padding: 34px;
}

.detail-card h2,
.benefits-section h2,
.related-products h2,
.product-final-cta h2 {
  color: #253B80;
}

.detail-card p {
  color: #526070;
  line-height: 1.7;
  margin-bottom: 18px;
}

.detail-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-card li {
  color: #526070;
  margin-bottom: 12px;
}

.detail-card li::before {
  content: "\2713";
  color: #25D366;
  font-weight: 700;
  margin-right: 10px;
}

.spec-list {
  display: grid;
  gap: 14px;
}

.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #eef3fa;
  padding-bottom: 12px;
}

.spec-list span {
  color: #65758b;
  font-size: 14px;
}

.spec-list strong {
  color: #253B80;
  font-size: 14px;
  text-align: right;
}

.benefits-section {
  max-width: 1280px;
  margin: 0 auto 46px;
  background: #ffffff;
  border: 1px solid #e8eef7;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  overflow: hidden;
}

.benefits-content {
  padding: 36px;
}

.benefits-content p {
  color: #526070;
  margin-bottom: 28px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.benefit-grid strong {
  display: block;
  color: #253B80;
  margin-bottom: 8px;
}

.benefit-grid span {
  color: #65758b;
  font-size: 14px;
  line-height: 1.5;
}

.benefits-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-products {
  max-width: 1280px;
  margin: 0 auto 44px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.section-header a {
  color: #2f80ed;
  text-decoration: none;
  font-weight: 600;
}

.related-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.related-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.related-controls button {
  width: 40px;
  height: 40px;
  border: 1px solid #d8e8fb;
  border-radius: 50%;
  background: #ffffff;
  color: #253B80;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: .25s ease;
}

.related-controls button:hover {
  background: #253B80;
  color: #ffffff;
}

.related-grid {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}

.related-grid::-webkit-scrollbar {
  display: none;
}

.related-card {
  flex: 0 0 calc((100% - 66px) / 4);
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid #e8eef7;
  border-radius: 22px;
  padding: 20px;
}


.related-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 16px;
}

.related-card h3 {
  color: #253B80;
  font-size: 17px;
  margin-bottom: 8px;
}

.related-card p {
  color: #65758b;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 14px;
}

.related-card a {
  height: 38px;
  border-radius: 12px;
  background: #253B80;
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .25s ease;
}

.related-card a:hover {
  background: #3D73E8;
}

@media (max-width: 1024px) {
  .related-card {
    flex-basis: calc((100% - 22px) / 2);
  }
}

@media (max-width: 768px) {
  .related-header {
    align-items: flex-start;
    gap: 16px;
  }

  .related-header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .related-card {
    flex-basis: 82%;
  }
}


.product-final-cta {
  max-width: 1280px;
  margin: 0 auto;
  background: linear-gradient(135deg, #2f80ed 0%, #5ba4ff 100%);
  border-radius: 26px;
  padding: 36px 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-final-cta h2 {
  color: #ffffff;
  margin-bottom: 8px;
}

.product-final-cta p {
  color: rgba(255,255,255,.86);
}

.product-final-cta a {
  background: #ffffff;
  color: #25D366;
  height: 50px;
  padding: 0 28px;
  border-radius: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .product-hero,
  .benefits-section {
    grid-template-columns: 1fr;
  }

  .product-details {
    grid-template-columns: 1fr 1fr;
  }

  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .product-details {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}


@media (max-width: 768px) {
  .product-hero {
    gap: 28px;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-thumbs {
    flex-direction: row;
    order: 2;
  }

  .main-product-image {
    min-height: 360px;
  }

  .product-info h1 {
    font-size: 34px;
  }



  .product-details {
    gap: 18px;
  }

  .product-final-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .product-final-cta a {
    width: 100%;
    justify-content: center;
  }
}

.trust-bar{
    max-width: 1280px;

    margin: 44px auto 36px;

    background: #FFFFFF;

    border: 1px solid #EEF3FA;

    border-radius: 24px;

    padding: 26px 30px;

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 28px;
}

.trust-item{
    display: flex;

    align-items: center;
    gap: 16px;
}

.trust-icon{
    width: 46px;
    height: 46px;

    min-width: 46px;

    border-radius: 50%;

    background: #EEF6FF;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #2F80ED;
}

.trust-icon svg{
    display: block;
    width: 22px;
    height: 22px;
}

.trust-item strong{
    display: block;

    color: #253B80;

    font-size: 15px;

    font-weight: 600;

    margin-bottom: 4px;
}

.trust-item span{
    color: #65758B;

    font-size: 14px;

    line-height: 1.5;
}

@media (max-width: 991px){
    .trust-bar{
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 640px){
    .trust-bar{
        grid-template-columns: 1fr;
        padding: 22px;
        gap: 22px;
    }
}

@media (max-width: 1024px){
  .category-page,
  .product-page{
    padding-left:16px;
    padding-right:16px;
  }

  .category-hero,
  .product-hero,
  .trust-bar,
  .product-details,
  .related-products,
  .product-final-cta{
    max-width:100%;
  }

  .product-hero{
    gap:34px;
  }

  .product-gallery{
    grid-template-columns:74px 1fr;
    gap:16px;
  }

  .thumb{
    width:68px;
    height:68px;
    border-radius:14px;
  }

  .main-product-image{
    min-height:430px;
  }

  .main-product-image img{
    max-height:340px;
  }
}

@media (max-width: 768px){
  .category-page{
    padding:18px 14px 52px;
  }

  .category-hero{
    padding:22px 18px;
    gap:10px;
    border-radius:20px;
  }

  .category-hero h1{
    font-size:30px;
    letter-spacing:0;
  }

  .category-hero p{
    font-size:15px;
  }

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

  .products-grid{
    gap:16px;
  }

  .product-card{
    padding:18px;
    border-radius:18px;
  }

  .product-image{
    height:170px;
    margin-bottom:14px;
  }

  .product-image img{
    max-height:160px;
  }

  .product-actions{
    gap:10px;
  }

  .product-page{
    padding:18px 14px 54px;
  }

  .product-breadcrumb{
    margin-bottom:18px;
    line-height:1.6;
  }

  .product-hero{
    gap:22px;
  }

  .product-gallery{
    display:flex;
    flex-direction:column;
  }

  .main-product-image{
    order:1;
    min-height:300px;
    border-radius:20px;
    padding:18px;
  }

  .main-product-image img{
    width:100%;
    max-height:240px;
  }

  .main-product-image span{
    margin-top:12px;
    text-align:center;
  }

  .gallery-thumbs{
    order:2;
    flex-direction:row;
    gap:10px;
    overflow-x:auto;
    padding-bottom:4px;
  }

  .gallery-thumbs::-webkit-scrollbar{
    display:none;
  }

  .thumb{
    flex:0 0 62px;
    width:62px;
    height:62px;
    border-radius:12px;
  }

  .product-category{
    margin-bottom:12px;
  }

  .product-info h1{
    font-size:30px;
    letter-spacing:0;
  }

  .product-intro{
    font-size:15px;
    line-height:1.6;
    margin-bottom:18px;
  }

  .delivery-box{
    padding:16px;
    border-radius:16px;
  }

  .product-whatsapp{
    height:54px;
  }

  .trust-bar{
    margin:28px auto 28px;
    border-radius:18px;
  }

  .trust-item{
    align-items:flex-start;
  }

  .detail-card{
    padding:24px 20px;
    border-radius:18px;
  }

  .spec-list div{
    flex-direction:column;
    gap:6px;
  }

  .spec-list strong{
    text-align:left;
  }

  .section-header{
    flex-direction:column;
    align-items:flex-start;
  }

  .related-card{
    flex-basis:86%;
    padding:18px;
  }

  .related-card img{
    height:150px;
  }

  .product-final-cta{
    padding:28px 22px;
    border-radius:20px;
  }
}

@media (max-width: 420px){
  .product-actions{
    flex-direction:column;
  }

  .btn-secondary,
  .product-btn{
    width:100%;
  }

  .category-hero h1,
  .product-info h1{
    font-size:27px;
  }

  .trust-icon{
    width:42px;
    height:42px;
    min-width:42px;
  }
}

.related-controls button {
  width: 40px;
  height: 40px;
  border: 1px solid #d8e8fb;
  border-radius: 50%;
  background: #ffffff;
  color: #253B80;
  font-size: 26px;
  cursor: pointer;
  transition: .25s ease;

  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0;
}
