@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --primary: #7b1b38;
  /* Rosa Claro */
  --primary-light: #a93361;
  /* Rosa Pastel */
  --secondary: #7b1b38;
  /* Dourado (Highlight/CTA) */
  --bg-color: #FAFAFA;
  /* Off-white */
  --text-main: #2C2C2C;
  /* Grafite Escuro */
  --text-light: #666666;
  --font-heading: 'Outfit', sans-serif;
  --font-sans: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.title-script {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.0;
  margin-bottom: 1rem;
}

.subtitle {
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-light);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  padding: 25px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
}

.header-scrolled {
  padding: 15px 0;
  background: rgba(250, 250, 250, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

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

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: -1px;
  font-size: 2.2rem;
  color: var(--primary);
  line-height: 1;
}

.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* Hero Section */
.hero {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(to bottom, #fff, #fafafa);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(155, 47, 91, 0.03) 0%, transparent 60%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background-color: var(--primary);
  color: white;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 8px;
  margin-top: 30px;
  border: 1px solid var(--primary);
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(139, 46, 83, 0.2);
}

.btn:hover {
  background-color: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 46, 83, 0.3);
  color: white;
}

.image-marquee-section {
  width: 100%;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #eee;
  position: relative;
  padding: 0;
}

.image-marquee-section::before,
.image-marquee-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.image-marquee-section::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.image-marquee-section::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.image-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
  will-change: transform;
}

.image-marquee-group {
  display: flex;
  align-items: center;
  min-width: max-content;
}

.image-marquee-group img {
  display: block;
  width: min(23vw, 340px);
  height: 220px;
  object-fit: cover;
  flex-shrink: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .image-marquee-group img {
    width: min(45vw, 240px);
    height: 180px;
  }
}

/* Services Grid */
.section-padding {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

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

.card {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.card p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.card-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* Direct Answer Block (AEO) */
.aeo-block {
  background: #fdfafb;
  border-left: 4px solid var(--primary);
  padding: 20px 25px;
  margin: 30px 0;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-main);
  border-radius: 0 4px 4px 0;
}

/* Content Pages */
.page-header {
  padding: 60px 0 40px;
  text-align: left;
  border-bottom: 1px solid #eee;
  margin-bottom: 50px;
}

.page-header h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 10px;
}

/* Lists (Indicações, Como funciona) */
.feature-list {
  list-style: none;
  margin: 20px 0 40px;
}

.feature-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
  font-size: 1.2rem;
}

/* FAQ Accordion */
.faq-section {
  margin-top: 50px;
  border-top: 1px solid #eee;
  padding-top: 50px;
}

.faq-item {
  margin-bottom: 25px;
}

.faq-item h4 {
  font-size: 1.2rem;
  color: var(--text-main);
  margin-bottom: 10px;
  font-weight: 600;
}

.faq-item p {
  color: var(--text-light);
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: white;
}

/* Footer */
footer {
  background-color: #f8d3e6;
  color: #fff;
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 30px;
}

.footer-inner h4 {
  color: var(--secondary);
  margin-bottom: 20px;
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.footer-inner p,
.footer-inner a {
  color: #666666;
  font-size: 0.9rem;
}

.footer-inner a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #d78dbc;
  color: #666;
  font-size: 0.8rem;
}

/* Animations & Micro-interactions */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
}

.fade-in-scale {
  opacity: 0;
  transform: scale(1.05);
  animation: fadeInScale 2.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.swiper-pagination-bullet-active {
  background: var(--primary) !important;
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    gap: 15px;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}