:root {
  --color-primary: #3d1e24;
  --color-secondary: #6b3e44;
  --color-accent: #f5e6c4;
  --color-accent-hover: #ebd79b;
  --color-bg-main: #f9f7f2;
  --color-bg-card: #faf4eb;
  --color-bg-alt: #f3efe6;
  --color-text-main: #261719;
  --color-text-muted: #594548;
  --color-white: #ffffff;

  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 90px;
}

body {
  background-color: var(--color-bg-main);
  color: var(--color-text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.2;
  font-weight: 600;
}

p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center {
  text-align: center;
}

.section-padding {
  padding: 5rem 0;
}

.animate-left {
  opacity: 0;
  transform: translateX(-60px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-right {
  opacity: 0;
  transform: translateX(60px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-active {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.25s;
}
.delay-3 {
  transition-delay: 0.4s;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fdfdfd;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(61, 30, 36, 0.08);
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-main);
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link:hover {
  color: var(--color-secondary);
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-secondary);
  transition: var(--transition-smooth);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-primary);
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 992px) {
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--color-bg-main);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-menu.active {
    transform: translateX(0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--color-primary);
  color: var(--color-accent);
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1.05rem;
  border: 1px solid var(--color-primary);
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(61, 30, 36, 0.15);
}

.btn:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(61, 30, 36, 0.25);
}

.btn-gold-border {
  position: relative;
  padding: 1.1rem 2.2rem;
  background-color: var(--color-primary);
  color: var(--color-accent);
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: 0 4px 20px rgba(61, 30, 36, 0.2);
  transition: var(--transition-smooth);
}

.btn-gold-border::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    transparent,
    rgba(245, 230, 196, 0.1),
    #f3e3b6,
    #d4af37,
    #f3e3b6,
    transparent 40%
  );
  animation: rotate-gold 3.5s linear infinite;
  z-index: -2;
}

.btn-gold-border::after {
  content: "";
  position: absolute;
  inset: 2px;
  background-color: var(--color-primary);
  border-radius: calc(var(--radius-md) - 2px);
  z-index: -1;
  transition: var(--transition-smooth);
}

.btn-gold-border:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  color: var(--color-white);
}

.btn-gold-border:hover::after {
  background-color: var(--color-secondary);
}

@keyframes rotate-gold {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.badge {
  display: inline-block;
  background-color: rgba(61, 30, 36, 0.08);
  color: var(--color-primary);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero {
  padding: 9rem 0 4rem 0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.hero-content p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  text-align: justify;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(38, 23, 25, 0.12);
  border: 4px solid var(--color-white);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.micro-copy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
}

@media (max-width: 868px) {
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .hero-image-wrapper {
    order: 1;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }

  .hero-content {
    order: 2;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.1rem;
    line-height: 1.25;
  }

  .micro-copy {
    justify-content: center;
  }
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.card-item {
  background-color: var(--color-bg-card);
  padding: 2.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(107, 62, 68, 0.1);
  transition: var(--transition-smooth);
}

.card-item:hover {
  transform: translateY(-6px);
  border-color: var(--color-secondary);
  box-shadow: 0 10px 30px rgba(61, 30, 36, 0.08);
}

.card-item h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.modalidades-section .cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  max-width: 900px;
  margin: 2.5rem auto 0 auto;
}

.modalidades-section .card-item {
  border-top: 4px solid var(--color-primary);
}

.quote-banner {
  background-color: var(--color-primary);
  color: var(--color-accent);
  text-align: center;
  padding: 4.5rem 1.5rem;
  margin: 3rem 0;
}

.quote-banner blockquote {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  max-width: 800px;
  margin: 0 auto 1rem auto;
  font-style: italic;
  line-height: 1.3;
}

.quote-banner cite {
  display: block;
  font-style: normal;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--color-white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sobre-section {
  background-color: var(--color-bg-card);
  border-top: 1px solid rgba(61, 30, 36, 0.05);
  border-bottom: 1px solid rgba(61, 30, 36, 0.05);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: stretch;
}

.sobre-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}

.sobre-image-card {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(38, 23, 25, 0.1);
  border: 4px solid var(--color-white);
  width: 100%;
  height: 100%;
}

.sobre-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.sobre-image-backdrop {
  position: absolute;
  top: 15px;
  left: -15px;
  width: 100%;
  height: 100%;
  background-color: rgba(107, 62, 68, 0.08);
  border-radius: var(--radius-lg);
  z-index: 1;
}

.sobre-content h2 {
  font-size: 2.3rem;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.sobre-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.sobre-content p {
  text-align: justify;
}

.sobre-list {
  list-style: none;
  margin: 1.75rem 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sobre-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.98rem;
  color: var(--color-text-main);
}

.sobre-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--color-secondary);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 868px) {
  .sobre-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: start;
  }

  .sobre-content {
    text-align: left;
  }

  .sobre-content h2 {
    font-size: 1.8rem;
  }

  .sobre-image-backdrop {
    display: none;
  }

  .sobre-image-wrapper {
    max-width: 480px;
    margin: 0 auto;
    height: auto;
  }

  .sobre-image-card {
    height: auto;
  }

  .sobre-image-card img {
    height: auto;
  }
}

.referencias-section {
  background-color: var(--color-bg-alt);
  position: relative;
  overflow: hidden;
}

.referencias-section .container.text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.referencias-section h2 {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.section-subtitle {
  max-width: 580px;
  margin: 0 auto 2.5rem auto;
  color: var(--color-text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

.referencias-visual-container {
  position: relative;
  max-width: 600px;
  width: 100%;
  margin: 0 auto 3rem auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--color-white);
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow:
    0 4px 6px -1px rgba(59, 30, 30, 0.05),
    0 15px 35px -5px rgba(59, 30, 30, 0.12);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.referencias-visual-container:hover {
  transform: translateY(-6px);
  box-shadow:
    0 10px 15px -3px rgba(59, 30, 30, 0.08),
    0 25px 45px -10px rgba(59, 30, 30, 0.18);
  border-color: var(--color-accent);
}

.referencias-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.referencias-visual-container:hover .referencias-img {
  transform: scale(1.02);
}

.referencias-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 500px;
}

.referencias-cta p {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1.5;
}

.faq-list {
  max-width: 750px;
  margin: 2.5rem auto 0 auto;
}

.faq-item {
  background-color: var(--color-bg-card);
  border: 1px solid rgba(107, 62, 68, 0.12);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-button {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease-out,
    padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-content {
  padding: 0 1.5rem 1.25rem 1.5rem;
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.final-cta-section {
  position: relative;
  background-color: var(--color-primary);
  border-top: 1px solid rgba(245, 230, 196, 0.2);
}

footer {
  background-color: var(--color-primary);
  color: var(--color-accent);
  padding: 4rem 0 2rem 0;
  border-top: 3px solid var(--color-accent-hover);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(245, 230, 196, 0.15);
}

.footer-brand h3 {
  color: var(--color-accent);
  font-size: 1.8rem;
  margin-bottom: 0.2rem;
}

.footer-tagline {
  color: var(--color-accent-hover);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.footer-quote {
  color: rgba(245, 230, 196, 0.7);
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.social-label {
  font-size: 0.85rem;
  color: rgba(245, 230, 196, 0.8);
  letter-spacing: 0.5px;
}

.instagram-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background-color: rgba(245, 230, 196, 0.08);
  color: var(--color-accent);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(245, 230, 196, 0.2);
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.instagram-btn:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
}

.footer-bottom p {
  color: rgba(245, 230, 196, 0.5);
  font-size: 0.8rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-social {
    align-items: center;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: var(--transition-smooth);
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: var(--color-white);
}

.whatsapp-float::before {
  content: "Fale com a Vanessa";
  position: absolute;
  right: 70px;
  background-color: var(--color-primary);
  color: var(--color-accent);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.whatsapp-float:hover::before {
  opacity: 1;
  visibility: visible;
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .whatsapp-float::before {
    display: none;
  }
}
