:root {
  --primary: #d24a67;
  --secondary: #7ea46f;
  --footer: #a1324a;
  --text: #3d2a2f;
  --text-soft: #5a3f46;
  --bg: #fff7f9;
  --white: #ffffff;
  --border-pink: #f1d6db;
  --light-pink: #fff0f4;
  --soft-green: #f1f7ef;
  --header-border: rgba(210, 74, 103, 0.12);
  --shadow-soft: 0 12px 30px rgba(61, 42, 47, 0.06);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1{
  font-size: 4.5rem;
}

h2{
  font-size: 3.5rem;
}

h3{
  font-size: 2rem;
}


html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
}

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

a {
  text-decoration: none;
}

button {
  font-family: inherit;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  top: 0;
  z-index: 1000;
  background: rgba(255, 247, 249, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--header-border);
}

.header-container {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 700;
}

.header-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

@media (max-width: 640px) {
  .header-logo-img {
    height: 42px;
  }
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  transition: 0.25s ease;
}

.desktop-nav a:hover {
  color: var(--primary);
}

.instagram-link {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(210, 74, 103, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary) !important;
  background: rgba(255, 255, 255, 0.7);
}

.instagram-link svg {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(210, 74, 103, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0 11px;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
  transition: 0.25s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--header-border);
  background: rgba(255, 247, 249, 0.98);
}

.mobile-menu.active {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 10px 24px 20px;
}

.mobile-nav a {
  padding: 14px 0;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid rgba(210, 74, 103, 0.08);
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

/* GENERAL */
.section {
  padding: 88px 0;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin-bottom: 14px;
}

.section-tag-green {
  color: var(--secondary);
}

.section-header {
  max-width: 760px;
}

.section-header.center {
  text-align: center;
  margin: 0 auto;
}

.section-header h2,
.bio-text h2,
.cta-box h2 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 18px;
}

.section-header p,
.bio-paragraphs p,
.cta-box p {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text-soft);
}

.bio-paragraphs {
  display: grid;
  gap: 18px;
}

/* HERO */
.hero {
  background: linear-gradient(90deg, #f3c7cf 0%, #f6d4da 52%, #e6efe3 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  padding-top: 30px;
}

.hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  font-weight: 800;
}

.hero-content p {
  margin-top: 22px;
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 620px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 18px;
  font-size: 1rem;
  font-weight: 600;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(210, 74, 103, 0.22);
}

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

.btn-outline {
  background: var(--white);
  color: var(--primary);
  border: 1px solid rgba(210, 74, 103, 0.25);
}

.btn-outline:hover {
  background: var(--light-pink);
}

.hero-image {
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  max-height: 620px;
  width: auto;
  object-fit: contain;
}

/* BIO */
.bio-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.bio-grid p{
   font-size:1rem;
  line-height:1.7;
  color:#5a3f46;
}



.bio-image img{
  width:100%;
  border-radius:24px;
  object-fit:cover;
}

@media (max-width:900px){

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

}
.bio-cards {
  display: grid;
  gap: 20px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border-pink);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

.card-soft-green {
  background: #f4f9f2;
  border-color: #dbe8d6;
}

.card h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.card p,
.card li {
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.8;
}

.card ul {
  padding-left: 18px;
}

/* SERVICES */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 42px;
}

.service-card {
  background: #fff7f9;
  border: 1px solid var(--border-pink);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(61, 42, 47, 0.04);
  transition: 0.25s ease;
}

.service-card p{
  margin-top:10px;
  font-size:0.85rem;
  line-height:1.6;
  color:#5a3f46;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: #f8dbe1;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.05rem;
  line-height: 1.6;
}

.services-cta{
  display:flex;
  justify-content:center;
  margin-top:40px;
}

.btn-agendar{
  background:#d24a67;
  color:white;
  padding:16px 36px;
  border-radius:16px;
  font-weight:600;
  font-size:16px;
  text-decoration:none;
  box-shadow:0 12px 24px rgba(210,74,103,0.25);
  transition:all .25s ease;
}

.btn-agendar:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 28px rgba(210,74,103,0.35);
}



/* DIFFERENTIALS */

.differentials{
  background: linear-gradient(90deg, var(--primary), var(--secondary));

}
.differentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  color: var(--white);
  border-radius: 32px;
  padding: 32px;
}

.diff-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 26px;
  backdrop-filter: blur(8px);
}

.diff-box h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.diff-box p {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

/* FAQ */
.faq {
  background: #fffafb;
}

.faq-container {
  max-width: 940px;
}

.faq-list {
  margin-top: 42px;
  display: grid;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border-pink);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(61, 42, 47, 0.04);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--text);
}

.faq-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--light-pink);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 26px 24px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-soft);
}

/* CTA */
.cta {
  background: #73a669;
}

.cta-box {
  text-align: center;
  max-width: 760px;
  color: white;
}

.cta-box p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: white;
}

/* FOOTER */
.footer {
  background: var(--footer);
  color: var(--white);
  padding: 56px 0;
}

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

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-logo-img {
  height: 86px;
  width: auto;
  display: block;
}

@media (max-width: 640px) {
  .footer-logo-img {
    height: 46px;
  }
}

.footer h3 {
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer-text,
.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  font-size: 0.96rem;
}

.footer-links {
  display: grid;
  gap: 10px;
}

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

/* RESPONSIVE */
@media (max-width: 991px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-grid,
  .bio-grid,
  .footer-grid,
  .differentials-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    justify-content: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(1120px, calc(100% - 32px));
  }

  .section {
    padding: 70px 0;
  }

  .header-container {
    min-height: 74px;
  }

  .logo-text {
    font-size: 0.92rem;
  }

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

  .btn {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .faq-question {
    font-size: 1rem;
    padding: 20px;
  }

  .faq-answer p {
    padding: 0 20px 20px;
  }

  .card,
  .service-card,
  .diff-box {
    padding: 22px;
  }


  .section-header h2,
  .bio-text h2,
  .cta-box h2 {
    font-size: 2rem;
  }
}