﻿:root {
  --bg: #050814;
  --bg-alt: #0b1020;
  --bg-soft: #101528;
  --primary: #f0c15b;
  --primary-soft: rgba(240, 193, 91, 0.12);
  --accent: #d1a249;
  --text: #f5f5f7;
  --text-soft: #b0b4c3;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --error: #ff6b6b;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.55);
  --shadow-subtle: 0 10px 40px rgba(0, 0, 0, 0.45);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(circle at top left, #131a33 0, #050814 45%, #020309 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
}
.container {
  width: 100%;
  max-width: 1120px;
  padding: 0 1.5rem;
  margin: 0 auto;
}
.topbar {
  background: linear-gradient(90deg, rgba(240, 193, 91, 0.28), transparent);
  border-bottom: 1px solid rgba(240, 193, 91, 0.25);
  backdrop-filter: blur(16px);
}
.topbar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  color: var(--text-soft);
}
.topbar__cta {
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(240, 193, 91, 0.55);
  color: var(--primary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.topbar__whatsapp-icon {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffffff, #25d366 60%, #128c7e 100%);
  position: relative;
  display: inline-block;
}
.topbar__whatsapp-icon::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 999px;
  background: transparent;
  box-shadow: inset 0 0 0 1.6px rgba(5, 8, 20, 0.85);
}
.topbar__whatsapp-icon::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.7px solid #fff;
  border-right-color: transparent;
  border-top-color: transparent;
  transform: rotate(40deg);
  top: 50%;
  left: 50%;
  margin-top: -4px;
  margin-left: -4px;
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(to bottom, rgba(5, 8, 20, 0.98), rgba(5, 8, 20, 0.92));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}
.navbar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 2rem;
}
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: radial-gradient(circle at 0 0, #f0c15b, #d1a249 30%, #050814 85%);
  border: 1px solid rgba(240, 193, 91, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.7);
}

.logo-icon__ring {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px solid rgba(5, 8, 20, 0.65);
  box-shadow: inset 0 0 0 1px rgba(240, 193, 91, 0.38);
}

.logo-icon__initials {
  position: relative;
  font-family: "Playfair Display", serif;
  font-size: 0.98rem;
  letter-spacing: 0.09em;
  color: #050814;
  font-weight: 700;
  text-transform: uppercase;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text__title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.96rem;
}
.logo-text__subtitle {
  font-size: 0.8rem;
  color: var(--text-soft);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.navbar__links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-soft);
}
.navbar__links a {
  position: relative;
  padding-bottom: 0.15rem;
}
.navbar__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 99px;
  transition: width 0.25s ease;
}
.navbar__links a:hover::after {
  width: 100%;
}
.navbar__button {
  flex-shrink: 0;
}
.hero {
  padding: 3.5rem 0 3.75rem;
  position: relative;
  overflow: hidden;
}
.hero__content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -40% auto;
  background: radial-gradient(circle at 0 0, rgba(240, 193, 91, 0.18), transparent 55%),
    radial-gradient(circle at 80% 0, rgba(78, 141, 255, 0.18), transparent 60%);
  opacity: 0.6;
  filter: blur(6px);
  pointer-events: none;
  animation: hero-glow 18s ease-in-out infinite alternate;
}

.hero__text h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 3vw + 1.2rem, 3.1rem);
  line-height: 1.18;
  letter-spacing: 0.01em;
  margin-bottom: 1.3rem;
}

.hero__avatar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.hero__avatar-photo-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.7);
}

.hero__avatar-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.hero__avatar-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero__avatar-name {
  font-size: 0.9rem;
  font-weight: 500;
}

.hero__avatar-oab {
  font-size: 0.78rem;
  color: var(--text-soft);
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.topbar__social {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(circle at 10% 0, rgba(240, 193, 91, 0.09), rgba(5, 8, 20, 0.95));
  font-size: 0.82rem;
  color: var(--text-soft);
}

.topbar__social-icon {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: radial-gradient(circle at 30% 30%, #f9ed69, #f08a5d 40%, #b83b5e 70%, #6a2c70 100%);
  position: relative;
  display: inline-block;
}

.topbar__social-icon::before,
.topbar__social-icon::after {
  content: "";
  position: absolute;
  border-radius: 6px;
}

.topbar__social-icon::before {
  inset: 2px;
  border: 1.6px solid #fff;
}

.topbar__social-icon::after {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1.4px solid #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.topbar__social:hover {
  border-color: rgba(240, 193, 91, 0.5);
  color: var(--primary);
}
.hero__text p {
  color: var(--text-soft);
  font-size: 0.98rem;
  max-width: 32rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}
.hero__badges {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.badge {
  padding: 0.7rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(240, 193, 91, 0.3);
  background: radial-gradient(circle at top left, rgba(240, 193, 91, 0.14), rgba(8, 10, 24, 0.9));
  box-shadow: var(--shadow-subtle);
}
.badge__title {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
}
.badge__text {
  display: block;
  font-size: 0.8rem;
  color: var(--text-soft);
}
.hero__card {
  background: radial-gradient(circle at 0 0, rgba(240, 193, 91, 0.14), #050814 55%, #020308 100%);
  border-radius: 26px;
  padding: 2rem 1.7rem;
  border: 1px solid rgba(240, 193, 91, 0.4);
  box-shadow: var(--shadow-soft);
}
.hero-card__header h2 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.hero-card__header p {
  font-size: 0.9rem;
  color: var(--text-soft);
}
.hero-card__form {
  margin-top: 1.4rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}
.field--hidden {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.field label {
  font-size: 0.85rem;
  color: var(--text-soft);
}
.field input,
.field select,
.field textarea {
  background: rgba(5, 8, 20, 0.9);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.7rem 0.85rem;
  color: var(--text);
  font-size: 0.9rem;
  outline: none;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(240, 193, 91, 0.7);
  box-shadow: 0 0 0 1px rgba(240, 193, 91, 0.4);
}
.field textarea {
  resize: vertical;
  min-height: 80px;
}
.field select {
  appearance: none;
}
.form__note {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-soft);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #050814;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.55);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
}
.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(240, 193, 91, 0.6);
  box-shadow: none;
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
}
.btn--full {
  width: 100%;
}
.btn--small {
  padding: 0.5rem 1.05rem;
  font-size: 0.83rem;
}
.section {
  padding: 3.25rem 0;
}
.section--alt {
  background: radial-gradient(circle at top right, rgba(240, 193, 91, 0.08), #050814 50%, #040712 100%);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}
.section__header {
  text-align: center;
  max-width: 540px;
  margin: 0 auto 2.3rem;
}
.section__header h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
}
.section__header p {
  font-size: 0.95rem;
  color: var(--text-soft);
}
.grid {
  display: grid;
  gap: 1.6rem;
}
.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: flex-start;
}
.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card {
  background: linear-gradient(145deg, rgba(16, 21, 40, 0.98), rgba(10, 14, 30, 0.98));
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem 1.4rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-subtle);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 0.6rem;
}
.card__list {
  list-style: none;
  font-size: 0.86rem;
  color: var(--text-soft);
}
.card__list li::before {
  content: "•";
  color: var(--primary);
  margin-right: 0.4rem;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.7);
  border-color: rgba(240, 193, 91, 0.35);
}
.list-check {
  list-style: none;
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}
.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
}
.list-check li::before {
  content: "✔";
  font-size: 0.7rem;
  color: var(--primary);
  margin-top: 0.2rem;
}
.highlight-box {
  background: radial-gradient(circle at top left, rgba(240, 193, 91, 0.16), #050814 60%, #020308 100%);
  border-radius: 22px;
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(240, 193, 91, 0.35);
  box-shadow: var(--shadow-soft);
}
.highlight-box h3 {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}
.highlight-box__list {
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 1.1rem;
}
.highlight-box__list li {
  position: relative;
  padding-left: 1rem;
}
.highlight-box__list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 0.5rem;
}
.about-photo-large {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.about-photo-large__img {
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 26px;
  border: 1px solid rgba(240, 193, 91, 0.5);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.85);
  object-fit: cover;
  background: radial-gradient(circle at top, rgba(240, 193, 91, 0.16), #050814 60%, #020308 100%);
}
.testimonial {
  background: linear-gradient(145deg, rgba(16, 21, 40, 0.96), rgba(9, 13, 27, 0.96));
  border-radius: var(--radius-md);
  padding: 1.2rem 1.1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.testimonial::before {
  content: "";
  position: absolute;
  font-size: 4rem;
  color: rgba(240, 193, 91, 0.2);
  top: -10px;
  right: 12px;
}
.testimonial__text {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 0.8rem;
}
.testimonial__name {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
}
.testimonial__tag {
  display: block;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.65);
  border-color: rgba(240, 193, 91, 0.3);
}
.section--cta {
  background: radial-gradient(circle at top left, rgba(240, 193, 91, 0.14), #050814 55%, #020309 100%);
  border-top: 1px solid rgba(240, 193, 91, 0.25);
  border-bottom: 1px solid rgba(240, 193, 91, 0.15);
}
.section-cta__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}
.section-cta__content h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}
.section-cta__content p {
  font-size: 0.95rem;
  color: var(--text-soft);
}
.section-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.btn--light {
  background: #f5f5f7;
  color: #050814;
}
.btn--ghost-light {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.footer {
  padding: 1.8rem 0 1.6rem;
  background: #040712;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: var(--text-soft);
}
.footer__title {
  font-weight: 500;
}
.footer__subtitle {
  display: block;
  font-size: 0.78rem;
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
@media (max-width: 920px) {
  .navbar__links {
    display: none;
  }
  .navbar__button {
    margin-left: auto;
  }
  .hero__content {
    grid-template-columns: 1fr;
  }
  .hero__card {
    order: -1;
  }
  .section-cta__content {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 720px) {
  .topbar__content {
    flex-direction: column;
    gap: 0.35rem;
    text-align: center;
  }
  .topbar__actions {
    flex-wrap: wrap;
    justify-content: center;
  }
  .navbar__content {
    padding: 0.75rem 0;
  }
  .hero {
    padding-top: 2.4rem;
  }
  .about-photo-large {
    justify-content: center;
    margin-top: 1.6rem;
  }
  .about-photo-large__img {
    max-width: 260px;
  }
  .hero__text h1 {
    font-size: 1.9rem;
  }
  .hero__card {
    padding: 1.6rem 1.3rem;
  }
  .grid--3 {
    grid-template-columns: 1fr;
  }
  .grid--2 {
    grid-template-columns: 1fr;
  }
}

@keyframes hero-glow {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(8px, 6px, 0) scale(1.03);
  }
  100% {
    transform: translate3d(-6px, 10px, 0) scale(1.02);
  }
}

/* Logo animada */
.logo-icon {
  position: relative;
  overflow: hidden;
  animation: logo-float 6s ease-in-out infinite;
}

.logo-icon::before {
  content: "";
  position: absolute;
  inset: -40%;
  border-radius: 28px;
  background: conic-gradient(
    from 0deg,
    rgba(240, 193, 91, 0.05),
    rgba(240, 193, 91, 0.8),
    rgba(209, 162, 73, 0.18),
    rgba(240, 193, 91, 0.05)
  );
  mix-blend-mode: screen;
  opacity: 0.7;
  animation: logo-orbit 14s linear infinite;
}
 .logo-icon__ring {
  animation: logo-breathe 3.5s ease-in-out infinite;
}

@keyframes logo-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes logo-orbit {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes logo-breathe {
  0%, 100% {
    transform: scaleX(1);
    opacity: 0.9;
  }
  50% {
    transform: scaleX(1.08);
    opacity: 1;
  }
}
.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}
.footer__social:hover {
  text-decoration: underline;
}

.instagram-icon {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: radial-gradient(circle at 30% 30%, #f9ed69, #f08a5d 40%, #b83b5e 70%, #6a2c70 100%);
  position: relative;
  display: inline-block;
  margin-right: 0.35rem;
}

.instagram-icon::before,
.instagram-icon::after {
  content: "";
  position: absolute;
  border-radius: 6px;
}

.instagram-icon::before {
  inset: 2px;
  border: 1.6px solid #fff;
}

.instagram-icon::after {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1.4px solid #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
