/* ==========================================
   CLEANHOUSE – CSS (fiel ao cleanhousecwb.com.br)
   Paleta: #008592 · #03B162 · #203B48 · #142A35
   ========================================== */

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

:root {
  --teal:       #008592;
  --teal-dk:    #008394;
  --green:      #03B162;
  --green-h:    #189118;
  --green-dk:   #0D6F0F;
  --navy:       #203B48;
  --navy-dk:    #142A35;
  --navy-deep:  #0F222B;
  --white:      #FFFFFF;
  --gray-50:    #F5F5F5;
  --gray-100:   #E5E7EB;
  --gray-400:   #AFB6BA;
  --gray-600:   #707D84;
  --text:       #707D84;

  --font-display: 'Teko', sans-serif;
  --font-body:    'Open Sans', sans-serif;
  --font-nav:     'Montserrat', sans-serif;

  --shadow:     0 4px 24px rgba(32,59,72,.09);
  --shadow-lg:  0 12px 40px rgba(32,59,72,.14);
  --radius:     3px;
  --transition: .32s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.7; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ---- SCROLL PROGRESS ---- */
.scroll-progress {
  position: fixed; top: 0; left: 0; width: 0%; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--green));
  z-index: 1002; transition: width 0.1s ease-out;
}

/* ---- FOCUS STATES FOR ACCESSIBILITY ---- */
:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }

/* ---- SECTION HEADERS ---- */
.section__header { text-align: center; margin-bottom: 48px; }
.section__header--left { text-align: left; }
.section__label {
  display: block; font-family: var(--font-body); font-size: 1.3125rem; font-weight: 600;
  color: var(--green); line-height: 1.6; margin-bottom: 10px;
}
.section__title { margin-top: 0; }
.section__label--left { text-align: left; }
.section__title {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600; text-transform: uppercase; letter-spacing: 2px;
  color: var(--navy); line-height: 1.15; text-align: center; margin: 0 auto;
}
.section__title--green { color: var(--green); text-transform: none; letter-spacing: 0; font-size: clamp(2rem, 3.5vw, 2.8rem); text-align: center; }
.section__title--contact { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem); text-transform: none; letter-spacing: 0; color: var(--navy); text-align: left; }
.section__subtitle { font-size: 1rem; color: var(--gray-600); max-width: 560px; margin: 12px auto 0; text-align: center; }
.section__subtitle--left { margin-left: 0; text-align: left; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 33px 10px; border-radius: var(--radius);
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 500;
  text-transform: uppercase; line-height: 1.5; cursor: pointer;
  border: 1px solid transparent; transition: var(--transition); white-space: nowrap; text-align: center;
}
.btn--primary {
  background: var(--teal-dk); color: var(--white);
  border-color: var(--green);
}
.btn--primary:hover { background: var(--teal); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,131,148,.35); }

.btn--outline {
  background: transparent; color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

/* ==========================================
   HEADER
   ========================================== */
.header {
  position: sticky; top: 0; z-index: 1001;
  background: var(--white); padding: 5px 0;
  box-shadow: 0 1px 8px rgba(32,59,72,.06);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 2px 16px rgba(32,59,72,.12); }
.nav {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 16px;
}
.nav__logo { justify-self: start; }
.nav__logo img { width: auto; height: 80px; object-fit: contain; }

.nav__menu { display: flex; align-items: center; justify-content: center; gap: 0; justify-self: center; }
.nav__link {
  padding: 10px 15px; font-family: var(--font-nav); font-size: 1.05rem; font-weight: 600;
  color: var(--teal); transition: var(--transition); position: relative;
}
.nav__link::after {
  content: ''; position: absolute; left: 15px; right: 15px; bottom: 6px;
  height: 2px; background: var(--green-h); transform: scaleX(0);
  transform-origin: center; transition: transform .3s ease;
}
.nav__link:hover, .nav__link.active { color: var(--green-h); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }

.nav__social { display: flex; align-items: center; gap: 5px; justify-self: end; }
.nav__social a {
  width: 40px; height: 40px; border-radius: var(--radius);
  background: var(--teal); display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1rem; transition: transform .3s ease, background .3s ease;
}
.nav__social a:hover { background: var(--green-h); transform: scale(1.12); }

.nav__menu-social { display: none; list-style: none; }
.nav__social--menu { justify-content: center; margin-top: 24px; gap: 12px; }
.nav__social--menu a { width: 48px; height: 48px; font-size: 1.15rem; }

.nav__menu-logo { display: none; }
.nav__menu-close { display: none; }
.nav__close-btn {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 4px;
  background: #E53935; color: var(--white);
  border: none; cursor: pointer; font-size: 1.2rem;
  transition: var(--transition);
}
.nav__close-btn:hover { background: #C62828; transform: scale(1.05); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px; z-index: 1010; grid-column: 3; justify-self: end;
}
.nav__toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: var(--transition);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================
   HERO
   ========================================== */
.hero {
  position: relative; min-height: 560px; height: 88vh; max-height: 780px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.hero__slideshow { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero__slide--active { opacity: 1; z-index: 1; }
.hero__slide-img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1); transition: transform 5s ease-out;
}
.hero__slide--active .hero__slide-img { animation: kenBurns 5s ease-out forwards; }

@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}

.hero__overlay {
  position: absolute; inset: 0; z-index: 2;
  background: rgba(32,59,72,.7);
}
.hero__content {
  position: relative; z-index: 3; width: 100%;
  max-width: 960px; margin: 0 auto; padding: 48px 0; text-align: center;
}

.hero__title {
  font-family: var(--font-display); font-size: clamp(2.8rem, 6.5vw, 5.6rem);
  font-weight: 600; color: var(--white); line-height: .94; margin-bottom: 12px;
}
.hero__subtitle {
  font-family: var(--font-body); font-size: 1.125rem; font-weight: 400;
  color: rgba(255,255,255,.92); margin: 0 auto 30px; max-width: 720px; line-height: 1.75;
}
.hero__buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; align-items: center; }

/* ==========================================
   SERVICES
   ========================================== */
.services { background: var(--white); padding: 100px 0 20px; }
.services__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  align-items: stretch;
}

.service-card {
  display: flex; flex-direction: column; height: 100%;
  padding: 24px 0 28px; text-align: center;
  background: var(--white); border: none;
  box-shadow: 5px 5px 5px rgba(0,0,0,.1);
  margin: 0; transition: box-shadow .3s ease, transform .3s ease;
}
.service-card:hover { box-shadow: 0 2px 25px rgba(0,0,0,.1); transform: translateY(-2px); }

.service-card__img-wrap {
  margin-bottom: 20px; overflow: hidden; padding: 8px 8px 0;
  display: flex; align-items: center; justify-content: center; min-height: 200px;
}
.service-card__img-wrap img {
  width: 100%; max-width: 370px; height: auto; object-fit: contain;
  margin: 0 auto; transition: transform .5s ease;
}
.service-card:hover .service-card__img-wrap img { transform: scale(1.04); }

.service-card h3 {
  font-family: var(--font-display); font-size: 1.125rem; font-weight: 700;
  text-transform: uppercase; color: var(--navy); line-height: 1.5;
  margin: 0 0 16px; padding: 0 12px; text-align: center;
}
.service-card p {
  flex: 1; font-size: .875rem; color: var(--gray-600); line-height: 1.65;
  padding: 0 26px; text-align: center; margin-top: 8px;
}
@media (min-width: 992px) {
  .service-card p { padding: 5px 86px 0 26px; }
}

/* ==========================================
   BANNER INTERMEDIÁRIO
   ========================================== */
.banner-mid { width: 100%; overflow: hidden; line-height: 0; }
.banner-mid img { width: 100%; height: auto; object-fit: cover; }

/* ==========================================
   ABOUT
   ========================================== */
.about { background: var(--white); padding: 160px 0 80px; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.about__image-col {
  position: relative; min-height: 460px;
  display: flex; align-items: flex-end; justify-content: flex-start;
}
.about__img--main {
  width: calc(100% - 80px); max-width: 100%; margin-right: 80px;
  border-radius: 0; box-shadow: none;
}
.about__img--circle {
  position: absolute; top: -56px; right: 0; left: auto;
  width: min(270px, 48%); aspect-ratio: 1;
  border-radius: 50%; object-fit: cover; border: none;
  box-shadow: none; z-index: 2;
}
.about__badge {
  position: absolute; bottom: 10px; right: 0; z-index: 3;
  background: var(--green); color: var(--white); text-align: center;
  width: 170px; padding: 45px 0; line-height: 1.05; border-radius: 0;
}
.about__badge-years {
  display: block; font-family: var(--font-display); font-size: 2.8rem; font-weight: 700;
}
.about__counter { font-family: inherit; font-size: inherit; font-weight: inherit; }
.about__counter-label {
  display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
}

.about__title {
  font-family: var(--font-display); font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 600; color: var(--navy); line-height: 1.2; margin-bottom: 8px; text-align: left;
}
.about__since {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  color: var(--navy); margin-bottom: 16px; text-align: left;
}
.about__subtitle {
  font-family: var(--font-body); font-size: .95rem; font-weight: 600;
  color: var(--navy); margin-bottom: 12px; text-align: left;
}
.about__text { font-size: .95rem; color: var(--gray-600); margin-bottom: 14px; line-height: 1.8; text-align: left; }
.about__text--highlight { font-weight: 600; color: var(--navy); }

.about__list { margin-top: 20px; display: flex; flex-direction: column; gap: 4px; }
.about__list li {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 500;
  color: var(--navy); line-height: 2.2; text-align: left;
}
.about__list li i { color: var(--green); font-size: .9rem; flex-shrink: 0; }

/* ==========================================
   DELIVERY
   ========================================== */
.delivery { position: relative; overflow: hidden; padding: 60px 0; margin-top: -17px; }
.delivery__bg { position: absolute; inset: -40px 0; overflow: hidden; }
.delivery__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.delivery__overlay {
  position: absolute; inset: 0;
  background: rgba(32,59,72,.85);
}
.delivery__content { position: relative; z-index: 2; }
.delivery__grid {
  display: grid; grid-template-columns: 57.25% 42.75%; align-items: center;
}
.delivery__headline { margin-bottom: 28px; }
.delivery__title-row {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 0 13px;
}
.delivery__title {
  font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 700; line-height: 1; text-align: left;
}
.delivery__title--green { color: var(--green); display: block; width: 100%; margin-bottom: 4px; text-align: left; }
.delivery__title--white { color: var(--white); display: inline-block; }
.delivery__desc {
  font-size: 1rem; color: rgba(255,255,255,.82); margin-bottom: 16px;
  max-width: 560px; line-height: 1.8; text-align: left;
}
.delivery__checks { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 20px; }
.delivery__checks li {
  display: flex; align-items: center; gap: 10px;
  font-size: 1rem; color: var(--white); font-weight: 500;
}
.delivery__checks li i { color: var(--green); font-size: 1.2rem; }

/* ==========================================
   FAQ
   ========================================== */
.faq { background: var(--gray-50); padding: 80px 0; }
.faq__list {
  max-width: 800px; margin: 0 auto;
}
.faq-item {
  background: var(--white); border-radius: var(--radius);
  margin-bottom: 16px; box-shadow: 0 2px 8px rgba(0,0,0,.05);
  overflow: hidden;
}
.faq-item__question {
  width: 100%; padding: 20px 24px;
  background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  color: var(--navy); cursor: pointer;
  transition: background .3s ease;
}
.faq-item__question:hover {
  background: var(--gray-50);
}
.faq-item__question i {
  transition: transform .3s ease;
  color: var(--teal);
}
.faq-item[aria-expanded="true"] .faq-item__question i {
  transform: rotate(180deg);
}
.faq-item__answer {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item[aria-expanded="true"] .faq-item__answer {
  max-height: 200px;
}
.faq-item__answer p {
  padding: 0 24px 20px;
  font-size: .95rem; color: var(--gray-600); line-height: 1.7;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials { background: var(--white); padding: 70px 0; }
.testimonials__swiper {
  padding-bottom: 52px !important; position: relative;
}
.testimonials .section__subtitle { text-align: center; margin-left: auto; margin-right: auto; }

.testimonial-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: 28px 22px; height: 100%;
  box-shadow: 5px 5px 5px rgba(0,0,0,.08);
  transition: box-shadow .3s ease, transform .3s ease;
  text-align: center; display: flex; flex-direction: column; align-items: center;
}
.testimonial-card:hover { box-shadow: 0 2px 25px rgba(0,0,0,.1); transform: translateY(-3px); }

.testimonial-card__header {
  display: flex; flex-direction: column; align-items: center;
  gap: 10px; margin-bottom: 16px; width: 100%;
}
.testimonial-card__header img {
  width: 56px; height: 56px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--green);
}
.testimonial-card__header strong {
  display: block; font-size: .92rem; font-weight: 700; color: var(--navy);
}
.testimonial-card__stars { color: #FBBC05; font-size: .8rem; display: flex; gap: 3px; justify-content: center; margin-top: 4px; }
.testimonial-card__text {
  font-size: .9rem; color: var(--gray-600); line-height: 1.7; flex: 1;
}

.swiper-slide { height: auto; display: flex; }
.testimonials__prev, .testimonials__next {
  color: var(--teal); width: 36px; height: 36px;
}
.testimonials__prev::after, .testimonials__next::after { font-size: 1.1rem; font-weight: 700; }
.testimonials__prev { left: -4px; }
.testimonials__next { right: -4px; }

.swiper-pagination-bullet { background: var(--gray-400); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--green); transform: scale(1.2); }

/* ==========================================
   CONTACT
   ========================================== */
.contact { background: var(--white); padding: 70px 0; }
.contact__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
}
.contact__left .section__title--contact {
  font-size: 2.5rem; font-weight: 500; margin-bottom: 12px; text-align: left;
}

.contact__list { display: flex; flex-direction: column; gap: 18px; }
.contact__list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 1rem; color: var(--gray-600); line-height: 1.6; text-align: left;
}
.contact__list li i {
  color: var(--teal); font-size: 1.2rem; width: 24px; text-align: center; margin-top: 2px;
}
.contact__list a:hover { color: var(--green); }

.contact__map { 
  border-radius: 12px; 
  overflow: hidden; 
  box-shadow: 0 8px 32px rgba(32,59,72,.3);
}
.contact__map iframe { display: block; width: 100%; }

/* ==========================================
   FOOTER
   ========================================== */
.footer { background: var(--navy-dk); color: rgba(255,255,255,.72); }

.footer__top {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 24px;
  padding: 20px 50px 40px; align-items: start;
}
.footer__col h4 {
  color: var(--white); font-size: .85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; text-align: left;
}
.footer__col p, .footer__col li { font-size: .88rem; line-height: 1.75; margin-bottom: 8px; text-align: left; }
.footer__col a { transition: var(--transition); }
.footer__col a:hover { color: var(--green); }
.footer__col ul { display: flex; flex-direction: column; gap: 6px; text-align: left; }

.footer__social { display: flex; gap: 8px; margin-top: 16px; }
.footer__social a {
  width: 36px; height: 36px; border-radius: var(--radius);
  background: var(--teal); display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: .9rem; transition: var(--transition);
}
.footer__social a:hover { background: var(--green); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: .8rem;
}
.footer__bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__bottom-links a:hover, #cookie-settings-btn:hover { color: var(--green); }
#cookie-settings-btn {
  background: none; border: none; color: rgba(255,255,255,.7);
  font-family: var(--font-body); font-size: .8rem; cursor: pointer; padding: 0;
}

/* ==========================================
   WHATSAPP FLOAT
   ========================================== */
.whatsapp-float {
  position: fixed; bottom: 15px; right: 15px; z-index: 998;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.55); }

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
  position: fixed; bottom: 80px; right: 15px; z-index: 997;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--teal); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; border: none; cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,131,148,.35);
  transition: var(--transition);
  opacity: 0; visibility: hidden; transform: translateY(20px);
}
.back-to-top.visible {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.back-to-top:hover {
  background: var(--green-h); transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,131,148,.45);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

/* Tablet */
@media (max-width: 1024px) {
  .services__grid    { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .about__grid       { grid-template-columns: 1fr; gap: 40px; }
  .contact__grid     { grid-template-columns: 1fr; gap: 32px; }
  .footer__top       { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; padding: 24px 24px 36px; }
  .delivery__grid    { grid-template-columns: 1fr; }
  .delivery__spacer  { display: none; }
}

/* Mobile */
@media (max-width: 767px) {
  html { font-size: 15px; }
  .container { padding: 0 16px; }

  /* Header */
  .header { padding: 4px 0; }
  .nav { grid-template-columns: 1fr auto; gap: 12px; }
  .nav__logo img { height: 52px; width: auto; }
  .nav__menu { display: none; }
  .nav__social:not(.nav__social--menu) { display: none; }
  .nav__toggle { display: flex; grid-column: 2; justify-self: end; }

  .nav__menu.open {
    display: flex; flex-direction: column; position: fixed;
    inset: 0; background: var(--navy-dk);
    align-items: center; justify-content: flex-start;
    gap: 4px; z-index: 999; padding: 20px 24px 40px;
    overflow-y: auto;
  }
  .nav__menu.open .nav__menu-logo { display: block; margin-bottom: 20px; }
  .nav__menu.open .nav__menu-logo img { height: 60px; width: auto; }
  .nav__menu.open .nav__menu-close { display: block; position: absolute; top: 20px; right: 20px; }
  .nav__menu.open .nav__link {
    font-size: 1.35rem; color: var(--white); padding: 14px 28px;
    width: 100%; max-width: 280px; text-align: center;
  }
  .nav__menu.open .nav__link::after { display: none; }
  .nav__menu.open .nav__link:hover,
  .nav__menu.open .nav__link.active { color: var(--green); background: rgba(3,177,98,.1); border-radius: var(--radius); }
  .nav__menu.open .nav__menu-social { display: block; width: 100%; }

  .nav__toggle.open span { background: var(--white); }

  /* Hero */
  .hero {
    min-height: 0; height: auto; max-height: none;
    min-height: 100svh; padding: 88px 0 48px;
    align-items: center;
  }
  .hero__content { padding: 0; }
  .hero__title {
    font-size: clamp(2rem, 9vw, 2.75rem);
    line-height: 1; margin-bottom: 16px;
  }
  .hero__subtitle {
    font-size: .95rem; line-height: 1.65; margin-bottom: 24px;
    padding: 0 4px;
  }
  .hero__buttons {
    flex-direction: column; width: 100%; gap: 10px;
    align-items: stretch; max-width: 320px; margin: 0 auto;
  }
  .hero__buttons .btn {
    justify-content: center; width: 100%;
    font-size: 1.15rem; padding: 14px 20px 10px;
    white-space: normal; text-align: center;
  }

  /* Sections */
  .section { padding: 48px 0; }
  .services { padding: 56px 0 64px; }
  .about { padding: 56px 0 48px; }
  .testimonials { padding: 48px 0; }
  .contact { padding: 48px 0 56px; }

  .section__label { font-size: 1.1rem; }
  .section__title { font-size: clamp(1.75rem, 7vw, 2.25rem); letter-spacing: 1px; }
  .section__title--green,
  .section__title--contact { font-size: clamp(1.75rem, 6vw, 2.1rem); }
  .section__subtitle { font-size: .92rem; padding: 0 8px; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; gap: 20px; }
  .service-card__img-wrap { min-height: 160px; padding: 12px 12px 0; }
  .service-card__img-wrap img { max-width: 280px; }
  .service-card h3 { font-size: 1.05rem; padding: 0 16px; text-align: center; }
  .service-card p { padding: 8px 20px 4px; text-align: center; }

  /* About */
  .about__grid { gap: 32px; }
  .about__image-col {
    min-height: 0; padding-top: 48px; padding-bottom: 16px;
    max-width: 340px; margin: 0 auto;
  }
  .about__img--main {
    width: 88%; margin: 0; display: block;
  }
  .about__img--circle {
    width: 110px; top: 0; right: 0; left: auto;
  }
  .about__badge {
    width: 120px; padding: 22px 0; bottom: 0; right: 0;
  }
  .about__badge-years { font-size: 2.2rem; }
  .about__counter-label { font-size: 1.2rem; }
  .about__title { font-size: clamp(1.35rem, 5.5vw, 1.75rem); }
  .about__since { font-size: 1.25rem; }
  .about__text { font-size: .9rem; }
  .about__list li { font-size: .95rem; line-height: 1.9; }

  /* Delivery */
  .delivery { padding: 48px 0; margin-top: 0; }
  .delivery__bg { inset: 0; }
  .delivery__bg img { object-position: 70% center; }
  .delivery__title {
    font-size: clamp(1.85rem, 8vw, 2.75rem); line-height: 1.05;
  }
  .delivery__title-row { gap: 0 8px; }
  .delivery__desc { font-size: .92rem; max-width: 100%; }
  .delivery__checks { flex-direction: column; gap: 12px; }

  /* Testimonials */
  .testimonials__swiper { padding-bottom: 40px !important; padding-left: 4px; padding-right: 4px; }
  .testimonials__prev, .testimonials__next { display: none; }
  .testimonial-card { padding: 22px 16px; }

  /* Contact */
  .contact__left .section__title--contact { font-size: 2rem; }
  .contact__intro { font-size: 1rem; margin-bottom: 20px; }
  .contact__list li { font-size: .92rem; word-break: break-word; }
  .contact__map iframe { height: 280px; }

  /* Footer */
  .footer__top {
    grid-template-columns: 1fr; gap: 28px;
    padding: 32px 16px 28px; text-align: center;
  }
  .footer__col ul { align-items: center; }
  .footer__social { justify-content: center; }
  .footer__bottom {
    flex-direction: column; text-align: center;
    padding: 16px; font-size: .72rem; gap: 16px;
  }
  .footer__bottom-links {
    justify-content: center; flex-direction: column; gap: 10px;
  }

  /* WhatsApp */
  .whatsapp-float {
    width: 50px; height: 50px; font-size: 1.5rem;
    bottom: max(12px, env(safe-area-inset-bottom));
    right: max(12px, env(safe-area-inset-right));
  }
}

/* Small phones */
@media (max-width: 380px) {
  .nav__logo img { height: 46px; }
  .hero__title { font-size: 1.85rem; }
  .hero__buttons { max-width: 100%; }
  .about__image-col { max-width: 100%; }
  .about__img--circle { width: 90px; }
  .about__badge { width: 100px; padding: 18px 0; }
  .about__badge-years { font-size: 1.85rem; }
}

[data-gsap] { opacity: 0; }
[data-gsap^="hero-"] { opacity: 0; }
