:root {
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --transition: 200ms ease;
}

html {
  scroll-behavior: smooth;
}

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

* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
}

body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  background: #F6F8F7;
  color: #16262A;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #FF6A00;
  outline-offset: 3px;
}

p {
  margin: 0;
}

strong {
  font-weight: 700;
  color: #16262A;
}

h1,
h2,
h3,
h4 {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: #16262A;
  letter-spacing: -0.01em;
}

h1 {
  line-height: 1.1;
}

h2,
h3 {
  line-height: 1.3;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 10px;
  background: rgba(255, 106, 0, 0.12);
  color: #0C3E43;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(12, 62, 67, 0.06);
  color: #4A5D63;
  font-weight: 600;
  font-size: 0.9rem;
}

.button, .article-cta .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease;
  cursor: pointer;
}

.button-primary, .article-cta .cta-button {
  background: linear-gradient(135deg, #FF6A00 0%, rgb(214.2, 89.04, 0) 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 30px rgba(12, 62, 67, 0.08);
}
.button-primary:hover, .article-cta .cta-button:hover, .button-primary:focus-visible, .article-cta .cta-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 50px rgba(12, 62, 67, 0.1);
}

.button-ghost {
  background: transparent;
  color: #0C3E43;
  border-color: rgba(12, 62, 67, 0.2);
}
.button-ghost:hover, .button-ghost:focus-visible {
  border-color: #0C3E43;
  background: rgba(12, 62, 67, 0.05);
}

/* ===== HEADER MODERNO ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(12, 62, 67, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-announcement {
  background: #0B2F33;
  padding: 0.6rem 0;
}
.header-announcement p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.header-announcement p svg {
  flex-shrink: 0;
  opacity: 0.8;
}
.header-announcement p .separator {
  opacity: 0.4;
  margin: 0 0.25rem;
}

.header-top {
  background: #0B2F33;
  padding: 0.6rem 0;
}
.header-top p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.header-main {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 106, 0, 0.22);
}
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.brand:hover {
  opacity: 0.85;
}
.brand .brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
}
.brand .brand-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.brand .brand-name {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.brand .brand-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  color: #FF6A00;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.primary-nav .nav-link {
  position: relative;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.primary-nav .nav-link:hover {
  color: #FF6A00;
  background: rgba(255, 106, 0, 0.15);
}
.primary-nav .nav-link.is-active {
  color: #FF6A00;
  background: rgba(255, 106, 0, 0.18);
}
.primary-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.75rem;
  padding: 0.65rem 1.25rem;
  background: #FF6A00;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.25s ease;
}
.primary-nav .nav-cta svg {
  opacity: 0.9;
}
.primary-nav .nav-cta:hover {
  background: rgb(224.4, 93.28, 0);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.25);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #FF6A00;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  padding: 5rem 0 6rem;
  overflow: hidden;
  background: #F6F8F7;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg .hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(255, 138, 31, 0.08) 0%, transparent 60%), radial-gradient(ellipse 60% 50% at 20% 80%, rgba(255, 106, 0, 0.06) 0%, transparent 50%);
}
.hero-bg .hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: radial-gradient(rgba(255, 106, 0, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  padding: 0.5rem 1rem;
  background: rgba(255, 106, 0, 0.08);
  color: #FF6A00;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 50px;
  border: 1px solid rgba(255, 106, 0, 0.12);
}
.hero-badge svg {
  color: #FF8A1F;
}

.hero-title {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #0B2F33;
  letter-spacing: -0.03em;
}
.hero-title em {
  display: block;
  font-style: normal;
  color: #FF6A00;
  font-weight: 600;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #4A5D63;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: #FF6A00;
  color: #ffffff;
}
.btn-primary:hover {
  background: #0B2F33;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 106, 0, 0.3);
}
.btn-primary svg {
  transition: transform 0.2s ease;
}
.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-outline {
  background: transparent;
  color: #FF6A00;
  border-color: rgba(255, 106, 0, 0.25);
}
.btn-outline:hover {
  background: rgba(255, 106, 0, 0.06);
  border-color: #FF6A00;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 106, 0, 0.1);
}

.trust-avatars {
  display: flex;
}
.trust-avatars .avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #FF8A1F 0%, #FF6A00 100%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -8px;
}
.trust-avatars .avatar:first-child {
  margin-left: 0;
}
.trust-avatars .avatar:last-child {
  background: #0B2F33;
  font-size: 0.9rem;
}

.trust-text {
  font-size: 0.9rem;
  color: #4A5D63;
}
.trust-text strong {
  color: #0B2F33;
  font-weight: 700;
}

/* Hero Visual - Cards flutuantes */
.hero-visual {
  position: relative;
  height: 420px;
}

.hero-card {
  position: absolute;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(11, 47, 51, 0.1);
  border: 1px solid rgba(255, 106, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-card .card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255, 138, 31, 0.1);
  border-radius: 12px;
  color: #FF8A1F;
}
.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 60px rgba(11, 47, 51, 0.15);
}

.hero-card-main {
  top: 10%;
  right: 10%;
  padding: 1.75rem;
  width: 240px;
  z-index: 3;
}
.hero-card-main h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0B2F33;
}
.hero-card-main p {
  font-size: 0.85rem;
  color: #4A5D63;
  line-height: 1.5;
}

.hero-card-secondary {
  top: 45%;
  left: 5%;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}
.hero-card-secondary .card-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 106, 0, 0.1);
  color: #FF6A00;
}
.hero-card-secondary span {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0B2F33;
}

.hero-card-tertiary {
  bottom: 15%;
  right: 5%;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}
.hero-card-tertiary .card-icon {
  width: 40px;
  height: 40px;
  background: rgba(12, 62, 67, 0.1);
  color: #0C3E43;
}
.hero-card-tertiary span {
  font-size: 0.9rem;
  font-weight: 700;
  color: #0B2F33;
}

.hero-stats-floating {
  position: absolute;
  bottom: 5%;
  left: 15%;
  display: flex;
  gap: 1.5rem;
  padding: 1rem 1.5rem;
  background: #0B2F33;
  border-radius: 14px;
  z-index: 4;
}
.hero-stats-floating .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}
.hero-stats-floating .stat-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}
.hero-stats-floating .stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== RESPONSIVIDADE HEADER E HERO ===== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-description {
    max-width: 560px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
  }
  .hero-visual {
    display: none;
  }
}
@media (max-width: 768px) {
  .header-announcement p {
    font-size: 0.7rem;
  }
  .header-announcement p .separator,
  .header-announcement p span:last-child {
    display: none;
  }
  .header-main .container {
    gap: 1rem;
  }
  .primary-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero {
    padding: 3.5rem 0 4rem;
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }
  .btn {
    width: 100%;
  }
  .hero-trust {
    flex-direction: column;
    gap: 0.75rem;
  }
}
@media (max-width: 480px) {
  .brand .brand-name {
    font-size: 1.1rem;
  }
  .brand .brand-tagline {
    font-size: 0.65rem;
  }
  .brand .brand-logo {
    width: 40px;
    height: 40px;
  }
  .hero-title {
    font-size: 1.85rem;
  }
}
.article-list {
  padding: 3.5rem 0 4.5rem;
  background: linear-gradient(180deg, #F6F8F7 0%, rgba(245, 250, 249, 0.7) 100%);
}
.article-list .section-header {
  text-align: center;
  margin-bottom: 2.4rem;
  display: grid;
  gap: 0.65rem;
}
.article-list .section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
}
.article-list .section-header p {
  color: #6B7C82;
  font-size: 1rem;
}
.article-list .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}
.article-list .show-more {
  margin-top: 1.5rem;
  text-align: center;
}
.article-list .ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: #FF6A00; /* Use sua cor principal */
  border: 2px solid #FF6A00;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.article-list .ghost-button:hover {
  background: #FF6A00;
  color: white;
  transform: translateY(-1px);
}
.article-list .ghost-button:active {
  transform: translateY(0);
}

.is-hidden {
  display: none !important;
}

.card {
  background-color: #FFFFFF;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #D8E4E0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  box-shadow: 0 8px 30px rgba(12, 62, 67, 0.08);
}
.card .card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}
.card:hover, .card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(12, 62, 67, 0.1);
  border-color: rgba(12, 62, 67, 0.16);
}
.card .card-media {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(255, 106, 0, 0.12), rgba(214, 239, 234, 0.35));
  overflow: hidden;
}
.card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms ease;
}
.card:hover .card-media img, .card:focus-within .card-media img {
  transform: scale(1.04);
}
.card .card-body {
  padding: 1.5rem;
  display: grid;
  gap: 0.75rem;
}
.card .card-body h3 {
  font-size: 1.2rem;
}
.card .card-body p {
  color: #6B7C82;
  font-size: 0.98rem;
}
.card .meta {
  color: #4A5D63;
  font-size: 0.9rem;
  font-weight: 600;
}

.card.card-teal {
  background-color: #0C3E43;
  border-color: rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
}
.card.card-teal .card-body h3 {
  color: #FFFFFF;
}
.card.card-teal .card-body p {
  color: rgba(255, 255, 255, 0.82);
}
.card.card-teal .meta {
  color: rgba(255, 255, 255, 0.7);
}

.badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  color: #0C3E43;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(12, 62, 67, 0.12);
  box-shadow: 0 8px 30px rgba(12, 62, 67, 0.08);
}

.site-footer {
  background: #0C3E43;
  color: rgba(255, 255, 255, 0.88);
  padding: 2.8rem 0;
}
.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}
.site-footer .footer-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.site-footer .footer-info {
  display: grid;
  gap: 0.75rem;
}
.site-footer .footer-info p {
  margin: 0;
}
.site-footer .footer-info .copyright {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.76);
}
.site-footer .footer-info .footer-address,
.site-footer .footer-info .footer-contact {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}
.site-footer .footer-info a {
  color: rgb(255, 165.6, 102);
  font-weight: 600;
}
.site-footer .footer-info a:hover, .site-footer .footer-info a:focus-visible {
  color: #FFFFFF;
}
.site-footer .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}
.site-footer .footer-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 200ms ease;
}
.site-footer .footer-nav a:hover, .site-footer .footer-nav a:focus-visible {
  color: #FFFFFF;
}

.products-hero {
  background: linear-gradient(140deg, rgba(123, 201, 193, 0.1), rgba(14, 89, 96, 0.08));
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.products-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.08) 0%, rgba(255, 106, 0, 0) 70%);
  z-index: 0;
}
.products-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 89, 96, 0.06) 0%, rgba(14, 89, 96, 0) 70%);
  z-index: 0;
}
.products-hero .products-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
}
.products-hero .products-hero-content .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 0 auto 0.5rem;
}
.products-hero .products-hero-content .eyebrow .icon {
  color: #FF6A00;
  font-size: 1.2rem;
}
.products-hero .products-hero-content .eyebrow span {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  font-size: 0.85rem;
  color: #FF6A00;
  background: rgba(255, 106, 0, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  display: inline-block;
}
.products-hero .products-hero-content h1 {
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #0E5960;
  line-height: 1.2;
  margin: 0;
}
.products-hero .products-hero-content h1 .highlight {
  color: #FF6A00;
  position: relative;
}
.products-hero .products-hero-content h1 .highlight::after {
  content: "";
  position: absolute;
  bottom: 0.2em;
  left: 0;
  width: 100%;
  height: 0.2em;
  background: linear-gradient(90deg, rgba(255, 106, 0, 0.2), rgba(255, 106, 0, 0));
  border-radius: 2px;
}
.products-hero .products-hero-content p {
  color: #16262A;
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}
.products-hero .products-hero-content .hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(14, 89, 96, 0.1);
}
.products-hero .products-hero-content .hero-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.products-hero .products-hero-content .hero-stats .stat .stat-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 0.5rem;
}
.products-hero .products-hero-content .hero-stats .stat .stat-icon.quality {
  color: #FF6A00;
}
.products-hero .products-hero-content .hero-stats .stat .stat-icon.natural {
  color: #0E5960;
}
.products-hero .products-hero-content .hero-stats .stat .stat-icon.verified {
  color: #FF6A00;
}
.products-hero .products-hero-content .hero-stats .stat .stat-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0E5960;
  text-align: center;
}

.products-grid {
  background: #ffffff;
  padding: 5rem 0;
}
.products-grid .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.products-grid .section-header h2 {
  font-size: 2.2rem;
  color: #0E5960;
  margin-bottom: 1rem;
}
.products-grid .section-header h2 .orange {
  color: #FF6A00;
}
.products-grid .section-header p {
  color: #16262A;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.products-grid .filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.products-grid .filter-tabs .filter-tab {
  background: #ffffff;
  border: 2px solid rgba(14, 89, 96, 0.1);
  color: #0E5960;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.products-grid .filter-tabs .filter-tab:hover {
  border-color: #0E5960;
  background: rgba(14, 89, 96, 0.05);
}
.products-grid .filter-tabs .filter-tab.active {
  background: #0E5960;
  color: #ffffff;
  border-color: #0E5960;
}
.products-grid .products-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}
.products-grid .products-container .product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(14, 89, 96, 0.1);
}
.products-grid .products-container .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 106, 0, 0.2);
}
.products-grid .products-container .product-card .product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #FF6A00;
  color: #ffffff;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 1;
}
.products-grid .products-container .product-card .product-image {
  height: 200px;
  background: linear-gradient(135deg, rgba(14, 89, 96, 0.1), rgba(255, 106, 0, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.products-grid .products-container .product-card .product-image .product-icon {
  font-size: 3.5rem;
  color: #0E5960;
}
.products-grid .products-container .product-card .product-content {
  padding: 1.5rem;
}
.products-grid .products-container .product-card .product-content .product-category {
  color: #FF6A00;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: block;
}
.products-grid .products-container .product-card .product-content h3 {
  font-size: 1.3rem;
  color: #0E5960;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.products-grid .products-container .product-card .product-content .product-description {
  color: #16262A;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}
.products-grid .products-container .product-card .product-content .product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.products-grid .products-container .product-card .product-content .product-footer .product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FF6A00;
}
.products-grid .products-container .product-card .product-content .product-footer .product-price .currency {
  font-size: 0.9rem;
  color: #16262A;
  margin-right: 0.25rem;
}
.products-grid .products-container .product-card .product-content .product-footer .add-to-cart {
  background: #0E5960;
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.products-grid .products-container .product-card .product-content .product-footer .add-to-cart:hover {
  background: rgb(7.5090909091, 47.7363636364, 51.4909090909);
  transform: translateY(-2px);
}
.products-grid .products-container .product-card .product-content .product-footer .add-to-cart.in-cart {
  background: #FF6A00;
}

.benefits-section {
  background: linear-gradient(135deg, rgba(14, 89, 96, 0.03), rgba(255, 106, 0, 0.02));
  padding: 5rem 0;
}
.benefits-section .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.benefits-section .benefits-grid .benefit-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.benefits-section .benefits-grid .benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 106, 0, 0.1);
}
.benefits-section .benefits-grid .benefit-card .benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: rgba(14, 89, 96, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefits-section .benefits-grid .benefit-card .benefit-icon svg {
  width: 30px;
  height: 30px;
  color: #0E5960;
}
.benefits-section .benefits-grid .benefit-card .benefit-icon.orange {
  background: rgba(255, 106, 0, 0.1);
}
.benefits-section .benefits-grid .benefit-card .benefit-icon.orange svg {
  color: #FF6A00;
}
.benefits-section .benefits-grid .benefit-card h3 {
  color: #0E5960;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
.benefits-section .benefits-grid .benefit-card p {
  color: #16262A;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .products-hero {
    padding: 3rem 0 4rem;
  }
  .products-hero .products-hero-content {
    gap: 1.25rem;
  }
  .products-hero .products-hero-content h1 {
    font-size: 2rem;
  }
  .products-hero .products-hero-content p {
    font-size: 1rem;
  }
  .products-hero .products-hero-content .hero-stats {
    gap: 2rem;
    flex-wrap: wrap;
  }
  .products-grid {
    padding: 3rem 0;
  }
  .products-grid .products-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .benefits-section {
    padding: 3rem 0;
  }
  .benefits-section .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.features-bar {
  background-color: #0C3E43;
  padding: 1.3rem 0;
}
.features-bar .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  align-items: center;
}
.features-bar .feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #4A5D63;
  font-size: 0.95rem;
}
.features-bar .feature-item .feature-icon {
  width: 34px;
  height: 34px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.products-list {
  padding: 3.5rem 0 4.5rem;
  background-color: #FFFFFF;
}
.products-list .section-header {
  text-align: center;
  margin-bottom: 2.6rem;
}
.products-list .section-header h2 {
  font-size: 2rem;
}
.products-list .section-header p {
  color: #6B7C82;
  margin-top: 0.65rem;
}
.products-list .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
}

.product-card {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #D8E4E0;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 8px 30px rgba(12, 62, 67, 0.08);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(12, 62, 67, 0.14);
  border-color: rgba(12, 62, 67, 0.16);
}
.product-card .product-media {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, rgba(214, 239, 234, 0.7), rgba(245, 250, 249, 0.7));
  overflow: hidden;
}
.product-card .product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.product-card:hover .product-media img {
  transform: scale(1.04);
}
.product-card .product-body {
  padding: 1.4rem;
  display: grid;
  gap: 0.65rem;
  flex: 1;
}
.product-card .product-body h3 {
  font-size: 1.1rem;
  color: #0C3E43;
  min-height: 2.6rem;
}
.product-card .product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.product-card .product-rating .stars {
  color: #FF6A00;
  font-size: 0.9rem;
}
.product-card .product-rating .rating-value {
  color: #4A5D63;
  font-size: 0.9rem;
  font-weight: 600;
}
.product-card .product-btn {
  background: linear-gradient(135deg, #FF6A00 0%, rgb(214.2, 89.04, 0) 100%);
  color: #FFFFFF;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  transition: background-color 200ms ease, transform 200ms ease;
  width: 100%;
  display: inline-block;
}
.product-card .product-btn:hover, .product-card .product-btn:focus-visible {
  transform: translateY(-1px);
}

.guarantee-section {
  background-color: #FFFFFF;
  padding: 3.2rem 0;
}
.guarantee-section .guarantee-box {
  background: linear-gradient(135deg, rgba(12, 62, 67, 0.95), rgba(12, 62, 67, 0.9));
  border-radius: 22px;
  padding: 2.6rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 18px 50px rgba(12, 62, 67, 0.1);
}
.guarantee-section .guarantee-icon .guarantee-seal {
  width: 96px;
  height: 96px;
  background-color: #FFFFFF;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  color: #FF6A00;
  font-weight: 800;
  box-shadow: 0 8px 30px rgba(12, 62, 67, 0.08);
}
.guarantee-section .guarantee-content {
  color: #FFFFFF;
}
.guarantee-section .guarantee-content h2 {
  color: #ffffff;
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
  letter-spacing: 0.04em;
}
.guarantee-section .guarantee-content p {
  font-size: 1.02rem;
  opacity: 0.92;
}
.guarantee-section .guarantee-btn {
  background-color: #FFFFFF;
  color: #0C3E43;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  transition: transform 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 8px 30px rgba(12, 62, 67, 0.08);
}
.guarantee-section .guarantee-btn:hover, .guarantee-section .guarantee-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 50px rgba(12, 62, 67, 0.1);
}

.testimonials-section {
  background: rgba(214, 239, 234, 0.65);
  padding: 3.2rem 0 4rem;
}
.testimonials-section .section-header {
  text-align: center;
  margin-bottom: 2.4rem;
}
.testimonials-section .section-header h2 {
  font-size: 1.8rem;
}
.testimonials-section .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
}

.testimonial-card {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 1.8rem;
  box-shadow: 0 8px 30px rgba(12, 62, 67, 0.08);
  display: grid;
  gap: 1rem;
  border: 1px solid #D8E4E0;
}
.testimonial-card .testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.testimonial-card .testimonial-header strong {
  color: #0C3E43;
  font-size: 0.98rem;
}
.testimonial-card .testimonial-header .stars {
  color: #FF6A00;
  font-size: 0.9rem;
}
.testimonial-card p {
  color: #6B7C82;
  font-size: 0.98rem;
  line-height: 1.6;
}

.article-main {
  background: #FFFFFF;
  padding: 3.5rem 0 4.5rem;
}

.article-page {
  display: grid;
  gap: 2.8rem;
  max-width: 860px;
  margin: 0 auto;
}

.article-lede {
  display: grid;
  gap: 1rem;
}
.article-lede .article-tag {
  background-color: rgba(255, 106, 0, 0.14);
  color: #0C3E43;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
}
.article-lede h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}
.article-lede .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.4rem;
  color: #6B7C82;
  font-size: 0.95rem;
}
.article-lede .article-intro {
  font-size: 1.05rem;
  color: #6B7C82;
}

.article-hero {
  border-radius: 22px;
  overflow: hidden;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: 0 18px 50px rgba(12, 62, 67, 0.1);
}
.article-hero img {
  width: 100%;
  height: auto;
  display: block;
}
.article-hero figcaption {
  background-color: rgba(12, 62, 67, 0.05);
  color: #4A5D63;
  font-size: 0.9rem;
  padding: 0.9rem 1.2rem;
}

.article-content {
  display: grid;
  gap: 1.6rem;
  color: #6B7C82;
  font-size: 1.02rem;
  line-height: 1.75;
}
.article-content h2,
.article-content h3 {
  color: #0C3E43;
}
.article-content h2 {
  font-size: 1.65rem;
}
.article-content h3 {
  font-size: 1.22rem;
}
.article-content ul,
.article-content ol {
  padding-left: 1.2rem;
  display: grid;
  gap: 0.5rem;
}
.article-content li {
  position: relative;
}
.article-content blockquote {
  border-left: 4px solid #FF6A00;
  padding: 1rem 1.5rem;
  background-color: rgba(255, 106, 0, 0.1);
  color: #0C3E43;
  font-style: italic;
}
.article-content a {
  color: #FF6A00;
  font-weight: 700;
}

.article-highlight {
  background: linear-gradient(135deg, rgba(245, 250, 249, 0.95), rgba(214, 239, 234, 0.85));
  border: 1px solid rgba(255, 106, 0, 0.22);
  border-radius: 16px;
  padding: 1.4rem;
  display: grid;
  gap: 0.7rem;
}
.article-highlight h3 {
  margin: 0;
  font-size: 1.18rem;
  color: #0C3E43;
}
.article-highlight p {
  margin: 0;
  color: #232931;
}

.article-cta {
  background: linear-gradient(120deg, rgba(255, 106, 0, 0.14), rgba(214, 239, 234, 0.35));
  border-radius: 22px;
  padding: 1.8rem;
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(255, 106, 0, 0.2);
}
.article-cta h2 {
  color: #232931;
  font-size: 1.45rem;
}
.article-cta p {
  color: #6B7C82;
  color: #232931;
}
.article-cta .cta-button {
  width: fit-content;
}

.article-related {
  border-top: 1px solid rgba(216, 228, 224, 0.7);
  padding-top: 2rem;
  display: grid;
  gap: 1.4rem;
}
.article-related h2 {
  font-size: 1.35rem;
  color: #0C3E43;
}

.article-related-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.article-related-link {
  background-color: rgba(245, 250, 249, 0.9);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  color: #0C3E43;
  font-weight: 700;
  text-decoration: none;
  display: block;
  transition: background-color 200ms ease, transform 200ms ease, border-color 200ms ease;
  border: 1px solid rgba(255, 106, 0, 0.18);
}
.article-related-link span {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B7C82;
  margin-bottom: 0.35rem;
}
.article-related-link:hover, .article-related-link:focus-visible {
  background-color: rgba(214, 239, 234, 0.8);
  transform: translateY(-2px);
  border-color: rgba(255, 106, 0, 0.35);
}

.page-content {
  padding: 3rem 0 4rem;
  background-color: #FFFFFF;
}

.page-header {
  text-align: center;
  margin-bottom: 2.3rem;
  padding-bottom: 1.4rem;
  border-bottom: 2px solid rgba(255, 106, 0, 0.18);
}
.page-header h1 {
  font-size: 2.4rem;
  color: #0C3E43;
  font-weight: 800;
}

.content-wrapper {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 1.4rem;
}
.content-wrapper p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #6B7C82;
  margin-bottom: 1.2rem;
}
.content-wrapper p:last-child {
  margin-bottom: 0;
}
.content-wrapper a {
  color: #FF6A00;
  font-weight: 700;
  text-decoration: none;
  transition: color 200ms ease;
}
.content-wrapper a:hover, .content-wrapper a:focus-visible {
  color: rgb(214.2, 89.04, 0);
  text-decoration: underline;
}

.product-page {
  background-color: #F6F8F7;
}

.product-hero {
  padding: 3.2rem 0;
  background: linear-gradient(135deg, rgba(245, 250, 249, 0.85), rgba(214, 239, 234, 0.8));
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.8rem;
  align-items: center;
}

.product-hero-image {
  position: relative;
  text-align: center;
  padding: 1.5rem;
  background: #FFFFFF;
  border-radius: 22px;
  box-shadow: 0 8px 30px rgba(12, 62, 67, 0.08);
  border: 1px solid #D8E4E0;
}

.product-hero-image img {
  max-width: 420px;
  margin: 0 auto;
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: rgba(255, 106, 0, 0.15);
  color: #0C3E43;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-hero-content h1 {
  font-size: 2.4rem;
  color: #0C3E43;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.product-subtitle {
  font-size: 1.15rem;
  color: #FF6A00;
  margin-bottom: 1.3rem;
  font-weight: 700;
}

.product-description {
  margin-bottom: 1.6rem;
}
.product-description p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #0C3E43;
}

.product-benefits h3 {
  font-size: 1.22rem;
  color: #0C3E43;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.product-benefits ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  list-style: none;
}

.product-benefits li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem;
  background-color: rgba(245, 250, 249, 0.9);
  border-radius: 10px;
  color: #0C3E43;
  font-weight: 700;
  border: 1px solid #D8E4E0;
}
.product-benefits li::before {
  content: "";
  width: 1.1rem;
  height: 1.1rem;
  display: inline-block;
  background: url("../img/check.svg") no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}

.product-checkout {
  padding: 3.2rem 0;
}

.checkout-box {
  background: linear-gradient(135deg, #eff7f2 0%, #e1f1ea 100%);
  border-radius: 22px;
  padding: 2.4rem;
  box-shadow: 0 8px 30px rgba(12, 62, 67, 0.08);
}

.checkout-box h2 {
  text-align: center;
  font-size: 2rem;
  color: #0C3E43;
  margin-bottom: 2rem;
  font-weight: 800;
}

.checkout-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 920px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 1.8rem;
  border-radius: 22px;
  box-shadow: 0 8px 30px rgba(12, 62, 67, 0.08);
  border: 1px solid #D8E4E0;
}

.product-package {
  position: relative;
  text-align: center;
  padding: 1.5rem;
}

.package-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #FF6A00 0%, rgb(229.5, 95.4, 0) 100%);
  color: #FFFFFF;
  padding: 0.7rem 1.4rem;
  border-radius: 2rem;
  font-size: 1.05rem;
  font-weight: 800;
  box-shadow: 0 8px 30px rgba(12, 62, 67, 0.08);
}

.package-image {
  max-width: 250px;
  margin: 2rem auto 0;
}

.package-details {
  text-align: center;
}

.package-title {
  font-size: 1.7rem;
  color: #0C3E43;
  margin-bottom: 1rem;
  font-weight: 800;
}

.package-title span {
  color: #FF6A00;
  font-weight: 800;
}

.package-pricing {
  margin-bottom: 1.6rem;
}

.price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
  font-weight: 800;
  color: #0C3E43;
}

.price-label {
  background: rgba(255, 106, 0, 0.16);
  color: #0C3E43;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.price-save {
  color: #FF6A00;
}

.price-value {
  font-size: 3rem;
}

.price-unit {
  font-size: 1.2rem;
  color: #4A5D63;
}

.price-details {
  font-size: 1rem;
}

.price-details p {
  margin-bottom: 0.35rem;
  color: #6B7C82;
}

.price-old {
  text-decoration: line-through;
  color: #9aa8b0;
  margin-right: 0.35rem;
}

.shipping-info {
  font-size: 0.95rem;
  color: #4A5D63;
}

.checkout-btn {
  width: 100%;
  background: linear-gradient(135deg, #FF6A00 0%, rgb(224.4, 93.28, 0) 100%);
  color: #FFFFFF;
  border: none;
  padding: 1.05rem 2rem;
  border-radius: 10px;
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(12, 62, 67, 0.08);
  margin-bottom: 1.1rem;
}
.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(12, 62, 67, 0.1);
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem;
  background-color: rgba(245, 250, 249, 0.9);
  border-radius: 10px;
  font-size: 1rem;
  color: #0C3E43;
  border: 1px solid #D8E4E0;
}

.feature-icon {
  color: #FF6A00;
  font-weight: 800;
  font-size: 1.15rem;
}

.product-guarantee {
  padding: 3rem 0 3.5rem;
  background-color: #FFFFFF;
}

.product-guarantee .guarantee-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  text-align: center;
  padding: 1.8rem;
  background-color: rgba(245, 250, 249, 0.9);
  border-radius: 22px;
  border: 1px solid #D8E4E0;
}

.product-guarantee .guarantee-seal {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #FF6A00 0%, rgb(224.4, 93.28, 0) 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 8px 30px rgba(12, 62, 67, 0.08);
}

.product-guarantee .guarantee-text h2 {
  font-size: 1.6rem;
  color: #0C3E43;
  margin-bottom: 0.4rem;
  font-weight: 800;
}

.product-guarantee .guarantee-text p {
  font-size: 1.02rem;
  color: #6B7C82;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero {
    padding: 4.5rem 0 5rem;
  }
  .site-footer .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
  .article-main {
    padding: 4rem 0 5rem;
  }
  .article-content {
    font-size: 1.05rem;
  }
  .article-cta {
    padding: 2rem 2.3rem;
  }
  .product-hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  .checkout-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .package-details {
    text-align: left;
  }
  .price-main {
    justify-content: flex-start;
  }
  .product-guarantee .guarantee-content {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .primary-nav {
    gap: 1rem;
  }
  .hero {
    padding: 3.5rem 0 4rem;
  }
  .article-list .grid {
    gap: 1.4rem;
  }
  .features-bar .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .guarantee-section .guarantee-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.4rem;
  }
  .guarantee-section .guarantee-icon .guarantee-seal {
    margin: 0 auto;
  }
  .product-benefits ul {
    grid-template-columns: 1fr;
  }
  .checkout-box {
    padding: 1.5rem;
  }
  .checkout-content {
    padding: 1.4rem;
  }
  .price-value {
    font-size: 2.6rem;
  }
  .product-guarantee .guarantee-content {
    flex-direction: column;
  }
  .site-header {
    position: relative;
  }
}

/*# sourceMappingURL=style.css.map */
