:root {
  --green-dark: #0f4f2a;
  --green-hero: #0f572f;
  --green-card: #114f28;
  --green-text: #1d6b3f;
  --yellow: #efb81e;
  --yellow-strong: #ffbc00;
  --orange: #ff7a1a;
  --bg-light: #f7f8f6;
  --bg-white: #fbfbfa;
  --text-dark: #0d1820;
  --text-soft: #63727b;
  --line: #d9ddd7;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  --radius: 18px;
  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background: #ffffff;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font: inherit;
  border: 0;
  background: transparent;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

/* HEADER */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding-top: 14px;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  color: #f5f1de;
}

.brand-text strong {
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.brand-text span {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.82;
  letter-spacing: 0.03em;
}

.main-nav {
  display: flex;
  gap: 34px;
  align-items: center;
  margin-left: auto;
}

.main-nav a {
  color: #ece8d8;
  font-weight: 700;
  font-size: 1rem;
}

.header-cta {
  background: var(--yellow);
  color: #121212;
  font-weight: 800;
  padding: 14px 22px;
  border-radius: 10px;
}

.menu-toggle {
  display: none;
  color: white;
  font-size: 2rem;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(11, 26, 17, 0.42), rgba(11, 26, 17, 0.42)),
    url("../assets/images/hero-bg.jpg") center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 22, 15, 0.64) 0%, rgba(10, 22, 15, 0.42) 48%, rgba(10, 22, 15, 0.18) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(226, 184, 25, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 184, 25, 0.09) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.35;
}

.hero-bottom-glow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -120px;
  height: 260px;
  background:
    radial-gradient(circle at 20% 50%, rgba(0, 160, 90, 0.30), transparent 35%),
    radial-gradient(circle at 50% 60%, rgba(0, 160, 90, 0.22), transparent 28%),
    radial-gradient(circle at 80% 50%, rgba(0, 160, 90, 0.30), transparent 35%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 40px;
  padding-top: 110px;
  padding-bottom: 70px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--yellow);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.section-kicker span {
  width: 64px;
  height: 1px;
  background: var(--yellow);
}

.section-kicker-left span:last-child {
  display: none;
}

.center {
  display: flex;
  justify-content: center;
  margin-inline: auto;
  text-align: center;
}

.hero-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(4.2rem, 8vw, 6.8rem);
  line-height: 0.92;
  color: #f3f0e5;
  max-width: 760px;
}

.hero-title span {
  color: var(--yellow);
}

.hero-title small {
  display: block;
  color: rgba(243, 240, 229, 0.88);
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin-top: 14px;
  font-weight: 700;
}

.hero-text {
  margin-top: 22px;
  max-width: 720px;
  font-size: 1.18rem;
  line-height: 1.55;
  color: rgba(244, 242, 232, 0.90);
  font-weight: 600;
}

.highlight-yellow {
  color: var(--yellow);
}

.hero-alert {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(239, 184, 30, 0.28);
  background: rgba(30, 44, 25, 0.28);
  border-radius: 10px;
  color: rgba(244, 242, 232, 0.78);
  font-size: 0.96rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.05rem;
}

.btn-yellow {
  background: var(--yellow);
  color: #121212;
  box-shadow: 0 8px 22px rgba(239, 184, 30, 0.25);
}

.btn-glass {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 46px;
}

.stat-item strong {
  display: block;
  color: var(--yellow);
  font-family: "Oswald", sans-serif;
  font-size: 2.3rem;
  line-height: 1;
}

.stat-item span {
  color: rgba(241, 238, 225, 0.72);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
}

.hero-logo-card {
  width: 300px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-card img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
}

.hero-rating {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(243, 240, 229, 0.82);
  font-weight: 700;
}

.stars {
  color: var(--yellow);
  letter-spacing: 3px;
}

.hero-scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.72);
  font-size: 2rem;
  z-index: 3;
}

/* LIGHT SECTIONS */
.light-section {
  background: #fbfbfa;
}

.section {
  padding: 92px 0;
}

.section-title {
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: 1;
  margin-bottom: 16px;
}

.section-subtitle {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--text-soft);
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card,
.mini-service-card {
  position: relative;
  background: #fbfbfa;
  border: 1px solid #d6ddd5;
  border-radius: 16px;
  padding: 26px 24px;
  min-height: 224px;
}

.service-card--featured {
  background: #115326;
  color: #f6f4ea;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.service-card--featured p,
.service-card--featured h4,
.service-card--featured a {
  color: #f3efe0;
}

.service-card--urgent {
  border-color: #f0c3a3;
}

.badge-top {
  position: absolute;
  top: -10px;
  left: 24px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
}

.badge-yellow {
  background: var(--yellow);
  color: #111;
}

.badge-orange {
  background: var(--orange);
  color: #fff;
}

.service-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #e7ece6;
  color: #244c34;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.service-card--featured .service-icon {
  background: rgba(255, 196, 0, 0.14);
  color: var(--yellow);
}

.service-card h3,
.mini-service-card h3 {
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  line-height: 1.05;
  margin-bottom: 10px;
}

.service-card h4,
.mini-service-card h4 {
  color: var(--yellow-strong);
  font-size: 1rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.service-card p,
.mini-service-card p {
  color: #5d6d75;
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 20px;
}

.service-card a,
.mini-service-card a {
  font-weight: 700;
  color: #66767b;
}

.service-card--featured a {
  color: var(--yellow);
}

.secondary-services {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* REQUISITOS */
.dotted-bg {
  background:
    radial-gradient(circle, rgba(0,0,0,0.06) 1px, transparent 1px),
    #fbfbfa;
  background-size: 18px 18px;
}

.requirements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: start;
}

.subsection-title {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  margin-bottom: 22px;
}

.req-card,
.habit-card {
  background: #fbfbfa;
  border: 1px solid #d6ddd5;
  border-radius: 14px;
  padding: 18px 18px 18px 22px;
  margin-bottom: 12px;
}

.req-card strong,
.habit-card strong {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.req-card p,
.habit-card p {
  color: #68787f;
  line-height: 1.5;
}

.club-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 26px;
}

.club-image-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.club-caption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: white;
}

.club-caption strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
}

.club-caption span {
  font-weight: 600;
}

.level-1 { border-left: 4px solid #2ac65f; }
.level-2 { border-left: 4px solid #e3b11e; }
.level-3 { border-left: 4px solid #dca815; }

.changes-box {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid #efc8a6;
  background: #fffaf7;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.changes-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.changes-title-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.changes-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: #ffe7d4;
  border-radius: 10px;
  color: #ff7a1a;
  font-weight: 900;
}

.changes-title-wrap h3 {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
}

.changes-title-wrap p {
  color: #66767b;
}

.changes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.change-item {
  background: #fff;
  border: 1px solid #ead7ca;
  border-radius: 14px;
  padding: 18px;
}

.change-item strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 18px;
}

.approved-badge {
  position: absolute;
  right: -10px;
  bottom: -24px;
  background: var(--yellow);
  color: #111;
  padding: 18px 24px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.approved-badge strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
}

.approved-badge span {
  font-weight: 700;
}

.about-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 20px;
}

.about-title span {
  color: var(--green-text);
}

.about-text {
  color: #5f7077;
  font-size: 1.16rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #e7ece6;
  color: #1a5730;
  font-weight: 900;
}

.feature-item strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.feature-item p {
  color: #728086;
  line-height: 1.45;
}

.transparency-box {
  margin-top: 64px;
  padding: 40px;
  border-radius: 20px;
  background: #13562c;
  color: #f3f0e6;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.transparency-box::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 240px;
  height: 240px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.transparency-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(255, 196, 0, 0.14);
  color: var(--yellow);
  border-radius: 12px;
  font-weight: 900;
  font-size: 1.5rem;
}

.transparency-box h3 {
  font-family: "Oswald", sans-serif;
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.transparency-box p {
  font-size: 1.18rem;
  line-height: 1.65;
  max-width: 1040px;
}

.yellow-text {
  color: var(--yellow);
}

/* PLANS */
.grid-bg {
  background-image:
    linear-gradient(#e9ece6 1px, transparent 1px),
    linear-gradient(90deg, #e9ece6 1px, transparent 1px);
  background-size: 48px 48px;
  background-color: #fbfbfa;
}

.plans-grid {
  display: grid;
  gap: 28px;
  margin: 0 auto;
}

.plans-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1280px;
}

.plan-payment-highlight {
  color: #1f6d3f;
  font-weight: 800;
  margin-bottom: 6px;
}

.plan-installments {
  color: #5f7077;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 18px;
}

.plan-installments strong {
  color: #0d1820;
}

.plan-card-featured .plan-payment-highlight,
.plan-card-featured .plan-installments,
.plan-card-featured .plan-installments strong {
  color: #f3ead2;
}

.plan-card {
  background: #ffffff;
  border: 1px solid #d8ddd7;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.05);
  position: relative;
}

.plan-card-featured {
  background: #135629;
  color: #f7f3e9;
  border-color: #dca815;
}

.featured-strip {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: #111;
  padding: 4px 18px;
  border-radius: 0 0 12px 12px;
  font-size: 0.95rem;
  font-weight: 900;
}

.plan-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.plan-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #ecf0ea;
  color: #235135;
  font-weight: 900;
}

.plan-card-featured .plan-icon {
  background: rgba(255, 196, 0, 0.14);
  color: var(--yellow);
}

.plan-kicker {
  display: inline-block;
  color: var(--yellow);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.3em;
}

.plan-head h3 {
  font-family: "Oswald", sans-serif;
  font-size: 2.1rem;
  line-height: 1;
}

.plan-price {
  font-family: "Oswald", sans-serif;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 18px;
}

.plan-price small {
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
  margin-right: 6px;
}

.plan-price span {
  font-size: 1.8rem;
}

.plan-desc {
  color: #63727b;
  font-size: 1.1rem;
  line-height: 1.55;
  margin-bottom: 22px;
}

.plan-card-featured .plan-desc,
.plan-card-featured .plan-list li {
  color: #efe9d8;
}

.plan-list {
  list-style: none;
  margin-bottom: 24px;
}

.plan-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  line-height: 1.5;
  font-size: 1.08rem;
}

.plan-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-text);
  font-weight: 900;
}

.plan-card-featured .plan-list li::before {
  color: var(--yellow);
}

.btn-green-full,
.btn-yellow-full {
  width: 100%;
}

.btn-green-full {
  background: #14592b;
  color: #fff;
}

.btn-yellow-full {
  background: var(--yellow);
  color: #111;
}

.plans-note {
  margin-top: 28px;
  text-align: center;
  color: #7a878c;
  font-size: 0.95rem;
}

/* CONTACT */
.contact-section {
  position: relative;
  background: #13582d;
  color: #f5f1e8;
  padding: 88px 0;
  overflow: hidden;
}

.contact-section::before,
.contact-section::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.contact-section::before {
  left: -100px;
  bottom: -110px;
}

.contact-section::after {
  right: -100px;
  top: -110px;
}

.contact-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-kicker {
  color: var(--yellow);
}

.contact-content h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

.contact-content p {
  font-size: 1.18rem;
  color: rgba(245, 241, 232, 0.82);
  line-height: 1.6;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  background: var(--yellow);
  color: #111;
  font-weight: 900;
  padding: 16px 38px;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(239, 184, 30, 0.22);
}

.contact-meta {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 34px;
  color: rgba(245, 241, 232, 0.74);
  font-size: 1rem;
}

/* STORE */
.store-strip {
  background:
    linear-gradient(rgba(7, 16, 15, 0.94), rgba(7, 16, 15, 0.94)),
    linear-gradient(#1e2c28 1px, transparent 1px),
    linear-gradient(90deg, #1e2c28 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  color: #f0eee6;
  padding: 58px 0;
}

.store-wrap {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: center;
}

.store-info {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  max-width: 620px;
}

.store-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  background: rgba(239,184,30,0.12);
  border-radius: 14px;
  color: var(--yellow);
  font-size: 1.4rem;
}

.store-kicker {
  display: block;
  color: rgba(239,184,30,0.82);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  margin-bottom: 8px;
}

.store-info h3 {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  margin-bottom: 8px;
}

.store-info p {
  color: #aab6b0;
  line-height: 1.6;
}

.store-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.store-btn {
  background: var(--yellow);
  color: #111;
  padding: 16px 30px;
  border-radius: 8px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(239, 184, 30, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  white-space: normal;
  text-align: center;
}

.store-btn-instagram {
  background: rgba(255, 255, 255, 0.08);
  color: #f3efe3;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.store-btn-instagram:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* FOOTER */
.site-footer {
  background:
    linear-gradient(rgba(7, 16, 15, 0.98), rgba(7, 16, 15, 0.98)),
    linear-gradient(#1e2c28 1px, transparent 1px),
    linear-gradient(90deg, #1e2c28 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  color: #d5dbd6;
  padding: 34px 0 28px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
}

.footer-brand span {
  font-weight: 600;
  color: #99a59f;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #d4d9d5;
  font-weight: 600;
}

.footer-bottom {
  padding-top: 24px;
}

.footer-bottom p {
  color: #909b96;
  font-size: 0.96rem;
}

/* RESPONSIVO */
@media (max-width: 1100px) {
  .hero-content,
  .requirements-grid,
  .about-grid,
  .plans-grid,
  .store-wrap {
    grid-template-columns: 1fr;
    display: grid;
  }

  .store-wrap {
    gap: 24px;
  }

  .hero-right {
    margin-top: 20px;
  }

  .services-grid,
  .secondary-services,
  .changes-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .hero-content {
    padding-top: 130px;
  }

  .hero-stats,
  .contact-meta,
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-features,
  .services-grid,
  .secondary-services,
  .changes-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

  .hero-title {
    font-size: 3.3rem;
  }

  .hero-title small {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn,
  .contact-btn {
    width: 100%;
  }

  .hero-logo-card {
    width: 100%;
    max-width: 280px;
  }

  .transparency-box {
    grid-template-columns: 1fr;
  }
}
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.42);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}

.whatsapp-float span {
  line-height: 1;
}

@media (max-width: 640px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 52px;
    padding: 0 16px;
  }

  .whatsapp-float span {
    display: none;
  }
}

@media (max-width: 768px) {
  .store-wrap {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .store-info {
    max-width: 100%;
  }

  .store-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .store-btn,
  .store-btn-instagram {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 16px 18px;
    text-align: center;
    justify-content: center;
    white-space: normal;
    word-break: break-word;
  }

  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
    width: 100%;
  }

  .footer-nav a {
    word-break: break-word;
  }

  .footer-bottom p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .store-info h3 {
    font-size: 2rem;
    line-height: 1.1;
  }

  .store-info p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .site-footer,
  .store-strip {
    overflow-x: hidden;
  }

  body,
  html {
    overflow-x: hidden;
  }
}