/* ========================================
   Mil Lonas — Site Institucional
   Cores: Preto, Azul, Branco
   ======================================== */

:root {
  --color-black: #0a0a0a;
  --color-black-soft: #141414;
  --color-blue: #0066cc;
  --color-blue-dark: #004d99;
  --color-blue-light: #3399ff;
  --color-white: #ffffff;
  --color-gray-100: #f5f7fa;
  --color-gray-200: #e8ecf0;
  --color-gray-400: #9ca3af;
  --color-gray-600: #4b5563;
  --color-shopee: #ee4d2d;
  --color-whatsapp: #25d366;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 72px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font);
  color: var(--color-black);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--dark {
  background: var(--color-black);
  color: var(--color-white);
}

.section__label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-blue);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section__title--light {
  color: var(--color-white);
}

.section__desc {
  font-size: 1.0625rem;
  color: var(--color-gray-600);
  max-width: 560px;
}

.section--dark .section__desc {
  color: var(--color-gray-400);
}

.section__header {
  margin-bottom: 56px;
}

.section__header--center {
  text-align: center;
}

.section__header--center .section__desc {
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn--primary {
  background: var(--color-blue);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 102, 204, 0.35);
}

.btn--shopee {
  background: var(--color-shopee);
  color: var(--color-white);
}

.btn--shopee:hover {
  background: #d73211;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(238, 77, 45, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-blue);
}

.btn--white:hover {
  background: var(--color-gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
}

.btn--whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.btn__icon {
  width: 18px;
  height: 18px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.header--scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.header__logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.header__logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

.nav__list {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-blue);
  transition: var(--transition);
}

.nav__link:hover {
  color: var(--color-white);
}

.nav__link:hover::after {
  width: 100%;
}

.header__cta {
  flex-shrink: 0;
}

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
  border-radius: 2px;
}

.header__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, var(--color-black) 0%, var(--color-blue-dark) 100%);
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(0, 77, 153, 0.75) 50%,
    rgba(10, 10, 10, 0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: 760px;
}

.hero__badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(0, 102, 204, 0.25);
  border: 1px solid rgba(51, 153, 255, 0.4);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-blue-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero__title-highlight {
  color: var(--color-blue-light);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__stat strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
}

.hero__stat span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Taglines */
.taglines {
  background: var(--color-blue);
  padding: 48px 0;
}

.taglines__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tagline-card {
  text-align: center;
  color: var(--color-white);
}

.tagline-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.tagline-card p {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
}

/* Promo Flyer */
.promo {
  padding: 48px 0;
  background: var(--color-gray-100);
}

.promo__image {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about__image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  background: var(--color-blue);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.15;
}

.about__text {
  font-size: 1.0625rem;
  color: var(--color-gray-600);
  margin-bottom: 16px;
  line-height: 1.75;
}

.about__features {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-black);
}

.about__features svg {
  width: 20px;
  height: 20px;
  color: var(--color-blue);
  flex-shrink: 0;
}

/* Products */
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.products__grid .product-card:nth-child(4),
.products__grid .product-card:nth-child(5) {
  grid-column: span 1;
}

@media (min-width: 769px) {
  .products__grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .products__grid .product-card {
    grid-column: span 2;
  }

  .products__grid .product-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .products__grid .product-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

.product-card {
  background: var(--color-black-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 102, 204, 0.4);
  box-shadow: 0 16px 48px rgba(0, 102, 204, 0.15);
}

.product-card__image {
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-black-soft) 0%, var(--color-blue-dark) 100%);
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.06);
}

.product-card__body {
  padding: 24px;
}

.product-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.product-card__desc {
  font-size: 0.875rem;
  color: var(--color-gray-400);
  margin-bottom: 16px;
  line-height: 1.6;
}

.product-card__tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 102, 204, 0.2);
  color: var(--color-blue-light);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.products__cta {
  text-align: center;
}

.products__cta-text {
  font-size: 1.0625rem;
  color: var(--color-gray-400);
  margin-bottom: 24px;
}

/* Gallery */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
}

.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--color-gray-200) 0%, var(--color-blue-light) 100%);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__item--large {
  grid-row: span 2;
  grid-column: span 1;
}

.gallery__item--wide {
  grid-column: span 2;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-dark) 100%);
  padding: 64px 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-banner__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 8px;
}

.cta-banner__text {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
  background: var(--color-gray-100);
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--color-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.contact-card--whatsapp:hover {
  border-color: var(--color-whatsapp);
}

.contact-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--color-blue);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card__icon svg {
  width: 26px;
  height: 26px;
}

.contact-card__icon--shopee {
  background: var(--color-shopee);
}

.contact-card__icon--instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.contact-card__icon--facebook {
  background: #1877f2;
}

.contact-card--whatsapp .contact-card__icon {
  background: var(--color-whatsapp);
}

.contact-card__info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-card__info p {
  font-size: 0.875rem;
  color: var(--color-gray-600);
}

/* Footer */
.footer {
  background: var(--color-black);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 64px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
  object-fit: contain;
}

.footer__brand p {
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer__links h4,
.footer__social h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.9375rem;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--color-blue-light);
}

.footer__social-links {
  display: flex;
  gap: 12px;
}

.footer__social-links a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer__social-links a:hover {
  background: var(--color-blue);
  transform: translateY(-2px);
}

.footer__social-links svg {
  width: 18px;
  height: 18px;
  color: var(--color-white);
}

.footer__bottom {
  padding: 24px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--color-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  color: var(--color-white);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 6px 32px rgba(37, 211, 102, 0.7); }
}

/* Renda Extra Page */
.hero--renda .hero__bg-img {
  object-position: center;
}

.hero__overlay--renda {
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.94) 0%,
    rgba(0, 77, 153, 0.8) 45%,
    rgba(10, 10, 10, 0.9) 100%
  );
}

.hero__content--wide {
  max-width: 820px;
}

.renda-steps {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.renda-steps li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.renda-steps__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-blue);
  color: var(--color-white);
  font-size: 0.9375rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.renda-steps li strong {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 4px;
  color: var(--color-black);
}

.renda-steps li p {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  line-height: 1.5;
}

.renda-margin__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.renda-margin-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--color-black-soft);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.renda-margin-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 102, 204, 0.4);
}

.renda-margin-card__value {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-blue-light);
  margin-bottom: 12px;
  line-height: 1;
}

.renda-margin-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.renda-margin-card p {
  font-size: 0.875rem;
  color: var(--color-gray-400);
  line-height: 1.6;
}

.renda-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.renda-benefit-card {
  padding: 32px 28px;
  background: var(--color-gray-100);
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: var(--transition);
}

.renda-benefit-card:hover {
  border-color: var(--color-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.renda-benefit-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.renda-benefit-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.renda-benefit-card p {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  line-height: 1.65;
}

.renda-audience__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.renda-audience__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--color-black-soft);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.9375rem;
  font-weight: 500;
}

.renda-audience__list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 102, 204, 0.25);
  color: var(--color-blue-light);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.renda-faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.renda-faq__item {
  background: var(--color-gray-100);
  border-radius: var(--radius);
  border: 2px solid transparent;
  overflow: hidden;
  transition: var(--transition);
}

.renda-faq__item[open] {
  border-color: var(--color-blue);
}

.renda-faq__item summary {
  padding: 20px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.renda-faq__item summary::-webkit-details-marker {
  display: none;
}

.renda-faq__item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-blue);
  font-size: 1.25rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.renda-faq__item[open] summary::after {
  content: '−';
  background: var(--color-blue);
  color: var(--color-white);
}

.renda-faq__item p {
  padding: 0 24px 20px;
  font-size: 0.875rem;
  color: var(--color-gray-600);
  line-height: 1.7;
}

.contact__grid--single {
  grid-template-columns: 1fr;
  max-width: 560px;
  margin: 0 auto;
}

.contact-card--featured {
  padding: 36px;
}

.contact-card__cta {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-whatsapp);
}

.nav__link--active {
  color: var(--color-white);
}

.nav__link--active::after {
  width: 100%;
}

.renda-promo {
  background: var(--color-gray-100);
}

.renda-promo__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.renda-promo__image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .renda-promo__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .taglines__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image {
    height: 360px;
  }

  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery__item--large,
  .gallery__item--wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery__item {
    height: 220px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .renda-margin__grid,
  .renda-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-black);
    padding: 24px;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav__list {
    flex-direction: column;
    gap: 0;
  }

  .nav__link {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .header__cta {
    display: none;
  }

  .header__toggle {
    display: flex;
  }

  .hero__stats {
    gap: 24px;
  }

  .taglines__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .products__grid {
    grid-template-columns: 1fr;
  }

  .products__grid .product-card,
  .products__grid .product-card:nth-child(4),
  .products__grid .product-card:nth-child(5) {
    grid-column: span 1;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .renda-margin__grid,
  .renda-benefits,
  .renda-audience__list {
    grid-template-columns: 1fr;
  }
}

/* ===== Mil Lonas — visual refresh 2026 ===== */
:root {
  --color-blue: #0d5fc3;
  --color-blue-dark: #0b3b78;
  --color-blue-light: #58a7ff;
  --color-black: #101827;
  --color-gray-900: #172033;
  --color-gray-700: #475569;
  --color-gray-600: #64748b;
  --color-gray-500: #94a3b8;
  --color-gray-300: #dbe4ef;
  --color-gray-200: #e9eff6;
  --color-gray-100: #f4f7fb;
  --color-white: #ffffff;
  --color-shopee: #f26b38;
  --shadow-sm: 0 6px 20px rgba(15, 38, 70, .07);
  --shadow-md: 0 18px 45px rgba(15, 38, 70, .12);
  --shadow-lg: 0 28px 70px rgba(10, 43, 87, .18);
  --radius: 18px;
  --radius-lg: 28px;
  --transition: 180ms cubic-bezier(.23, 1, .32, 1);
}
html { scroll-behavior: smooth; }
body { background:#fff; color:var(--color-gray-900); font-family:'Inter',system-ui,sans-serif; line-height:1.65; }
.container { width:min(1180px,calc(100% - 40px)); }
.section { padding:104px 0; }
.section__label { display:inline-flex; align-items:center; gap:9px; color:var(--color-blue); font-size:.78rem; font-weight:800; letter-spacing:.14em; text-transform:uppercase; }
.section__label::before { content:''; width:28px; height:3px; border-radius:999px; background:var(--color-blue); }
.section__title { color:var(--color-gray-900); font-size:clamp(2rem,4vw,3.4rem); line-height:1.08; letter-spacing:-.055em; }
.section__desc { max-width:650px; color:var(--color-gray-600); font-size:1.04rem; }
.header { height:78px; background:rgba(8,27,53,.86); backdrop-filter:blur(18px); border-bottom:1px solid rgba(255,255,255,.1); }
.header--scrolled { background:rgba(8,27,53,.97); box-shadow:0 10px 30px rgba(3,18,39,.18); }
.header__inner { height:78px; }
.header__logo-img { height:52px; width:52px; border-radius:50%; box-shadow:0 0 0 3px rgba(255,255,255,.14); }
.nav__list { gap:24px; }
.nav__link { font-size:.84rem; font-weight:700; }
.nav__link::after { height:3px; border-radius:999px; background:var(--color-blue-light); }
.btn { min-height:46px; border-radius:12px; padding:12px 19px; font-weight:800; box-shadow:0 7px 16px rgba(10,43,87,.1); transition:transform var(--transition),box-shadow var(--transition),background var(--transition); }
.btn:hover { transform:translateY(-2px); box-shadow:0 14px 24px rgba(10,43,87,.16); }
.btn:active { transform:scale(.97); }
.btn--primary { background:var(--color-blue); }
.btn--shopee { background:var(--color-shopee); }
.btn--outline { border:1px solid rgba(255,255,255,.45); background:rgba(255,255,255,.08); }
.hero { min-height:720px; display:flex; align-items:center; overflow:hidden; }
.hero__bg-img { filter:saturate(.82) contrast(1.08); transform:scale(1.02); }
.hero__overlay { background:linear-gradient(90deg,rgba(5,22,46,.95) 0%,rgba(7,31,64,.78) 48%,rgba(7,31,64,.18) 100%); }
.hero__content { padding-top:92px; }
.hero__badge { padding:8px 13px; background:rgba(88,167,255,.14); border:1px solid rgba(151,203,255,.28); color:#b9dbff; border-radius:999px; font-size:.75rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.hero__title { max-width:820px; margin:20px 0; font-size:clamp(3rem,6.4vw,6.2rem); line-height:.98; letter-spacing:-.075em; }
.hero__title-highlight { color:#7cc0ff; }
.hero__subtitle { max-width:650px; color:rgba(255,255,255,.78); font-size:clamp(1rem,1.5vw,1.2rem); }
.hero__actions { margin-top:30px; }
.hero__stats { border-top:1px solid rgba(255,255,255,.2); padding-top:23px; margin-top:54px; }
.hero__stat strong { color:#fff; font-size:.98rem; }
.hero__stat span { color:rgba(255,255,255,.58); }
.taglines { position:relative; z-index:2; margin-top:-46px; }
.taglines__grid { gap:16px; }
.tagline-card { min-height:142px; padding:25px 22px; background:rgba(255,255,255,.94); border:1px solid rgba(219,228,239,.9); border-radius:var(--radius); box-shadow:var(--shadow-md); }
.tagline-card__icon { display:grid; place-items:center; width:44px; height:44px; margin-bottom:15px; border-radius:13px; background:#eaf3ff; font-size:1.35rem; }
.tagline-card p { color:var(--color-gray-700); font-size:.92rem; font-weight:700; line-height:1.35; }
.about { background:linear-gradient(180deg,#fff 0%,#f8fbff 100%); }
.about__grid { gap:clamp(42px,7vw,94px); }
.about__image-wrap { border-radius:var(--radius-lg); }
.about__image { border-radius:var(--radius-lg); box-shadow:var(--shadow-lg); }
.about__image-accent { background:var(--color-blue); border-radius:0 0 22px 0; }
.about__text { color:var(--color-gray-700); font-size:1.01rem; }
.about__features { gap:13px; margin:26px 0 31px; }
.about__features li { color:var(--color-gray-700); font-size:.92rem; font-weight:700; }
.about__features svg { color:var(--color-blue); background:#eaf3ff; border-radius:50%; padding:3px; }
.renda-promo { background:#eef6ff; }
.renda-promo__inner { padding:42px; border:1px solid #d7e9ff; border-radius:var(--radius-lg); background:linear-gradient(115deg,#eaf4ff,#f9fcff); box-shadow:var(--shadow-sm); }
.renda-promo__image { aspect-ratio:1.65; object-fit:cover; }
.section--dark { background:linear-gradient(135deg,#071b35,#0b3b78); }
.section__title--light { color:#fff; }
.section--dark .section__label { color:#7cc0ff; }
.section--dark .section__label::before { background:#7cc0ff; }
.section--dark .section__desc { color:rgba(255,255,255,.68); }
.products__grid { gap:18px; }
.product-card { overflow:hidden; background:rgba(255,255,255,.98); border:0; border-radius:18px; box-shadow:0 16px 34px rgba(1,14,34,.18); transition:transform var(--transition),box-shadow var(--transition); }
.product-card:hover { transform:translateY(-7px); box-shadow:0 24px 45px rgba(1,14,34,.27); }
.product-card__image { height:205px; background:#edf4fb; }
.product-card__image img { transition:transform 300ms var(--transition); }
.product-card:hover .product-card__image img { transform:scale(1.05); }
.product-card__body { padding:22px; }
.product-card__title { color:var(--color-gray-900); font-size:1.05rem; letter-spacing:-.02em; }
.product-card__desc { color:var(--color-gray-600); font-size:.88rem; line-height:1.55; }
.product-card__tag { background:#e8f2ff; color:var(--color-blue); border-radius:999px; padding:5px 10px; font-size:.72rem; font-weight:800; }
.products__cta { margin-top:45px; padding-top:30px; border-top:1px solid rgba(255,255,255,.14); }
.products__cta-text { color:rgba(255,255,255,.7); }
.gallery { background:#f7faff; }
.gallery__grid { gap:14px; }
.gallery__item { overflow:hidden; border:5px solid #fff; border-radius:18px; box-shadow:var(--shadow-sm); }
.gallery__item img { transition:transform 400ms var(--transition); }
.gallery__item:hover img { transform:scale(1.08); }
.cta-banner { background:linear-gradient(110deg,var(--color-blue),#1685e9); }
.cta-banner__title { letter-spacing:-.045em; }
.contact-card { min-height:110px; border:1px solid var(--color-gray-200); border-radius:18px; box-shadow:var(--shadow-sm); transition:transform var(--transition),box-shadow var(--transition); }
.contact-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.contact-card__icon { width:48px; height:48px; border-radius:15px; }
.contact-card__info h3 { font-size:.98rem; }
.contact-card__info p { color:var(--color-gray-600); }
.footer { background:#07172c; }
.footer__logo { width:64px; height:64px; border-radius:50%; }
.footer__brand p,.footer__links a { color:rgba(255,255,255,.62); }
.whatsapp-float { width:58px; height:58px; right:24px; bottom:24px; background:#20c66a; box-shadow:0 12px 30px rgba(17,143,73,.34); }
.hero--renda .hero__overlay--renda { background:linear-gradient(90deg,rgba(5,22,46,.96),rgba(7,31,64,.76) 55%,rgba(7,31,64,.22)); }
.renda-margin-card,.renda-benefit-card { border-radius:20px; box-shadow:0 16px 35px rgba(1,14,34,.2); }
.renda-benefit-card { background:#fff; border-color:var(--color-gray-200); box-shadow:var(--shadow-sm); }
.renda-faq__item { border:1px solid var(--color-gray-200); background:#fff; box-shadow:var(--shadow-sm); }
@media (max-width:768px) {
  .container { width:min(100% - 28px,620px); }
  .section { padding:76px 0; }
  .header,.header__inner { height:70px; }
  .header__logo-img { height:46px; width:46px; }
  .nav { top:70px; background:rgba(7,23,44,.98); padding:14px 20px 22px; }
  .hero { min-height:690px; }
  .hero__content { padding-top:76px; }
  .hero__title { font-size:clamp(2.65rem,13vw,4.2rem); }
  .hero__subtitle { font-size:.98rem; }
  .hero__actions { align-items:stretch; flex-direction:column; }
  .hero__actions .btn { width:100%; justify-content:center; }
  .hero__stats { gap:15px; margin-top:38px; }
  .hero__stat strong { font-size:.78rem; }
  .hero__stat span { font-size:.7rem; }
  .taglines { margin-top:-28px; }
  .tagline-card { min-height:0; }
  .renda-promo__inner { padding:25px; }
  .section__title { font-size:2.25rem; }
  .product-card__image { height:190px; }
  .cta-banner { padding:66px 0; }
  .contact-card--featured { padding:25px; }
}
@media (prefers-reduced-motion:reduce) { html{scroll-behavior:auto;} *,*::before,*::after{transition-duration:.01ms!important;animation-duration:.01ms!important;} }

.guide-section { background:#fff; }
.guide-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.guide-card { position:relative; padding:30px 26px 28px; border:1px solid #e1eaf4; border-radius:20px; background:linear-gradient(145deg,#fff,#f5f9fe); box-shadow:var(--shadow-sm); transition:transform var(--transition),box-shadow var(--transition); }
.guide-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); }
.guide-card__number { display:inline-grid; place-items:center; width:42px; height:42px; margin-bottom:22px; border-radius:13px; background:#e8f2ff; color:var(--color-blue); font-size:.82rem; font-weight:900; letter-spacing:.04em; }
.guide-card h3 { margin-bottom:9px; color:var(--color-gray-900); font-size:1.08rem; letter-spacing:-.025em; }
.guide-card p { color:var(--color-gray-600); font-size:.91rem; line-height:1.6; }
@media (max-width:768px) { .guide-grid { grid-template-columns:1fr; } }

/* Ajuste dos ícones da seção de benefícios */
.tagline-card { display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; }
.tagline-card__icon { width:68px !important; height:68px !important; min-width:68px; min-height:68px; margin:0 auto 18px !important; display:grid !important; place-items:center !important; text-align:center; border-radius:20px; font-size:2.45rem !important; line-height:1 !important; }
.tagline-card p { max-width:230px; margin:0 auto; text-align:center; }
@media (max-width:768px) {
  .tagline-card { min-height:156px; padding:22px 18px; }
  .tagline-card__icon { width:64px !important; height:64px !important; min-width:64px; min-height:64px; font-size:2.25rem !important; margin-bottom:15px !important; }
}
/* Grade de produtos: 3 colunas x 2 linhas no desktop */
@media (min-width: 769px) {
  .products__grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .products__grid .product-card,
  .products__grid .product-card:nth-child(4),
  .products__grid .product-card:nth-child(5) { grid-column: auto !important; }
}
