/* =========================================
   RESET / BASE
========================================= */

:root {
  --red: #c1121f;
  --red-light: #ff3448;
  --red-dark: #8f0712;
  --red-deep: #3a0004;

  --black: #0d0d10;
  --black-soft: #17171c;
  --dark-card: #111116;

  --gray: #63636c;
  --gray-soft: #9b9ba5;
  --gray-light: #f5f5f7;

  --white: #ffffff;
  --off-white: #fbfbfc;

  --border: rgba(18, 18, 20, 0.08);
  --border-light: rgba(255, 255, 255, 0.12);
  --border-red: rgba(193, 18, 31, 0.25);

  --shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
  --shadow-soft: 0 14px 35px rgba(0, 0, 0, 0.08);
  --shadow-red: 0 22px 45px rgba(193, 18, 31, 0.28);

  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;

  --instagram: #e1306c;
  --whatsapp: #25d366;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}

body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--off-white);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

button {
  cursor: pointer;
}

ul {
  list-style: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* =========================================
   BUTTONS
========================================= */

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 15px 24px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 900;
  transition: 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  color: var(--white);
  background:
    linear-gradient(135deg, var(--red-light), var(--red) 48%, var(--red-dark));
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(193, 18, 31, 0.36);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
}

.btn-light {
  color: var(--red);
  background: var(--white);
  border-color: var(--white);
}

.btn-light:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(255, 255, 255, 0.22);
}

.btn-ghost {
  color: var(--black);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(0, 0, 0, 0.08);
}

.btn-ghost:hover {
  color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.btn-ghost-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-ghost-light:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.18);
}

/* =========================================
   HEADER
========================================= */

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: 0.25s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.07);
}

.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 240px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 16px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  color: var(--red-dark);
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 1px;
}

.brand-text span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 6px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu a {
  position: relative;
  color: #25252b;
  font-size: 14px;
  font-weight: 850;
  transition: 0.25s;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  border-radius: 20px;
  background: var(--red);
  transition: 0.25s;
}

.menu a:hover {
  color: var(--red);
}

.menu a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-actions .btn {
  min-height: 46px;
  padding: 12px 18px;
  font-size: 14px;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.menu-toggle span {
  width: 22px;
  height: 3px;
  border-radius: 20px;
  background: var(--red);
  transition: 0.25s;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================================
   HERO
========================================= */

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 90px;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(255, 52, 72, 0.32), transparent 32%),
    radial-gradient(circle at 80% 15%, rgba(193, 18, 31, 0.32), transparent 30%),
    linear-gradient(135deg, #08080b 0%, #121217 48%, #350006 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.blur-one {
  width: 360px;
  height: 360px;
  left: -160px;
  top: 120px;
  background: rgba(255, 52, 72, 0.18);
}

.blur-two {
  width: 420px;
  height: 420px;
  right: -190px;
  bottom: -120px;
  background: rgba(193, 18, 31, 0.22);
}

.grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 58px;
}

.hero-content {
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red-light);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 3px;
  border-radius: 20px;
  background: currentColor;
}

.eyebrow.light {
  color: var(--white);
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(42px, 5.5vw, 76px);
  line-height: 0.96;
  letter-spacing: -3px;
  margin-bottom: 24px;
}

.hero h1 span {
  display: block;
  background: linear-gradient(135deg, #ffffff, #ff6a78 34%, #ff263b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-stats {
  max-width: 680px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-stats div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.hero-stats strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 5px;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 700;
}

/* HERO VISUAL */

.hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.device-card {
  position: relative;
  z-index: 4;
  width: min(520px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  transform: rotate(-2deg);
}

.device-top {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.device-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--red-light);
}

.device-screen {
  padding: 22px;
}

.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.mock-header div {
  width: 120px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.mock-header span {
  width: 70px;
  height: 28px;
  border-radius: 999px;
  background: var(--red);
}

.mock-hero {
  min-height: 190px;
  padding: 28px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.24), transparent 30%),
    linear-gradient(135deg, var(--red-light), var(--red-dark));
  margin-bottom: 18px;
}

.mock-hero span,
.mock-hero h3,
.mock-hero p,
.mock-hero button {
  display: block;
  border-radius: 999px;
}

.mock-hero span {
  width: 90px;
  height: 9px;
  background: rgba(255, 255, 255, 0.72);
  margin-bottom: 18px;
}

.mock-hero h3 {
  width: 78%;
  height: 18px;
  background: rgba(255, 255, 255, 0.92);
  margin-bottom: 12px;
}

.mock-hero p {
  width: 58%;
  height: 10px;
  background: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
}

.mock-hero button {
  width: 130px;
  height: 36px;
  background: var(--white);
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mock-cards div {
  height: 108px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.floating-card {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.24);
  color: var(--black);
  font-weight: 900;
  backdrop-filter: blur(16px);
}

.floating-card i {
  color: var(--red);
}

.floating-card-one {
  left: 0;
  top: 86px;
}

.floating-card-two {
  right: 0;
  bottom: 115px;
}

.floating-card-three {
  left: 42px;
  bottom: 42px;
}

/* =========================================
   GLOBAL SECTIONS
========================================= */

section {
  padding: 92px 0;
}

.section-head {
  max-width: 830px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: clamp(30px, 3.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -1.7px;
  margin-bottom: 16px;
}

.section-head p {
  color: var(--gray);
  font-size: 17px;
  line-height: 1.75;
}

/* =========================================
   GENERIC CARDS
========================================= */

.audience-card,
.service-card,
.model-card,
.price-card,
.external-card,
.process-card,
.testimonial-card,
details {
  position: relative;
  isolation: isolate;
}

.audience-card::before,
.service-card::before,
.external-card::before,
.process-card::before,
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(193, 18, 31, 0.16), transparent 42%);
  opacity: 0;
  transition: 0.25s;
}

.audience-card:hover::before,
.service-card:hover::before,
.external-card:hover::before,
.process-card:hover::before,
.testimonial-card:hover::before {
  opacity: 1;
}

/* =========================================
   AUDIENCE
========================================= */

.audience-section {
  background: var(--off-white);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.audience-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: 0.25s;
}

.audience-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--border-red);
}

.audience-card i {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-light), var(--red-dark));
  font-size: 26px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-red);
}

.audience-card h3 {
  font-size: 21px;
  margin-bottom: 12px;
}

.audience-card p {
  color: var(--gray);
  line-height: 1.7;
}

/* =========================================
   SERVICES
========================================= */

.services-section,
.process-section,
.faq-section {
  background:
    radial-gradient(circle at 15% 0%, rgba(193, 18, 31, 0.06), transparent 28%),
    linear-gradient(180deg, #ffffff, #f7f7f9);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  min-height: 275px;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: 0.25s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--border-red);
}

.service-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-light), var(--red-dark));
  font-size: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-red);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 15px;
}

/* =========================================
   MODELS
========================================= */

.models-section {
  background: var(--off-white);
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.model-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: 0.25s;
}

.model-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.model-cover {
  height: 270px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.model-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.model-card:hover .model-cover img {
  transform: scale(1.06);
}

.model-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 15%, rgba(0, 0, 0, 0.82)),
    linear-gradient(135deg, rgba(193, 18, 31, 0.38), transparent 48%);
  z-index: 1;
}

.model-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.model-overlay span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.model-overlay h3 {
  font-size: 30px;
  line-height: 1.05;
  margin-top: 8px;
}

.model-body {
  padding: 26px;
}

.model-body h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.model-body p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 15px;
}

/* =========================================
   PRICING
========================================= */

.pricing-section {
  background:
    radial-gradient(circle at 10% 5%, rgba(193, 18, 31, 0.08), transparent 28%),
    radial-gradient(circle at 90% 20%, rgba(193, 18, 31, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff, #f7f7f9);
}

.pricing-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: 0.25s;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.price-card.featured {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(135deg, var(--red-light), var(--red) 42%, var(--red-deep));
  border-color: transparent;
  box-shadow: var(--shadow-red);
}

.popular-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--red);
  background: var(--white);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.price-label {
  width: fit-content;
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 14px;
  margin-bottom: 20px;
  color: var(--red);
  background: #fff0f1;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.price-card.featured .price-label {
  color: var(--red);
  background: var(--white);
}

.price-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 18px;
}

.price strong {
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -2px;
}

.price span {
  color: var(--gray);
  font-weight: 900;
  margin-bottom: 7px;
}

.price-card.featured .price span {
  color: rgba(255, 255, 255, 0.78);
}

.price-card p {
  color: var(--gray);
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 24px;
}

.price-card.featured p {
  color: rgba(255, 255, 255, 0.86);
}

.price-card ul {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #2d2d33;
  font-weight: 800;
  line-height: 1.45;
}

.price-card.featured li {
  color: rgba(255, 255, 255, 0.92);
}

.price-card li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-light), var(--red-dark));
  font-size: 13px;
  font-weight: 900;
}

.price-card.featured li::before {
  color: var(--red);
  background: var(--white);
}

.price-card .btn {
  margin-top: auto;
  width: 100%;
}

.payment-note {
  max-width: 940px;
  margin: 28px auto 0;
  padding: 22px 24px;
  border-radius: 22px;
  color: #303036;
  background: #fff6f6;
  border: 1px solid rgba(193, 18, 31, 0.16);
  text-align: center;
  font-weight: 800;
  line-height: 1.6;
}

.payment-note strong {
  color: var(--red);
}

/* =========================================
   EXTERNAL COSTS
========================================= */

.external-section {
  background: var(--off-white);
}

.external-costs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.external-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: 0.25s;
}

.external-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--border-red);
}

.external-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--red);
}

.external-card p {
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 18px;
}

.external-card strong {
  display: block;
  line-height: 1.7;
  color: var(--black);
}

.external-warning {
  margin-top: 28px;
  padding: 24px 26px;
  border-radius: 24px;
  background: #fff6f6;
  border: 1px solid rgba(193, 18, 31, 0.14);
  color: #33333a;
  line-height: 1.75;
  font-weight: 750;
}

.external-warning strong {
  color: var(--red);
}

/* =========================================
   PROCESS
========================================= */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}

.process-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: 0.25s;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--border-red);
}

.process-card span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-light), var(--red-dark));
  font-weight: 900;
  margin-bottom: 22px;
  box-shadow: var(--shadow-red);
}

.process-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.process-card p {
  color: var(--gray);
  line-height: 1.7;
}

/* =========================================
   TESTIMONIALS
========================================= */

.testimonials-section {
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: 0.25s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--border-red);
}

.stars {
  color: var(--red);
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.testimonial-card p {
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 18px;
}

.testimonial-card strong {
  color: var(--black);
}

/* =========================================
   QUOTE FORM
========================================= */

.quote-section {
  background:
    radial-gradient(circle at 85% 15%, rgba(193, 18, 31, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff, #f7f7f9);
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: flex-start;
}

.quote-info {
  position: sticky;
  top: 115px;
  padding: 38px;
  border-radius: 32px;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(135deg, var(--red-light), var(--red) 42%, var(--red-deep));
  box-shadow: var(--shadow-red);
}

.quote-info h2 {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -1.2px;
  margin-bottom: 18px;
}

.quote-info p {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.78;
  margin-bottom: 26px;
}

.selected-plan-box {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.selected-plan-box small {
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 900;
  opacity: 0.8;
}

.selected-plan-box strong {
  display: block;
  font-size: 24px;
  margin-bottom: 6px;
}

.selected-plan-box span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.quote-form {
  padding: 34px;
  border-radius: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  color: #25252b;
  font-size: 14px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  outline: none;
  border: 1px solid #dedee5;
  border-radius: 16px;
  padding: 15px;
  background: var(--white);
  color: var(--black);
  font-size: 15px;
  transition: 0.2s;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(193, 18, 31, 0.62);
  box-shadow: 0 0 0 4px rgba(193, 18, 31, 0.09);
}

.form-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.form-actions .btn {
  border: none;
}

/* =========================================
   FAQ
========================================= */

.faq-grid {
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

details {
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 900;
  color: var(--black);
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--red);
  font-size: 24px;
  line-height: 1;
}

details[open] summary::after {
  content: "−";
}

details p {
  padding: 0 24px 24px;
  color: var(--gray);
  line-height: 1.75;
}

/* =========================================
   CONTACT FINAL
========================================= */

.contact-section {
  padding: 0;
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(135deg, var(--red-light), var(--red) 42%, var(--red-deep));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 58px 0;
}

.contact-grid h2 {
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.08;
  letter-spacing: -1.2px;
  margin-bottom: 10px;
}

.contact-grid p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  line-height: 1.65;
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================================
   FOOTER
========================================= */

.footer {
  padding: 62px 0 24px;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(255, 52, 72, 0.20), transparent 30%),
    linear-gradient(135deg, #08080b, #2e0004 64%, #6d0009);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr 0.9fr 1fr;
  gap: 34px;
  margin-bottom: 42px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-brand div {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-weight: 900;
}

.footer-brand span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
  margin-top: 5px;
}

.footer h3 {
  font-size: 15px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.footer p,
.footer li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.75;
}

.footer ul {
  display: grid;
  gap: 9px;
}

.footer a {
  transition: 0.2s;
}

.footer a:hover {
  color: var(--white);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
  transition: 0.25s;
}

.socials a:hover {
  color: var(--red);
  background: var(--white);
  transform: translateY(-3px);
}

.copy {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 22px;
  text-align: center;
  color: rgba(255, 255, 255, 0.70);
  font-size: 13px;
}

/* =========================================
   FLOATING BUTTONS
========================================= */

.floating-buttons {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  display: grid;
  gap: 12px;
}

.float-btn {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-size: 28px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.22);
  transition: 0.25s;
}

.float-btn:hover {
  transform: translateY(-5px) scale(1.03);
}

.float-whatsapp {
  background: var(--whatsapp);
}

.float-instagram {
  background: linear-gradient(135deg, #833ab4, #e1306c, #f77737);
}

/* =========================================
   ANIMAÇÕES
========================================= */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.75s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVO
========================================= */

@media (max-width: 1080px) {
  .nav-actions,
  .menu {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .menu.active {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 92px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }

  .menu.active a {
    width: 100%;
    padding: 14px 12px;
    border-radius: 14px;
  }

  .menu.active a:hover {
    background: #fff1f2;
  }

  .hero-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    text-align: center;
  }

  .hero p,
  .hero h1,
  .hero-stats {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 450px;
    max-width: 640px;
    margin: 0 auto;
  }

  .quote-info {
    position: static;
  }

  .services-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid,
  .models-grid,
  .testimonials-grid,
  .audience-grid,
  .external-costs {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 86px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav {
    height: 76px;
  }

  .brand {
    min-width: auto;
    gap: 10px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
    border-radius: 13px;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .brand-text span {
    font-size: 9px;
  }

  .menu.active {
    top: 82px;
  }

  .hero {
    padding: 54px 0 58px;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 48px);
    line-height: 1.02;
    letter-spacing: -1.6px;
    margin-bottom: 18px;
  }

  .hero p {
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 26px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 1px;
    margin-bottom: 14px;
  }

  .eyebrow::before {
    width: 26px;
  }

  .hero-actions,
  .form-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn,
  .form-actions .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .hero-stats,
  .hero-badges,
  .services-grid,
  .process-grid,
  .pricing-grid,
  .models-grid,
  .testimonials-grid,
  .audience-grid,
  .external-costs,
  .form-grid,
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 10px;
  }

  .hero-stats div {
    padding: 15px;
  }

  .hero-stats strong {
    font-size: 20px;
  }

  .hero-visual {
    min-height: auto;
    display: block;
    margin-top: 36px;
  }

  .device-card {
    transform: none;
    border-radius: 28px;
  }

  .device-screen {
    padding: 18px;
  }

  .mock-hero {
    min-height: 155px;
    padding: 22px;
  }

  .mock-cards {
    grid-template-columns: 1fr;
  }

  .mock-cards div {
    height: 58px;
  }

  .floating-card {
    position: static;
    margin-top: 12px;
    width: 100%;
    justify-content: center;
    border-radius: 18px;
    padding: 14px;
  }

  .floating-card-one,
  .floating-card-two,
  .floating-card-three {
    position: static;
  }

  section {
    padding: 64px 0;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .section-head h2 {
    font-size: clamp(28px, 8vw, 36px);
    letter-spacing: -1px;
  }

  .section-head p {
    font-size: 15.5px;
    line-height: 1.65;
  }

  .audience-card,
  .service-card,
  .price-card,
  .external-card,
  .process-card,
  .testimonial-card {
    padding: 24px;
    border-radius: 24px;
  }

  .model-cover {
    height: 230px;
  }

  .model-body {
    padding: 22px;
  }

  .quote-form,
  .quote-info {
    padding: 24px;
    border-radius: 24px;
  }

  .quote-info h2 {
    font-size: 30px;
  }

  .contact-grid {
    text-align: center;
    gap: 22px;
    padding: 46px 0;
  }

  .contact-actions {
    justify-content: stretch;
  }

  .floating-buttons {
    right: 14px;
    bottom: 14px;
  }

  .float-btn {
    width: 54px;
    height: 54px;
    font-size: 24px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .brand-text strong {
    font-size: 14px;
  }

  .brand-text span {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 15px;
  }

  .section-head h2 {
    font-size: 28px;
  }

  .price strong {
    font-size: 38px;
  }

  .model-overlay h3 {
    font-size: 25px;
  }

  .selected-plan-box strong {
    font-size: 21px;
  }

  input,
  select,
  textarea {
    font-size: 14px;
    padding: 14px;
  }
}
/* =========================================
   V2 PREMIUM - PLANOS, CTA E MICROANIMAÇÕES
========================================= */

.pricing-grid-premium {
  grid-template-columns: repeat(4, 1fr);
}

.price-card {
  overflow: hidden;
}

.price-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(193, 18, 31, 0.22), transparent 55%);
  opacity: 0;
  transition: 0.35s ease;
}

.price-card:hover::after {
  opacity: 1;
}

.ecommerce-card {
  border-color: rgba(193, 18, 31, 0.24);
  background:
    radial-gradient(circle at top right, rgba(193, 18, 31, 0.08), transparent 36%),
    var(--white);
}

.price-from {
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.price-from span {
  margin: 0;
  color: var(--red);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.price-card.featured .price-from span {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-info-grid {
  max-width: 1180px;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.pricing-info-grid > div {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(193, 18, 31, 0.12);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.pricing-info-grid strong {
  display: block;
  color: var(--black);
  font-size: 18px;
  margin-bottom: 8px;
}

.pricing-info-grid span {
  display: block;
  color: var(--gray);
  line-height: 1.7;
  font-weight: 650;
}

.quote-cta-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 52, 72, 0.24), transparent 32%),
    radial-gradient(circle at 86% 30%, rgba(193, 18, 31, 0.28), transparent 34%),
    linear-gradient(135deg, #07070a 0%, #121217 48%, #320006 100%);
}

.quote-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

.quote-cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: center;
}

.quote-cta-content {
  position: relative;
  top: auto;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.quote-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.briefing-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  transform: rotate(1deg);
  transition: 0.35s ease;
}

.briefing-card:hover {
  transform: rotate(0deg) translateY(-8px);
}

.briefing-card-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: rgba(255, 52, 72, 0.28);
  filter: blur(20px);
  pointer-events: none;
}

.briefing-top {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.briefing-top span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red-light);
}

.briefing-body {
  position: relative;
  z-index: 2;
  padding: 34px;
}

.briefing-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-light), var(--red-dark));
  font-size: 30px;
  box-shadow: var(--shadow-red);
  margin-bottom: 24px;
}

.briefing-body h3 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.briefing-body p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 24px;
}

.briefing-steps {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}

.briefing-steps div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.briefing-steps strong {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--red);
  background: var(--white);
  font-size: 14px;
}

.briefing-steps span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  line-height: 1.45;
}

.briefing-highlight {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  line-height: 1.6;
  font-weight: 800;
}

.briefing-highlight i {
  color: var(--red-light);
  margin-top: 4px;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 90%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: skewX(-20deg);
  transition: 0.6s ease;
}

.btn:hover::after {
  left: 130%;
}

.price-card,
.service-card,
.audience-card,
.model-card,
.process-card,
.testimonial-card,
.external-card,
.briefing-card {
  will-change: transform;
}

@media (max-width: 1180px) {
  .pricing-grid-premium {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1080px) {
  .quote-cta-grid {
    grid-template-columns: 1fr;
  }

  .briefing-card {
    transform: none;
  }
}

@media (max-width: 720px) {
  .pricing-grid-premium,
  .pricing-info-grid,
  .quote-cta-grid {
    grid-template-columns: 1fr;
  }

  .quote-cta-actions,
  .quote-cta-actions .btn {
    width: 100%;
  }

  .briefing-body {
    padding: 24px;
  }

  .briefing-card {
    border-radius: 26px;
  }

  .briefing-body h3 {
    font-size: 28px;
  }
}

/* =========================================
   WEBMASTER DIGITAL - V3 PREMIUM PATCH
   Cole este arquivo completo como style.css
========================================= */

:root {
  --premium-red: #e50920;
  --premium-red-soft: rgba(229, 9, 32, 0.16);
  --premium-dark: #07070a;
  --premium-line: rgba(255, 255, 255, 0.14);
  --premium-glow: 0 30px 90px rgba(193, 18, 31, 0.28);
}

html {
  scroll-padding-top: 98px;
}

body {
  background:
    radial-gradient(circle at 8% 8%, rgba(193, 18, 31, 0.055), transparent 28%),
    radial-gradient(circle at 94% 18%, rgba(193, 18, 31, 0.045), transparent 26%),
    var(--off-white);
}

.header {
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(193, 18, 31, 0.08);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
}

.brand-logo {
  box-shadow: 0 14px 32px rgba(193, 18, 31, 0.16);
}

.menu a {
  font-weight: 900;
}

.hero {
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  padding: 96px 0;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 52, 72, 0.34), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(193, 18, 31, 0.30), transparent 32%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.055), transparent 38%),
    linear-gradient(135deg, #050506 0%, #111116 46%, #380007 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 88%);
}

.hero::after {
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.08) 42%, transparent 48%),
    linear-gradient(245deg, transparent 0 52%, rgba(229, 9, 32, 0.16) 57%, transparent 64%);
  mix-blend-mode: screen;
}

.hero-content {
  animation: premiumFadeUp 0.85s ease both;
}

.hero h1 {
  text-wrap: balance;
}

.hero p {
  max-width: 620px;
}

.hero h1 span {
  background: linear-gradient(135deg, #ffffff, #ff9aa4 38%, #ff263b 68%, #ffffff);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: premiumTextShine 5s ease-in-out infinite;
}

.btn-primary {
  background:
    linear-gradient(135deg, #ff4055 0%, #c1121f 48%, #78000a 100%);
  box-shadow: 0 22px 50px rgba(193, 18, 31, 0.32);
}

.btn:hover {
  transform: translateY(-4px) scale(1.01);
}

.device-card,
.briefing-card,
.price-card,
.service-card,
.model-card,
.audience-card,
.process-card,
.testimonial-card,
.external-card {
  transform-style: preserve-3d;
}

.device-card {
  animation: premiumFloat 5.5s ease-in-out infinite;
}

.floating-card {
  animation: premiumFloatSmall 4.8s ease-in-out infinite;
}

.floating-card-two {
  animation-delay: 0.6s;
}

.floating-card-three {
  animation-delay: 1.1s;
}

.section-head h2 {
  text-wrap: balance;
}

.section-head span {
  position: relative;
}

.section-head span::after {
  content: "";
  width: 44px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  margin-left: 12px;
  opacity: 0.65;
}

.audience-card,
.service-card,
.external-card,
.process-card,
.testimonial-card,
.model-card,
.price-card,
details,
.quote-form,
.quote-info {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.service-card:hover,
.audience-card:hover,
.external-card:hover,
.process-card:hover,
.testimonial-card:hover,
.model-card:hover,
.price-card:hover {
  transform: translateY(-10px);
}

/* Planos mais compactos e premium */
.pricing-grid,
.pricing-grid-premium {
  align-items: stretch;
}

.pricing-grid-premium {
  max-width: 1240px;
}

.price-card {
  padding: 28px;
  border-radius: 26px;
}

.price-card h3 {
  font-size: 23px;
  margin-bottom: 12px;
}

.price-card p {
  margin-bottom: 18px;
  min-height: auto;
}

.price strong {
  font-size: clamp(34px, 3vw, 46px);
}

.price-card ul {
  gap: 10px;
  margin-bottom: 22px;
}

.price-card li {
  font-size: 14px;
}

.price-card.featured {
  box-shadow: 0 34px 90px rgba(193, 18, 31, 0.34);
}

.price-card.featured::before {
  opacity: 1;
  background:
    radial-gradient(circle at 85% 8%, rgba(255, 255, 255, 0.26), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 48%);
}

.popular-badge {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.payment-note,
.external-warning,
.pricing-info-grid > div {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
}

/* CTA substituindo o formulário */
.quote-cta-section {
  padding: 100px 0;
}

.quote-cta-content h2,
.quote-info h2 {
  text-wrap: balance;
}

.briefing-card {
  isolation: isolate;
}

.briefing-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.20), rgba(229, 9, 32, 0.45), transparent 55%);
  opacity: 0.8;
}

.briefing-steps div {
  transition: 0.25s ease;
}

.briefing-steps div:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.12);
}

/* Imagens/modelos */
.model-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(115deg, transparent 0 35%, rgba(255, 255, 255, 0.18) 45%, transparent 54%);
  transform: translateX(-120%);
  transition: 0.65s ease;
}

.model-card:hover .model-cover::after {
  transform: translateX(120%);
}

/* Animações melhores */
.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.985);
  filter: blur(8px);
  transition: opacity 0.75s ease, transform 0.75s ease, filter 0.75s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.services-grid .reveal:nth-child(2),
.models-grid .reveal:nth-child(2),
.pricing-grid .reveal:nth-child(2),
.process-grid .reveal:nth-child(2),
.testimonials-grid .reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.services-grid .reveal:nth-child(3),
.models-grid .reveal:nth-child(3),
.pricing-grid .reveal:nth-child(3),
.process-grid .reveal:nth-child(3),
.testimonials-grid .reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.services-grid .reveal:nth-child(4),
.pricing-grid .reveal:nth-child(4),
.process-grid .reveal:nth-child(4) {
  transition-delay: 0.24s;
}

/* Rodapé mais premium */
.footer {
  background:
    radial-gradient(circle at top left, rgba(255, 52, 72, 0.24), transparent 32%),
    radial-gradient(circle at bottom right, rgba(193, 18, 31, 0.26), transparent 30%),
    linear-gradient(135deg, #050506, #1b0003 62%, #5a0008);
}

.footer a:hover {
  color: #ff8d99;
}

.socials a {
  backdrop-filter: blur(12px);
}

.float-btn {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

@keyframes premiumFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes premiumFloat {
  0%, 100% {
    transform: rotate(-2deg) translateY(0);
  }
  50% {
    transform: rotate(-1deg) translateY(-14px);
  }
}

@keyframes premiumFloatSmall {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes premiumTextShine {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

@media (max-width: 1180px) {
  .pricing-grid-premium,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding: 62px 0 70px;
  }

  .pricing-grid-premium,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 24px;
  }

  .quote-cta-section {
    padding: 68px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
/* ==============================
   PLANOS - VERSÃO PREMIUM COMPACTA
============================== */

.pricing-grid,
.pricing-grid-premium {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 22px !important;
  align-items: stretch !important;
}

.price-card {
  padding: 28px 26px !important;
  border-radius: 30px !important;
  min-height: auto !important;
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(193, 18, 31, 0.14) !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08) !important;
}

.price-card.featured {
  background: linear-gradient(145deg, #ff3448, #c1121f 55%, #6d0009) !important;
  transform: translateY(-14px);
  box-shadow: 0 30px 75px rgba(193, 18, 31, 0.35) !important;
}

.price-card h3 {
  font-size: 25px !important;
  line-height: 1.15 !important;
  margin-bottom: 18px !important;
}

.price {
  margin-bottom: 22px !important;
}

.price strong {
  font-size: 48px !important;
  letter-spacing: -2px !important;
}

.price-card p {
  font-size: 15px !important;
  line-height: 1.65 !important;
  margin-bottom: 22px !important;
}

.price-card ul {
  gap: 11px !important;
  margin-bottom: 26px !important;
}

.price-card li {
  font-size: 14.5px !important;
  line-height: 1.35 !important;
}

.price-card li:nth-child(n+7) {
  display: none !important;
}

.popular-badge {
  top: 20px !important;
  right: 20px !important;
}

@media (max-width: 1180px) {
  .pricing-grid,
  .pricing-grid-premium {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 720px) {
  .pricing-grid,
  .pricing-grid-premium {
    grid-template-columns: 1fr !important;
  }

  .price-card {
    padding: 24px !important;
  }
}
.hero-visual{
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-image{
    position:relative;
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-image img{

    width:100%;
    max-width:720px;

    animation:float 6s ease-in-out infinite;

    filter:
    drop-shadow(0 25px 70px rgba(0,0,0,.45));

}

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-12px);
}

100%{
transform:translateY(0);
}

}
/* ==============================
   RESPONSIVO HERO + MOCKUP
============================== */

@media (max-width: 1080px) {
  .hero {
    padding: 70px 0 80px !important;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    text-align: center !important;
  }

  .hero-content {
    max-width: 760px !important;
    margin: 0 auto !important;
  }

  .hero h1 {
    font-size: clamp(42px, 8vw, 68px) !important;
  }

  .hero p {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-actions {
    justify-content: center !important;
  }

  .hero-visual {
    min-height: auto !important;
    justify-content: center !important;
    margin-top: 10px !important;
  }

  .hero-image img {
    width: 100% !important;
    max-width: 760px !important;
    transform: none !important;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 48px 0 58px !important;
  }

  .hero h1 {
    font-size: clamp(34px, 12vw, 48px) !important;
    line-height: 1.03 !important;
    letter-spacing: -1.8px !important;
  }

  .hero p {
    font-size: 15.5px !important;
    line-height: 1.7 !important;
  }

  .hero-actions {
    flex-direction: column !important;
    width: 100% !important;
  }

  .hero-actions .btn {
    width: 100% !important;
  }

  .hero-stats {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
  }

  .hero-image img {
    width: 118% !important;
    max-width: none !important;
    margin-left: -9% !important;
  }
}

/* ==============================
   RESPONSIVO PLANOS
============================== */

@media (max-width: 1180px) {
  .pricing-grid,
  .pricing-grid-premium {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .price-card.featured {
    transform: none !important;
  }
}

@media (max-width: 720px) {
  .pricing-grid,
  .pricing-grid-premium {
    grid-template-columns: 1fr !important;
  }

  .price-card {
    padding: 24px !important;
  }

  .price strong {
    font-size: 42px !important;
  }
}
/* ==========================
   HERO - TAMANHO DO MOCKUP
========================== */

.hero-visual{
    display:flex;
    justify-content:flex-end;
    align-items:center;
}

.hero-image{
    width:100%;
    display:flex;
    justify-content:flex-end;
    align-items:center;
}

.hero-image img{
    width:125%;
    max-width:950px;
    transform:translateX(60px);
    filter:drop-shadow(0 35px 90px rgba(0,0,0,.45));
    animation:float 6s ease-in-out infinite;
}

/* Tablet */

@media (max-width:1100px){

    .hero-image img{
        width:100%;
        max-width:700px;
        transform:none;
    }

}

/* Mobile */

@media (max-width:768px){

    .hero-visual{
        justify-content:center;
        margin-top:40px;
    }

    .hero-image img{
        width:120%;
        max-width:none;
        transform:none;
    }

}

/* Celulares pequenos */

@media (max-width:480px){

    .hero-image img{
        width:135%;
    }

}

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0);
    }

}
/* ==========================
   CORREÇÃO HERO DESKTOP
========================== */

.hero {
  min-height: auto !important;
  padding: 70px 0 80px !important;
}

.hero-grid {
  align-items: center !important;
  gap: 40px !important;
}

.hero h1 {
  font-size: clamp(48px, 4.8vw, 72px) !important;
  line-height: 1 !important;
  letter-spacing: -2.5px !important;
}

.hero p {
  font-size: 17px !important;
  line-height: 1.7 !important;
}

.hero-visual {
  min-height: auto !important;
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
}

.hero-image {
  width: 100% !important;
  display: flex !important;
  justify-content: flex-end !important;
}

.hero-image img {
  width: 130% !important;
  max-width: 980px !important;
  transform: translateX(80px) !important;
  filter: drop-shadow(0 40px 90px rgba(0,0,0,.45)) !important;
  animation: none !important;
}

/* Tablet */
@media (max-width: 1080px) {
  .hero {
    padding: 55px 0 65px !important;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .hero-image {
    justify-content: center !important;
  }

  .hero-image img {
    width: 100% !important;
    max-width: 760px !important;
    transform: none !important;
  }
}

/* Mobile */
@media (max-width: 720px) {
  .hero h1 {
    font-size: clamp(34px, 11vw, 46px) !important;
    letter-spacing: -1.4px !important;
  }

  .hero-image img {
    width: 120% !important;
    max-width: none !important;
  }
}