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

:root {
  --primary: #5B7B6F;
  --primary-dark: #4A6A5E;
  --primary-light: #7A9B8F;
  --accent: #C8A96E;
  --accent-dark: #B0924F;
  --bg: #F5F0E8;
  --bg-alt: #EDE8DD;
  --white: #FAFAF5;
  --dark: #2D3436;
  --text: #4A4A4A;
  --text-light: #6B6B6B;
  --shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'DM Sans', 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

h1, h2, h3, h4 {
  color: var(--dark);
  line-height: 1.3;
}

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(250, 250, 245, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav__logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__logo-img {
  width: 40px;
  height: 40px;
  max-width: 40px;
  max-height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav__logo span {
  color: var(--accent);
}

.nav__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 0.25rem 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

.nav__link:hover,
.nav__link.active {
  color: var(--primary);
}

.nav__cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

.nav__cta::after {
  display: none;
}

.nav__cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* Mobile menu */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
  background: none;
  border: none;
  -webkit-appearance: none;
  appearance: none;
}

.nav__toggle span {
  width: 25px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 2rem 60px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero__tag {
  display: inline-block;
  background: rgba(91, 123, 111, 0.1);
  color: var(--primary);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.hero__title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

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

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.hero__description {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 1.2rem;
  max-width: 500px;
}

.hero__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  max-width: 520px;
  list-style: none;
  padding: 0;
}

.hero__credentials li {
  background: rgba(91, 123, 111, 0.1);
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  border: 1px solid rgba(91, 123, 111, 0.2);
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(131,58,180,0.08), rgba(225,48,108,0.08), rgba(247,119,55,0.08));
  border: 1px solid rgba(225,48,108,0.15);
  color: #C13584;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.hero__instagram:hover {
  background: linear-gradient(135deg, rgba(131,58,180,0.15), rgba(225,48,108,0.15), rgba(247,119,55,0.15));
  border-color: rgba(225,48,108,0.3);
  transform: translateY(-1px);
  color: #A02070;
}

.hero__instagram svg {
  flex-shrink: 0;
}

.hero__instagram-label {
  color: var(--text-light);
  font-weight: 400;
  font-size: 0.82rem;
  margin-left: 0.25rem;
}

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

.hero__image img {
  width: 420px;
  height: 420px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: inherit;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(91, 123, 111, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--accent {
  background: var(--accent);
  color: #111;
}

.btn--accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(200, 169, 110, 0.3);
}

.btn--whatsapp {
  background: #0A7C5F;
  color: #fff;
}

.btn--whatsapp:hover {
  background: #086B50;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(10, 124, 95, 0.3);
}

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

/* ===== SECTIONS ===== */
.section {
  padding: 100px 2rem;
}

.section--alt {
  background: var(--bg-alt);
}

.section--white {
  background: var(--white);
}

.section__container {
  max-width: 1100px;
  margin: 0 auto;
}

.section__container--center {
  text-align: center;
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.section__tag {
  display: inline-block;
  background: rgba(91, 123, 111, 0.1);
  color: var(--primary);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section__title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== ABOUT PREVIEW (Home) ===== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-preview__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-preview__content h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.about-preview__content p {
  margin-bottom: 1rem;
  color: var(--text);
}

.about-preview__content .btn {
  margin-top: 1rem;
}

/* ===== CARDS ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: rgba(91, 123, 111, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.card__text {
  color: var(--text-light);
  font-size: 0.95rem;
}

.card--center {
  text-align: center;
}

.card__icon--center {
  margin: 0 auto 1.5rem;
}

.cards--payment {
  max-width: 700px;
  margin: 0 auto;
}

/* ===== APPROACH CARDS ===== */
.approach-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
  margin-bottom: 2rem;
}

.approach-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.approach-card__text {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.8;
}

/* ===== QUALIFICATIONS LIST ===== */
.qualifications {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.qualification-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.qualification-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.qualification-item__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(91, 123, 111, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
}

.qualification-item__text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

/* ===== PROCESS STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.step {
  text-align: center;
  padding: 2rem;
}

.step__number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.step__text {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===== PRICING ===== */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  border-color: var(--primary);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 0.3rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.pricing-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.pricing-card__desc {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.pricing-card__price {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.pricing-card__price small {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
}

.pricing-card__info {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.pricing-card__features {
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-card__features li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.pricing-card__features li::before {
  content: '\2713';
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  padding: 2.5rem;
  background: var(--primary);
  border-radius: var(--radius);
  color: var(--white);
}

.contact-info h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-info p {
  opacity: 1;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-item__label {
  font-size: 0.8rem;
  opacity: 1;
  color: rgba(255, 255, 255, 0.85);
  display: block;
  margin-bottom: 0.2rem;
}

.contact-item__value {
  font-weight: 600;
  font-size: 1rem;
}

.contact-info__cta {
  margin-top: 2rem;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid #e0ddd5;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--bg);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}

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

.form-disclaimer {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.form-disclaimer a {
  text-decoration: underline;
}

/* ===== TESTIMONIALS ===== */
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--primary-light);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
  opacity: 0.3;
}

.testimonial__text {
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.testimonial__author {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.9rem;
}

/* ===== CTA SECTION ===== */
.cta {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 80px 2rem;
}

.cta h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta p {
  opacity: 1;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta .btn--whatsapp {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 2rem 30px;
}

.footer__container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer__brand h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.footer__brand h3 span {
  color: var(--accent);
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer__brand small {
  font-size: 0.8rem;
  opacity: 0.6;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.footer__links li {
  margin-bottom: 0.6rem;
}

.footer__links a {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer__links a:hover {
  opacity: 1;
  color: var(--accent);
}

.footer__bottom {
  max-width: 1100px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 140px 2rem 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
}

.page-header p {
  opacity: 1;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== GALLERY (optional) ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: var(--transition);
}

.gallery img:hover {
  transform: scale(1.02);
}

/* ===== ABOUT PREVIEW REVERSE ===== */
.about-preview--reverse {
  direction: ltr;
}

.about-preview--reverse .about-preview__image {
  order: 2;
}

.about-preview--reverse .about-preview__content {
  order: 1;
}

/* ===== NAV OVERLAY ===== */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.nav__overlay.active {
  display: block;
}

body.menu-open {
  overflow: hidden;
}

/* ===== INSTAGRAM SECTION ===== */
.instagram-section {
  background: var(--white);
}

.instagram-preview {
  display: flex;
  justify-content: center;
}

.instagram-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow);
  text-align: center;
}

.instagram-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  text-align: left;
}

.instagram-card__avatar {
  width: 48px;
  height: 48px;
  max-width: 48px;
  max-height: 48px;
  border-radius: 50%;
  object-fit: contain;
  border: 2px solid var(--accent);
  padding: 2px;
  background: var(--white);
}

.instagram-card__handle {
  display: block;
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
}

.instagram-card__label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
}

.instagram-card__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.instagram-card__topics span {
  background: rgba(91, 123, 111, 0.1);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.3rem 0.7rem;
  border-radius: 16px;
  border: 1px solid rgba(91, 123, 111, 0.15);
}

.instagram-card__bio {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.instagram-card__btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
  border: none;
}

.instagram-card__btn:hover {
  background: linear-gradient(135deg, #7232A0, #C92A5E, #E06B2F);
}

/* ===== WHATSAPP CHAT WIDGET ===== */
.wa-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
}

.wa-widget__btn {
  width: 60px;
  height: 60px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  margin-left: auto;
}

.wa-widget__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.wa-widget__chat {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  pointer-events: none;
  transition: all 0.3s ease;
}

.wa-widget__chat.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-widget__header {
  background: #075E54;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-widget__wa-icon {
  flex-shrink: 0;
}

.wa-widget__header-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.wa-widget__name {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
}

.wa-widget__status {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
}

.wa-widget__close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.wa-widget__close:hover {
  opacity: 1;
}

.wa-widget__body {
  padding: 20px 16px;
  background: #E5DDD5;
}

.wa-widget__msg {
  background: #fff;
  padding: 10px 14px;
  border-radius: 0 8px 8px 8px;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.5;
  max-width: 85%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.wa-widget__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.wa-widget__cta:hover {
  background: #1EBE5A;
  color: #fff;
}

@supports (bottom: env(safe-area-inset-bottom)) {
  .wa-widget {
    bottom: max(24px, env(safe-area-inset-bottom));
    right: max(24px, env(safe-area-inset-right));
  }
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--dark);
  padding: 0.75rem 1rem;
  z-index: 2000;
  border-radius: 0 0 12px 0;
  box-shadow: var(--shadow);
  font-weight: 600;
  font-size: 0.9rem;
}

.skip-link:focus {
  transform: translateY(0);
}

/* ===== SR ONLY ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===== FOCUS VISIBLE ===== */
*:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline: 3px solid var(--primary-dark);
  outline-offset: 3px;
}

.nav__link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ===== CARD LINK ===== */
.card--link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.card--link:hover {
  color: inherit;
}

.card__cta {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
}

.card--link:hover .card__cta {
  text-decoration: underline;
}

/* ===== NOTICE ===== */
.notice {
  background: var(--bg-alt);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.notice__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.notice__text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== FAQ SECTION ===== */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.faq-item__question {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.faq-item__answer {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }
}

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

  .hero__title {
    font-size: 2.4rem;
  }

  .hero__description {
    margin: 0 auto 1.2rem;
  }

  .hero__credentials {
    justify-content: center;
    margin: 0 auto 2rem;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__image {
    order: -1;
  }

  .hero__image img {
    width: 300px;
    height: 300px;
  }

  .about-preview {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

  .footer__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 2rem 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .nav__links.active {
    right: 0;
  }

  .nav__overlay {
    z-index: 999;
  }

  .nav__toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 120px 1.5rem 60px;
  }

  .hero__title {
    font-size: 2rem;
  }

  .section {
    padding: 60px 1.5rem;
  }

  .section__title {
    font-size: 1.8rem;
  }

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

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

  .page-header {
    padding: 120px 1.5rem 40px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .cta h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.7rem;
  }

  .hero__image img {
    width: 240px;
    height: 240px;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== Legal Pages ===== */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
}

.legal-content h2 {
  font-size: 1.3rem;
  color: var(--dark);
  margin: 2rem 0 0.75rem;
}

.legal-content p {
  margin-bottom: 1rem;
  color: var(--text);
}

.legal-content ul {
  margin: 0 0 1rem 1.5rem;
  color: var(--text);
}

.legal-content ul li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}
