*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #ff3131 #111;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #ff3131, #cc2828);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff4d4d, #ff3131);
}

body {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('../img/Desk-bg.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 60px 5vw 120px;
}

.hero__logo {
  width: 280px;
  height: auto;
  margin-bottom: 2px;
}

.hero__headline {
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  font-weight: 400;
  line-height: 1.18;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero__headline strong {
  font-weight: 900;
  display: inline;
}

.hero__subheadline {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  font-weight: 700;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 36px;
  max-width: 380px;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #A2E833;
  color: #111;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px 32px;
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.hero__cta svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.hero__cta:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 28px rgba(162, 232, 51, 0.35);
}

.hero__cta:hover svg {
  transform: translate(2px, -2px);
}

.hero__cta:active {
  transform: scale(0.97);
}

.ribbons-wrapper {
  position: relative;
  width: 100%;
  z-index: 10;
  margin-top: -90px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: clip;
}

.ribbon {
  width: 300vw;
  margin-left: -100vw;
  overflow: hidden;
  display: flex;
  padding: 18px 0;
  background: #1a1a1a;
  white-space: nowrap;
}

.ribbon--top {
  transform: rotate(-2deg);
  z-index: 11;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}

.ribbon--bottom {
  transform: rotate(-1deg);
  margin-top: -8px;
  z-index: 10;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.ribbon--bottom .ribbon__content {
  color: #111;
}

.ribbon__track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.ribbon__content {
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 0 8px;
  white-space: nowrap;
}

.form-section {
  background: #000;
  padding: 100px 5vw;
}

.form-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-section__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #e53935;
  margin-bottom: 16px;
  font-style: italic;
}

.form-section__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 40px;
}

.form-section__title span {
  font-weight: 400;
  color: #ccc;
}

.form-section__title strong {
  font-weight: 900;
  color: #fff;
}

.step-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px 24px 24px 52px;
  margin-bottom: 16px;
  margin-left: 18px;
}

.step-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.step-card__number {
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e53935;
  color: #fff;
  font-weight: 900;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

.step-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}

.step-card__text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #aaa;
}

.step-card__text strong {
  color: #fff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
}

.contact-form__input,
.contact-form__select {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  color: #fff;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.contact-form__input::placeholder {
  color: #666;
}

.contact-form__input:focus,
.contact-form__select:focus {
  border-color: #A2E833;
  box-shadow: 0 0 0 3px rgba(162, 232, 51, 0.12);
}

.contact-form__input.is-invalid,
.contact-form__select.is-invalid {
  border-color: #e53935;
  box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.15);
}

.contact-form__error {
  display: block;
  font-size: 0.75rem;
  color: #e53935;
  min-height: 20px;
  padding: 3px 4px 0;
}

.contact-form__select {
  cursor: pointer;
  color: #666;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.contact-form__select:has(option:checked:not([disabled])) {
  color: #fff;
}

.contact-form__phone-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-form__flag {
  position: absolute;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
  z-index: 2;
}

.contact-form__flag img {
  border-radius: 2px;
}

.contact-form__input--phone {
  padding-left: 52px;
}

.contact-form__submit {
  width: 100%;
  background: #A2E833;
  color: #111;
  font-weight: 800;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  padding: 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  margin-top: 6px;
}

.contact-form__submit:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 28px rgba(162, 232, 51, 0.3);
}

.contact-form__submit:active {
  transform: scale(0.98);
}

.contact-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.contact-form__status {
  font-size: 0.85rem;
  text-align: center;
  min-height: 24px;
  padding-top: 8px;
}

.contact-form__status.is-success {
  color: #A2E833;
}

.contact-form__status.is-error {
  color: #e53935;
}

.testimonials {
  background: #fff;
  padding: 60px 0 70px;
}

.testimonials__inner {
  text-align: center;
}

.testimonials__header {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 5vw;
}

.testimonials__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #e53935;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.testimonials__title {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 10px;
}

.testimonials__title strong {
  font-weight: 900;
  color: #e53935;
}

.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.testimonials__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: transparent;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.testimonials__arrow:hover {
  background: #f5f5f5;
  border-color: #bbb;
}

.testimonials__carousel {
  overflow: hidden;
  width: 100%;
}

.testimonials__track {
  display: flex;
  gap: 12px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0 5vw;
}

.testimonials__slide {
  flex: 0 0 calc(25% - 9px);
  min-width: 0;
}

.testimonials__video {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%;
  border-radius: 12px;
  overflow: hidden;
  background: #0a0a0a;
}

.testimonials__video .ymin {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.testimonials__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.testimonials__dot.is-active {
  background: #111;
  transform: scale(1.3);
}

.services {
  background: #0a0a0a;
  padding-top: 66px;
}

.services__inner {
  text-align: center;
}

.services__header {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 5vw;
}

.services__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #e53935;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.services__title {
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 400;
  line-height: 1.25;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.services__title strong {
  font-weight: 800;
  color: #fff;
}

.services__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}

.services__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.services__arrow:hover {
  border-color: #e53935;
  background: rgba(229, 57, 53, 0.1);
}

.services__carousel {
  overflow: hidden;
  width: 100%;
}

.services__track {
  display: flex;
  gap: 24px;
  padding: 0 5vw;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.services__card {
  flex: 0 0 calc(50vw - 40px);
  max-width: 600px;
  background: #111;
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease, border-color 0.5s ease, opacity 0.5s ease;
  display: flex;
  align-items: center;
  opacity: 0.4;
  transform: scale(0.9);
}

.services__card.is-active {
  opacity: 1;
  transform: scale(1);
}

.services__card-content {
  padding: 48px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.services__card-title {
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.35;
}

.services__card-title strong {
  font-weight: 800;
  color: #e53935;
}

.services__card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services__card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease;
}

.services__card:hover .services__card-list li {
  color: rgba(255, 255, 255, 0.85);
}

.services__card-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.services__card-list li strong {
  color: #fff;
  font-weight: 700;
}

.services__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.services__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.services__dot.is-active {
  background: #e53935;
  transform: scale(1.3);
}

.plans {
  background: #000;
  padding: 100px 5vw;
  overflow: hidden;
}

.plans__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.plans__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #ff3131;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.plans__title {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 400;
  line-height: 1.15;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.plans__title strong {
  font-weight: 900;
  color: #fff;
}

.plans__description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 440px;
}

.plans__description strong {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(255, 49, 49, 0.4);
  text-underline-offset: 3px;
}

.plans__chart {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.plans__chart img {
  width: 100%;
  height: auto;
  display: block;
}

.reveal {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal[data-reveal="left"] {
  transform: translateX(-60px);
}

.reveal[data-reveal="right"] {
  transform: translateX(60px);
}

.reveal[data-reveal="up"] {
  transform: translateY(50px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.reveal.is-hidden[data-reveal="left"] {
  opacity: 0;
  transform: translateX(-60px);
}

.reveal.is-hidden[data-reveal="right"] {
  opacity: 0;
  transform: translateX(60px);
}

.reveal.is-hidden[data-reveal="up"] {
  opacity: 0;
  transform: translateY(50px);
}

.quem-somos {
  background: #000;
  padding: 10px 0;
  position: relative;
  overflow: hidden;
}

.quem-somos__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.quem-somos__images {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.polaroid {
  background: #fff;
  padding: 12px 12px 48px 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  position: relative;
  max-width: 320px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.4s ease;
}

.polaroid:hover {
  z-index: 10 !important;
  transform: scale(1.05) !important;
}

.polaroid img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
}

.polaroid p {
  position: absolute;
  bottom: 12px;
  left: 0;
  width: 100%;
  text-align: center;
  color: #111;
  font-family: 'Permanent Marker', 'Caveat', cursive, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  margin: 0;
  transform: rotate(-2deg);
}

.tape {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  width: 100px;
  height: 30px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  border-left: 2px dashed rgba(255, 255, 255, 0.4);
  border-right: 2px dashed rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(2px);
  z-index: 5;
}

.tape--right {
  transform: translateX(-50%) rotate(5deg);
}

.polaroid--1 {
  transform: rotate(-6deg) translateX(-30px);
  z-index: 3;
}

.polaroid--2 {
  transform: rotate(4deg) translateX(40px);
  z-index: 2;
  margin-top: -80px;
}



.quem-somos__badge {
  display: inline-block;
  color: #ff3131;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.quem-somos__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.quem-somos__title strong {
  font-weight: 700;
}

.quem-somos__desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quem-somos__desc p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.6;
}

.quem-somos__desc strong {
  color: #fff;
  font-weight: 600;
}

/* CTA PREMIUM */
.cta-premium {
  background: #ff3131;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-premium__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 5vw;
}

.cta-premium__badge {
  display: inline-block;
  color: #111;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.cta-premium__title {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.cta-premium__title strong {
  font-weight: 900;
}

.cta-premium__desc {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 45px;
  max-width: 600px;
}

.cta-premium__actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-premium__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #111;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 18px 40px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.cta-premium__btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transition: all 0.6s ease;
}

.cta-premium__btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
  background: #000;
}

.cta-premium__btn:hover::before {
  left: 200%;
}

.cta-premium__btn svg {
  transition: transform 0.3s ease;
}

.cta-premium__btn:hover svg {
  transform: translate(6px, -6px);
}

.cta-premium__status {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #A2E833;
  box-shadow: 0 0 12px #A2E833;
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(162, 232, 51, 0.7);
  }

  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 12px rgba(162, 232, 51, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(162, 232, 51, 0);
  }
}

/* FAQ */
.faq {
  background: #000;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: flex-start;
}

.faq__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.faq__desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 400px;
}

.faq__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq__item {
  background: #111;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq__item:hover {
  border-color: rgba(255, 49, 49, 0.3);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease;
}

.faq__item.is-open .faq__question {
  background: rgba(255, 255, 255, 0.02);
}

.faq__q-badge {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #2a1111;
  /* subtle dark red */
  color: #ff3131;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 49, 49, 0.3);
}

.faq__q-text {
  flex-grow: 1;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
}

.faq__icon {
  flex-shrink: 0;
  color: #fff;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq__item.is-open .faq__icon {
  transform: rotate(180deg);
  color: #ff3131;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq__answer p {
  padding: 0 30px 30px 82px;
  /* aligns with text, missing the badge size + gap */
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  line-height: 1.6;
}

/* FOOTER */
.footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 0;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer__logo svg {
  width: 160px;
  height: auto;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #111;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__social a:hover {
  background: #ff3131;
  color: #fff;
  border-color: #ff3131;
  transform: translateY(-3px);
}

.footer__copy {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .quem-somos__inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .quem-somos__content {
    order: -1;
  }

  .polaroid--1,
  .polaroid--2 {
    transform: none;
    margin-top: 20px;
    max-width: 250px;
  }

  .faq__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq__left {
    text-align: center;
  }

  .faq__desc {
    margin: 0 auto;
  }
}

@media (min-width: 769px) {
  .services__dots {
    display: none !important;
  }

  .services__track {
    position: relative;
    display: block;
    min-height: 480px;
    padding: 0;
    margin: 0 auto;
    width: 100%;
    transform: none !important;
  }

  .services__card {
    position: absolute;
    top: 60px;
    left: 50%;
    width: 600px;
    margin-left: -300px;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.7) translateX(0);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.6s ease;
    flex: none;
    cursor: default;
  }

  .services__card.is-center {
    opacity: 1;
    transform: scale(1) translateX(0);
    z-index: 3;
    pointer-events: auto;
  }

  .services__card.is-left {
    opacity: 0.3;
    transform: scale(0.85) translateX(-70%);
    z-index: 2;
    pointer-events: auto;
    cursor: pointer;
  }

  .services__card.is-right {
    opacity: 0.3;
    transform: scale(0.85) translateX(70%);
    z-index: 2;
    pointer-events: auto;
    cursor: pointer;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    background-image: url('../img/cell-bg.jpg');
    background-size: cover;
    background-position: top center;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }

  .hero__content {
    max-width: 100%;
    padding: 320px 28px 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__logo {
    width: 220px;
    margin-bottom: -28px;
  }

  .hero__headline {
    font-size: clamp(1.5rem, 6.5vw, 2.2rem);
    text-align: center;
  }

  .hero__subheadline {
    font-size: clamp(0.95rem, 3.5vw, 1.1rem);
    text-align: center;
    max-width: 340px;
  }

  .ribbons-wrapper {
    margin-top: -50px;
  }

  .ribbon {
    padding: 10px 0;
  }

  .ribbon__content {
    font-size: 0.65rem;
  }

  .form-section {
    padding: 30px 20px 60px;
  }

  .form-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-section__right {
    order: -1;
  }

  .form-section__title {
    font-size: clamp(1.4rem, 6vw, 2rem);
    text-align: center;
  }

  .form-section__badge {
    display: block;
    text-align: center;
  }

  .step-card {
    padding: 20px 20px 20px 40px;
    margin-left: 24px;
  }

  .step-card__text {
    padding-left: 0;
  }

  .reveal[data-reveal="left"],
  .reveal[data-reveal="right"] {
    transform: translateY(40px);
  }

  .reveal.is-hidden[data-reveal="left"],
  .reveal.is-hidden[data-reveal="right"] {
    transform: translateY(40px);
  }

  .testimonials {
    padding: 50px 0 60px;
  }

  .testimonials__header {
    padding: 0 20px;
  }

  .testimonials__carousel {
    padding: 0;
    overflow: hidden;
  }

  .testimonials__track {
    padding: 0 20px;
    gap: 16px;
  }

  .testimonials__slide {
    flex: 0 0 calc(100vw - 40px);
  }

  .testimonials__title {
    font-size: clamp(1.2rem, 5.5vw, 1.8rem);
  }

  .services {
    padding: 50px 0 60px;
  }

  .services__header {
    padding: 0 20px;
  }

  .services__title {
    font-size: clamp(1.2rem, 5.5vw, 1.6rem);
  }

  .services__track {
    padding: 0 20px;
    gap: 16px;
  }

  .services__card {
    flex: 0 0 calc(100vw - 40px);
    min-height: auto;
    border-radius: 16px;
  }

  .services__card-content {
    padding: 40px 24px;
  }

  .services__card-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .plans {
    padding: 60px 20px;
  }

  .plans__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .plans__title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }

  .plans__description {
    max-width: 100%;
    margin: 0 auto;
  }

  .plans__chart {
    border-radius: 12px;
  }

  .cta-premium {
    padding: 70px 0;
  }

  .cta-premium__inner {
    gap: 50px;
  }

  .cta-premium__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .cta-premium__btn {
    width: 100%;
    justify-content: center;
  }

  .cta-premium__title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .faq {
    padding: 60px 0;
  }

  .faq__inner {
    gap: 30px;
  }

  .faq__title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .faq__desc {
    font-size: 1rem;
  }

  .faq__question {
    padding: 18px 16px;
    gap: 12px;
  }

  .faq__q-badge {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .faq__q-text {
    font-size: 0.95rem;
  }

  .faq__answer p {
    padding: 0 16px 20px 56px;
    font-size: 0.9rem;
  }

  .faq__list {
    gap: 12px;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hero__content {
    padding-top: 260px;
    padding-bottom: 80px;
  }

  .hero__logo {
    width: 200px;
  }

  .hero__headline {
    font-size: clamp(1.3rem, 6vw, 1.9rem);
  }

  .hero__cta {
    font-size: 0.88rem;
    padding: 14px 28px;
  }
}