/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --purple-primary: #5d018e;
  --purple-secondary: #7e01c1;
  --purple-dark: #3c015b;
  --purple-deep: #2a0040;
  --black: #111111;
  --dark-gray: #2a2a2a;
  --white: #ffffff;
  --gold: #fccc72;
  --teal: #00c3b1;
  --lavender: #eaf0ff;
  --light-purple: #ddddff;
  --blue-accent: #7c94ff;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Roboto Slab', serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Alata', sans-serif;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: rgba(93, 1, 142, 0.97);
  box-shadow: 0 2px 20px rgba(60, 1, 91, 0.3);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo img {
  height: 40px;
  width: auto;
}

.navbar__links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.navbar__links a {
  color: var(--white);
  font-family: 'Alata', sans-serif;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.navbar__links a:hover {
  opacity: 1;
}

.navbar__cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  opacity: 1 !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.navbar__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(252, 204, 114, 0.4);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.navbar__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-primary) 40%, var(--purple-secondary) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(126, 1, 193, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, var(--white), transparent);
  pointer-events: none;
}

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

.hero__content {
  color: var(--white);
}

.hero__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 24px;
  color: var(--gold);
  font-family: 'Alata', sans-serif;
}

.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero__title span {
  color: var(--gold);
}

.hero__subtitle {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.8;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Alata', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(252, 204, 114, 0.3);
}

.btn--primary:hover {
  box-shadow: 0 6px 30px rgba(252, 204, 114, 0.5);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero__card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
}

.hero__card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.hero__card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.hero__card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero__stat {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}

.hero__stat-value {
  display: block;
  font-family: 'Alata', sans-serif;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.hero__stat-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  padding: 40px 0;
  background: var(--white);
}

.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark-gray);
  font-size: 0.95rem;
}

.trust-bar__icon {
  width: 40px;
  height: 40px;
  background: var(--lavender);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--white) 0%, #f8f5ff 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-family: 'Alata', sans-serif;
  font-size: 0.85rem;
  color: var(--purple-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--purple-dark);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 4px 30px rgba(93, 1, 142, 0.06);
  border: 1px solid rgba(93, 1, 142, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(93, 1, 142, 0.12);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-secondary));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--purple-dark);
  margin-bottom: 12px;
}

.service-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== PROCESS ===== */
.process {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--purple-primary) 100%);
  position: relative;
}

.process .section-label {
  color: var(--gold);
}

.process .section-title {
  color: var(--white);
}

.process .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process__step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.process__step-number {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Alata', sans-serif;
  font-size: 1.3rem;
  color: var(--gold);
}

.process__step h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.process__step p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ===== BENEFITS ===== */
.benefits {
  padding: 100px 0;
  background: var(--white);
}

.benefits .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.benefits__image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(93, 1, 142, 0.12);
  position: relative;
}

.benefits__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.benefits__image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(93, 1, 142, 0.9);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 16px;
}

.benefits__image-badge strong {
  display: block;
  font-family: 'Alata', sans-serif;
  font-size: 1.5rem;
  color: var(--gold);
}

.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit-item__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, #f3e8ff, #ede0ff);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.benefit-item h3 {
  font-size: 1.1rem;
  color: var(--purple-dark);
  margin-bottom: 6px;
}

.benefit-item p {
  color: #666;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== SIMULADOR CTA ===== */
.simulator {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f5ff 0%, var(--white) 100%);
}

.simulator__card {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-primary));
  border-radius: 32px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.simulator__card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(126, 1, 193, 0.4) 0%, transparent 70%);
  pointer-events: none;
}

.simulator__content {
  position: relative;
  z-index: 1;
}

.simulator__content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.simulator__content p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.simulator__form {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 36px;
}

.simulator__form-group {
  margin-bottom: 20px;
}

.simulator__form-group label {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin-bottom: 8px;
  font-family: 'Alata', sans-serif;
}

.simulator__form-group input,
.simulator__form-group select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: var(--white);
  font-family: 'Roboto Slab', serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.simulator__form-group input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.simulator__form-group input:focus,
.simulator__form-group select:focus {
  border-color: var(--gold);
}

.simulator__form-group select option {
  background: var(--purple-dark);
  color: var(--white);
}

.simulator__form .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1.05rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background: #faf8ff;
  border-radius: 20px;
  padding: 36px;
  border: 1px solid rgba(93, 1, 142, 0.06);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Alata', sans-serif;
  font-size: 0.95rem;
}

.testimonial-card__name {
  font-family: 'Alata', sans-serif;
  font-size: 0.92rem;
  color: var(--purple-dark);
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: #999;
}

/* ===== CONTACT / CTA ===== */
.contact {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--white) 0%, #f8f5ff 100%);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact__info h2 {
  font-size: 2rem;
  color: var(--purple-dark);
  margin-bottom: 16px;
}

.contact__info > p {
  color: #666;
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__detail {
  display: flex;
  gap: 16px;
  align-items: center;
}

.contact__detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, var(--purple-primary), var(--purple-secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}

.contact__detail-text strong {
  display: block;
  font-family: 'Alata', sans-serif;
  font-size: 0.9rem;
  color: var(--purple-dark);
  margin-bottom: 2px;
}

.contact__detail-text span {
  font-size: 0.9rem;
  color: #666;
}

.contact__form {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(93, 1, 142, 0.08);
  border: 1px solid rgba(93, 1, 142, 0.06);
}

.contact__form-group {
  margin-bottom: 20px;
}

.contact__form-group label {
  display: block;
  font-family: 'Alata', sans-serif;
  font-size: 0.85rem;
  color: var(--purple-dark);
  margin-bottom: 8px;
}

.contact__form-group input,
.contact__form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: #f8f5ff;
  border: 1px solid rgba(93, 1, 142, 0.1);
  border-radius: 12px;
  font-family: 'Roboto Slab', serif;
  font-size: 0.95rem;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
}

.contact__form-group input:focus,
.contact__form-group textarea:focus {
  border-color: var(--purple-secondary);
}

.contact__form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__form .btn {
  width: 100%;
  justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--purple-dark);
  color: var(--white);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand img {
  height: 36px;
  margin-bottom: 16px;
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer__col h4 {
  font-family: 'Alata', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: var(--gold);
}

.footer__col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: background 0.2s, color 0.2s;
  font-size: 0.9rem;
}

.footer__social a:hover {
  background: var(--purple-secondary);
  color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    margin: 0 auto 36px;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__visual {
    display: none;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits .container {
    grid-template-columns: 1fr;
  }

  .benefits__image {
    order: 2;
  }

  .simulator__card {
    grid-template-columns: 1fr;
    padding: 48px 32px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navbar__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(60, 1, 91, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }

  .navbar__links.active {
    display: flex;
  }

  .navbar__toggle {
    display: flex;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .process__steps {
    grid-template-columns: 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}