@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Manrope:wght@300;400;500;600&display=swap");

:root {
  --bg: #fff7f8;
  --bg-soft: #ffe9ef;
  --rose: #e4a3b6;
  --rose-strong: #d37f98;
  --wine: #3a1f29;
  --ink: #2d2326;
  --sand: #f6f1ef;
  --gold: #c6a46d;
  --white: #ffffff;
  --shadow: 0 15px 45px rgba(58, 31, 41, 0.08);
  --radius: 32px;
  --radius-sm: 20px;
  --max: 1120px;
  --section-title-size: clamp(1.8rem, 4vw, 2.4rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 10% 10%, #ffe0ea 0%, transparent 45%),
    radial-gradient(circle at 90% 0%, #ffe7d6 0%, transparent 40%),
    linear-gradient(180deg, #fff7f8 0%, #fdf1f4 45%, #fff 100%);
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(211, 127, 152, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: -1;
  opacity: 0.45;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(92vw, var(--max));
  margin: 0 auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--wine);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid rgba(211, 127, 152, 0.3);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.btn-primary {
  background: var(--wine);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(58, 31, 41, 0.15);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(58, 31, 41, 0.25);
  background: var(--ink);
}

.btn-outline {
  border-color: var(--rose-strong);
  color: var(--wine);
  background: transparent;
}

.btn-outline:hover {
  background: var(--bg-soft);
  border-color: var(--rose);
  transform: translateY(-2px);
}

.btn-outline.text-white {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline.text-white:hover {
  background: rgba(255, 255, 255, 0.12);
}

header {
  padding: 28px 0 18px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 247, 248, 0.92);
  backdrop-filter: blur(10px);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-soft);
  transition: all 0.3s ease;
  border: 1px solid rgba(211, 127, 152, 0.2);
}

.social-link:hover {
  background: var(--rose);
  transform: translateY(-2px);
  border-color: var(--rose-strong);
}

.social-link img {
  width: 20px;
  height: 20px;
  filter: brightness(0.9);
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--wine);
}

.nav {
  display: none;
  flex-direction: column;
  gap: 24px;
  font-size: 0.95rem;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  left: 0;
  background: var(--white);
  padding: 16px;
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 60px rgba(58, 31, 41, 0.22);
  z-index: 5;
}

.nav a {
  padding: 10px 12px;
  border-radius: 12px;
}

.nav a:hover {
  background: var(--sand);
}

.nav.is-open {
  display: flex;
}

.menu-toggle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: none;
  background: transparent;
  display: grid;
  place-items: center;
  gap: 4px;
  box-shadow: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--wine);
  border-radius: 999px;
}

.hero {
  padding: 38px 0 60px;
}

.hero-grid {
  display: grid;
  gap: 32px;
}

.hero-card {
  background: var(--white);
  padding: 34px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero h1 {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin: 18px 0;
  color: var(--wine);
  font-weight: 600;
}

.hero p {
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  border: 1px solid rgba(211, 127, 152, 0.12);
  font-weight: 500;
  color: var(--wine);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.badge-link {
  background: var(--bg-soft);
  border-color: var(--rose);
  color: var(--wine);
  cursor: pointer;
}

.badge-link:hover {
  background: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(211, 127, 152, 0.3);
}

.hero-registration {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(211, 127, 152, 0.2);
}

.registration-label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 700;
  color: var(--wine);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.vagas-tag {
  background: #c63d5d;
  color: white;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  font-weight: 800;
  display: inline-block;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.hero-reg-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-reg-buttons .btn {
  padding: 12px 24px;
  font-size: 0.85rem;
  flex: 1;
  min-width: 200px;
}

.portrait {
  background: linear-gradient(150deg, #f9d1dc 0%, #f6e3d5 45%, #fff 100%);
  border-radius: calc(var(--radius) + 8px);
  padding: 24px;
  display: grid;
  gap: 24px;
  box-shadow: var(--shadow);
}

.portrait .photo {
  background: url("./images/danubia-profile.png") center top / cover no-repeat;
  border-radius: var(--radius);
  min-height: 340px;
}

.portrait .info {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 24px;
}

.portrait .info h3 {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--wine);
}

.event-card {
  background: linear-gradient(135deg, #fff7f8 0%, #fff 100%);
  border-radius: var(--radius);
  padding: 48px 40px;
  border: 1px solid var(--rose-strong);
  display: grid;
  gap: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.event-card::before {
  content: "VAGAS LIMITADAS";
  position: absolute;
  top: 40px;
  right: -55px;
  background: var(--wine);
  color: var(--white);
  padding: 8px 50px;
  font-size: 0.75rem;
  font-weight: 700;
  transform: rotate(45deg);
  letter-spacing: 0.1em;
}

.event-grid {
  display: grid;
  gap: 40px;
}

.event-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.event-professionals-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.professional-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wine);
  opacity: 0.7;
}

.event-professionals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.professional {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(211, 127, 152, 0.15);
  transition: all 0.3s ease;
}

.professional:hover {
  border-color: var(--rose-strong);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(58, 31, 41, 0.05);
}

.professional-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  color: var(--wine);
  font-weight: 700;
  border: 2px solid var(--rose);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.professional:hover .professional-avatar {
  background: var(--rose);
  border-color: var(--wine);
}

.professional-avatar img {
  opacity: 0.9;
}

.professional-info h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--wine);
}

.professional-info p {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.event-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--wine);
  font-weight: 500;
}

.event-cta-block {
  margin-top: 48px;
}

.event-price {
  background: var(--wine);
  color: var(--white);
  padding: 24px;
  border-radius: var(--radius-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.event-price span {
  font-size: 0.85rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.event-price strong {
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
}

@media (min-width: 860px) {
  .event-grid {
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
  }
}

.section {
  padding: 0 0 80px;
}

.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 56px;
}

.section-title h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 600;
  color: var(--wine);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-title.in-view h2 {
  font-weight: 600;
}

.section-title p {
  max-width: 600px;
  margin: 0;
  line-height: 1.7;
  font-size: 1.05rem;
  color: rgba(45, 35, 38, 0.8);
}

.grid-3 {
  display: grid;
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(211, 127, 152, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(58, 31, 41, 0.12);
  border-color: rgba(211, 127, 152, 0.2);
}

.card-header {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

@media (min-width: 860px) {
  .card-header {
    min-height: 180px; /* Ajuste para alinhar as listas no desktop */
  }
}

.card-footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(228, 163, 182, 0.15) 0%, rgba(228, 163, 182, 0) 100%);
  top: -60px;
  right: -60px;
  z-index: 0;
}

.card h3 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--wine);
  letter-spacing: -0.01em;
}

.card p {
  line-height: 1.7;
  font-size: 0.98rem;
  margin-bottom: 24px;
}

.list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 12px 16px;
  border-radius: 16px;
  background: var(--sand);
  font-size: 0.9rem;
  color: var(--wine);
  font-weight: 500;
  border: 1px solid rgba(211, 127, 152, 0.05);
}

.promo-grid {
  display: grid;
  gap: 24px;
}

.promo {
  border: 1px solid rgba(211, 127, 152, 0.15);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  position: relative;
}

.promo:hover {
  border-color: var(--rose);
  transform: translateY(-4px);
}

.promo h4 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--wine);
}

.promo p {
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.promo strong {
  color: var(--rose-strong);
  font-weight: 700;
}

.steps {
  display: grid;
  gap: 24px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(211, 127, 152, 0.05);
}

.step span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--wine);
  font-weight: 800;
  font-size: 1.2rem;
  border: 1px solid rgba(211, 127, 152, 0.2);
}

.step strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: var(--wine);
}

.testimonials {
  display: grid;
  gap: 24px;
}

.quote {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
  color: rgba(45, 35, 38, 0.9);
  position: relative;
}

.quote::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  color: var(--bg-soft);
  font-family: serif;
  z-index: 0;
}

.quote strong {
  display: block;
  margin-top: 20px;
  color: var(--wine);
  font-style: normal;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta {
  background: linear-gradient(135deg, #3a1f29 0%, #5a2b3a 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 64px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><g fill="%23ffffff" fill-opacity="0.03" fill-rule="evenodd"><circle cx="3" cy="3" r="1.5"/><circle cx="13" cy="13" r="1.5"/></g></svg>');
}

.cta h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.cta p {
  margin: 0;
  max-width: 600px;
  line-height: 1.7;
  font-size: 1.1rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.cta .hero-actions {
  justify-content: center;
  position: relative;
  z-index: 1;
}

.faq {
  display: grid;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

details {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(211, 127, 152, 0.05);
  transition: all 0.3s ease;
}

details[open] {
  border-color: var(--rose);
}

summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--wine);
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--rose-strong);
  transition: transform 0.3s ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rose-strong);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  transition: gap 0.3s ease;
}

.btn-text:hover {
  gap: 12px;
  color: var(--wine);
}

.btn-secondary-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--rose-strong);
  border-radius: 999px;
  color: var(--wine);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}

.btn-secondary-sm:hover {
  background: var(--bg-soft);
  border-color: var(--wine);
  gap: 12px;
  transform: translateY(-2px);
}

footer {
  margin-top: 0;
  padding: 48px 0;
  text-align: center;
  border-top: 1px solid rgba(211, 127, 152, 0.1);
  background: var(--bg);
}

#contato.section {
  padding-bottom: 0;
}

@media (min-width: 860px) {
  #contato.section {
    padding-bottom: 0;
  }
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.copyright {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(45, 35, 38, 0.6);
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--wine);
}

.footer-links a:hover {
  text-decoration: underline;
}

.separator {
  color: var(--rose-strong);
  opacity: 0.5;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
  z-index: 100;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-text {
  display: none;
}

.whatsapp-float:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

@media (min-width: 860px) {
  .copyright {
    font-size: 0.85rem;
  }

  .copyright br {
    display: none;
  }

  .whatsapp-float {
    border-radius: 999px;
    width: auto;
    height: auto;
    padding: 14px 24px;
    gap: 10px;
  }

  .whatsapp-text {
    display: inline;
    font-weight: 700;
  }
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

.br-desktop {
  display: none;
}

@media (min-width: 860px) {
  .br-desktop {
    display: inline;
  }
}

@media (min-width: 860px) {
  .nav {
    display: flex;
    position: static;
    flex-direction: row;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    gap: 32px;
  }

  .nav a {
    padding: 0;
    font-weight: 500;
    position: relative;
  }

  .nav a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--wine);
    transition: width 0.3s ease;
  }

  .nav a:hover::after {
    width: 100%;
  }

  .menu-toggle {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 48px;
  }

  .hero-card {
    padding: 64px 48px;
  }

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

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

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

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

