/* Reset e Base */
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&family=Marcellus:wght@400&display=swap");

:root {
  --primary-pink: #e11d48;
  --light-pink: #fb7185;
  --soft-pink: #f8f0f0;
  --cream: #f5f1eb;
  --dark-gray: #1f2937;
  --medium-gray: #374151;
  --light-gray: #4b5563;
  --white: #ffffff;
  --gold: #caa26a;
  --pink-bg: #fce7e7;
  --gradient-bg: linear-gradient(
    130deg,
    rgba(248, 240, 240, 0) 0%,
    rgba(255, 250, 248, 1) 100%
  );
  --cta-gradient: linear-gradient(
    148deg,
    rgba(202, 162, 106, 1) 0%,
    rgba(225, 29, 72, 1) 60%,
    rgba(202, 162, 106, 1) 100%
  );
}

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: "Playfair Display", serif;
  line-height: 1.6;
  color: var(--dark-gray);
}

/* Container */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  width: 100%;
}

/* Header */
.header {
  background: var(--white);
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  height: 50px;
}

.navigation ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
}

.navigation a {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--medium-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.navigation a:hover {
  color: var(--primary-pink);
}

/* Menu Hambúrguer */
.hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 4px;
  z-index: 1001;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--dark-gray);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-4.5px, 4px);
  width: 18px;
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(45deg) translate(-4.5px, -4px);
  width: 18px;
}

/* Menu Mobile */
.mobile-navigation {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}

.mobile-navigation.active {
  transform: translateY(0);
  display: block;
}

.mobile-navigation ul {
  list-style: none;
  margin: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-navigation a {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--medium-gray);
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 16px 0;
  border-bottom: 1px solid #f3f4f6;
  display: block;
}

.mobile-navigation a:hover {
  color: var(--primary-pink);
}

.mobile-cta {
  width: 100%;
  padding: 16px 24px;
  border-radius: 32px;
  font-size: 18px;
  text-align: center;
  border: none;
}

/* Buttons */
.btn-primary {
  background: var(--primary-pink);
  color: var(--white);
  border: none;
  border-radius: 32px;
  padding: 12px 24px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
  background: #c41e3a;
  transform: translateY(-2px);
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp {
  background: var(--white);
  color: var(--primary-pink);
  border: none;
  border-radius: 50px;
  padding: 16px 32px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1), 0px 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.15);
}

.divider {
  width: 64px;
  height: 4px;
  background: var(--light-pink);
  border-radius: 2px;
}

.whatsapp-icon {
  font-size: 20px;
}

/* Hero Section */
.hero {
  background: var(--gradient-bg);
}

.hero-logo {
  width: 100%;
  max-width: 470px;
}

.hero-frame-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border: "8px solid var(--light-pink)";
  border-radius: 16px;
  box-shadow: 0px 20px 25px rgba(0, 0, 0, 0.1), 0px 8px 10px rgba(0, 0, 0, 0.1);
}

.hero-content {
  display: flex;
  justify-content: center;
  gap: 60px;
  align-items: center;
  padding: 32px 0 32px;
  margin-top: 72px;
  width: 100%;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 532px;
  width: 100%;
}

.hero-name {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 48px;
  color: var(--gold);
  margin: 0;
  background: linear-gradient(45deg, var(--gold), var(--primary-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--dark-gray);
  margin: 0;
}

.hero-credentials {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--light-gray);
  margin: 0;
}

.hero-features {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--medium-gray);
}

.hero-features .icon {
  font-size: 24px;
}

.hero-image {
  display: flex;
  justify-content: center;
  max-width: 532px;
  width: 100%;
}
.hero-image-div {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-frame-image {
  position: relative;
  width: 100%;
  max-width: 532px;
  height: auto;
  object-fit: cover;
  padding: 8px;
  border: "8px solid var(--white)";
  border-radius: 200px;
  box-shadow: 0px 20px 25px rgba(0, 0, 0, 0.1), 0px 8px 10px rgba(0, 0, 0, 0.1);
}

.social-indicators {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}

.heart-icon-1 {
  font-size: 24px;
  position: absolute;
  animation: pulse 2s infinite;
  z-index: 10;
  width: 56px;
  height: 64px;
  padding: 0;
  right: 0;
  bottom: 100px;
  border-radius: 999px;
  box-shadow: 0px 20px 25px rgba(0, 0, 0, 0.1);
}

.heart-icon-2 {
  font-size: 24px;
  position: absolute;
  animation: pulse 2s infinite;
  z-index: 9;
  width: 40px;
  height: 46px;
  right: -25px;
  bottom: 80px;
  border-radius: 999px;
  box-shadow: 0px 20px 25px rgba(0, 0, 0, 0.1);
}

.about-section {
  background: var(--white);
  display: flex;
  gap: 64px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-photo {
  width: 100%;
  max-width: 532px;
  height: 100%;
  max-height: 707px;
  overflow: hidden;
}

.about-photo div {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.about-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.about-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 532px;
}

.about-card h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--dark-gray);
  margin: 0;
}

.about-text {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--medium-gray);
  line-height: 30px;
  margin: 0;
  margin-top: 24px;
}

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

.who-section {
  padding: 24px 0;
  display: flex;
  gap: 64px;
  align-items: center;
  justify-content: center;
}

.who-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 532px;
}
.who-card h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--dark-gray);
  margin: 0;
}

.personal-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.fact-item {
  background: var(--white);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.fact-icon {
  font-size: 20px;
  color: var(--primary-pink);
}

.fact-item p {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--medium-gray);
  margin: 0;
}

.who-photo {
  width: 100%;
  max-width: 532px;
}

.who-photo div {
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.who-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.personal-photos {
  margin-top: 20px;
}

.photo-collage {
  height: 583px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.photo-collage img {
  width: 100%;
  object-fit: cover;
}

.specialization {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.specialization-icon {
  min-width: 48px;
  min-height: 48px;
  background: #ffe4e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.specialization span {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--light-gray);
}

/* Services Section */
.services {
  padding: 80px 0;
  background: var(--white);
}

.services h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--dark-gray);
  text-align: center;
}

.services .divider {
  margin: 0 auto 24px auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--soft-pink);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1), 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:nth-child(2n) {
  background: var(--cream);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.female-icon {
  font-size: 24px;
  color: var(--white);
}

.service-card h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--dark-gray);
  margin: 0;
}

.service-card p {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--medium-gray);
  margin: 0;
  line-height: 24px;
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: #f9fafb;
}

.testimonials h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--dark-gray);
  text-align: center;
}

.testimonials .divider {
  margin: 0 auto 40px auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1), 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.stars {
  font-size: 20px;
  color: var(--gold);
}

.testimonial-card blockquote {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--light-gray);
  line-height: 24px;
  margin: 0;
  font-style: italic;
}

.testimonial-card cite {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--dark-gray);
  font-style: normal;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: var(--cta-gradient);
  text-align: center;
}

.cta-section h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 36px;
  color: var(--white);
  margin: 0 0 16px 0;
  line-height: 40px;
}

.cta-section p {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 20px;
  color: #ffe4e6;
  margin: 0 0 32px 0;
}

.cta-section-button {
  display: flex;
  justify-content: center;
}

/* Footer */
.footer {
  background: var(--dark-gray);
  padding: 48px 0 32px;
  color: var(--white);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 32px;
}

.footer-section h3 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 16px 0;
}

.footer-section p {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 16px;
  color: #d1d5db;
  margin: 0 0 8px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-icon {
  font-size: 16px;
}

.contact-item a {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 16px;
  color: #d1d5db;
  text-decoration: none;
}

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

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.social-link img {
  width: 24px;
  height: 24px;
}

.social-link:hover {
  transform: scale(1.1);
}

.social-link span {
  font-size: 20px;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 32px;
  text-align: center;
}

.footer-bottom p {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 16px;
  color: #9ca3af;
  margin: 0;
}

/* Responsive Design */

@media (max-width: 1400px) {
  .container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 64px;
    width: 100%;
  }
}

@media (max-width: 991px) {
  .container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
  }
  .hamburger-menu {
    display: flex;
  }

  .navigation {
    display: none;
  }

  .services {
    padding: 24px 0;
  }

  .mobile-navigation {
    /* display: block; */
  }
  .mobile-navigation ul {
    padding: 24px 32px;
    /* display: block; */
  }

  .about-section {
    gap: 24px;
  }

  .cta-button {
    display: none !important;
  }

  .header-content {
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1001;
  }

  .logo {
    order: 1;
    position: relative;
    z-index: 1002;
  }

  .hamburger-menu {
    order: 2;
    position: relative;
    z-index: 1002;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .header-content {
    padding: 0;
  }

  .hero-text {
    align-items: center;
  }
  .hero-features li {
    justify-content: center;
  }

  .navigation ul {
    gap: 16px;
  }

  .hero {
    padding: 32px 0 24px;
  }

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

  .hero-name {
    font-size: 36px;
  }

  .hero-title {
    font-size: 28px;
  }
  .about-section {
    flex-direction: column-reverse;
  }

  .who-section {
    flex-direction: column;
  }

  .personal-facts {
    grid-template-columns: 1fr;
  }

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

  .testimonials {
    padding: 24px 0;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-section {
    padding: 24px 0;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .cta-section p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .hero-name {
    font-size: 28px;
  }

  .hero-title {
    font-size: 24px;
  }

  .about-card h2,
  .services h2,
  .testimonials h2 {
    font-size: 28px;
  }

  .cta-section h2 {
    font-size: 24px;
  }

  .mobile-navigation ul {
    padding: 16px;
  }

  .mobile-navigation a {
    font-size: 16px;
    padding: 10px 0;
  }
}

/* Telas muito pequenas (mínimo 325px) */
@media (max-width: 400px) {
  .container {
    padding: 0 12px;
  }

  .header-content {
    padding: 0px;
  }

  .logo {
    height: 40px;
  }

  .hamburger-line {
    width: 20px;
  }

  .mobile-navigation ul {
    padding: 12px;
    gap: 12px;
  }

  .mobile-navigation a {
    font-size: 15px;
    padding: 8px 0;
  }

  .mobile-cta {
    padding: 10px 20px;
    font-size: 14px;
  }
}
