.elementor-6 .elementor-element.elementor-element-34b5212{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-6 .elementor-element.elementor-element-59bc080{width:100%;max-width:100%;margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS *//* ============================================================
   SUPLE vet — Ansiedade Suport Landing Page
   Design System & Styles  |  Mobile-First
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Palette */
  --azul-escuro: #09054C;
  --azul-sec: #292287;
  --amarelo: #FFD56E;
  --creme: #FBF4E7;
  --verde: #7DE39C;
  --coral: #FF7676;
  --branco: #FFFFFF;

  /* Semantic Tokens */
  --bg-primary: var(--creme);
  --bg-dark: var(--azul-escuro);
  --text-dark: var(--azul-escuro);
  --text-light: var(--creme);
  --accent: var(--coral);

  /* Typography */
  --ff-heading: 'Gabriella Heavy', 'Playfair Display', 'Georgia', serif;
  --ff-body: 'Poppins', sans-serif;

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-xxl: 6rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-card: 0 8px 32px rgba(9, 5, 76, 0.10);
  --shadow-btn: 0 4px 20px rgba(9, 5, 76, 0.18);

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--ff-body);
  color: var(--text-dark);
  background-color: var(--bg-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---------- Utility ---------- */
.container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}

.section-padding {
  padding: var(--space-xl) 0;
}

/* ---------- Typography ---------- */
.heading-xl {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.heading-lg {
  font-family: var(--ff-heading);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  line-height: 1.2;
  font-weight: 800;
}

.heading-md {
  font-family: var(--ff-heading);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  line-height: 1.3;
  font-weight: 700;
}

.text-body {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.7;
}

/* ---------- CTA Button (generic class) ---------- */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--azul-escuro);
  background: var(--amarelo);
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px rgba(9, 5, 76, 0.22);
  background: #ffcb4a;
}

.cta-button:active {
  transform: translateY(0) scale(0.98);
}

.cta-button--secondary {
  background: var(--coral);
  color: var(--branco);
}

.cta-button--secondary:hover {
  background: #ff5e5e;
}

.cta-button svg,
.cta-button .btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---------- Floating WhatsApp Button (classic green) ---------- */
.floating-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  animation: pulse-float 2s ease-in-out infinite;
}

.floating-whatsapp a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.floating-whatsapp a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}

.floating-whatsapp a svg {
  width: 32px;
  height: 32px;
  fill: #FFFFFF;
}

@keyframes pulse-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ============================================================
   A. HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(251, 244, 231, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(9, 5, 76, 0.06);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(9, 5, 76, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0;
}

.header-logo {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  min-width: 160px;
}

.header-logo img {
  height: 180px;
  width: auto;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  object-fit: contain;
  z-index: 10;
}

.header-cta .cta-button {
  padding: 0.65rem 1.4rem;
  font-size: 0.85rem;
  border-radius: var(--radius-md);
}

/* ============================================================
   B. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  background: var(--bg-primary);
  padding: calc(80px + var(--space-xl)) 0 var(--space-xl);
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-pretitle {
  color: var(--coral);
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.hero-headline {
  color: var(--azul-escuro);
  margin-bottom: var(--space-sm);
}

.hero-subheadline {
  color: var(--azul-sec);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 560px;
  margin: 0 auto var(--space-md);
  opacity: 0.85;
}

.hero-subheadline strong {
  color: var(--coral);
  font-weight: 600;
}

.hero-image {
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* Hero abstract shapes */
.hero .shape {
  position: absolute;
  border-radius: var(--radius-full);
  z-index: 0;
  opacity: 0.35;
}

.hero .shape--1 {
  width: 260px;
  height: 260px;
  background: var(--verde);
  top: -80px;
  right: -60px;
}

.hero .shape--2 {
  width: 180px;
  height: 180px;
  background: var(--amarelo);
  bottom: 40px;
  left: -60px;
}

.hero .shape--3 {
  width: 100px;
  height: 100px;
  background: var(--coral);
  top: 50%;
  right: 10%;
  opacity: 0.2;
}

/* ============================================================
   C. PAIN SECTION
   ============================================================ */
.pain-section {
  position: relative;
  background: var(--bg-dark);
  color: var(--text-light);
  overflow: hidden;
}

.pain-section .container {
  position: relative;
  z-index: 2;
}

.pain-title {
  color: var(--creme);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.pain-title span {
  color: var(--amarelo);
}

.pain-checklist {
  max-width: 600px;
  margin: 0 auto var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  backdrop-filter: blur(4px);
  transition: var(--transition);
}

.pain-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.pain-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  margin-top: 2px;
}

.pain-icon svg {
  width: 22px;
  height: 22px;
}

.pain-text {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--creme);
}

.pain-conclusion {
  text-align: center;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  max-width: 520px;
  margin: 0 auto;
  color: var(--amarelo);
  font-weight: 500;
  font-style: italic;
}

/* Pain section shapes */
.pain-section .shape {
  position: absolute;
  border-radius: var(--radius-full);
  z-index: 0;
  opacity: 0.08;
}

.pain-section .shape--1 {
  width: 300px;
  height: 300px;
  background: var(--azul-sec);
  top: -100px;
  left: -100px;
}

.pain-section .shape--2 {
  width: 200px;
  height: 200px;
  background: var(--coral);
  bottom: -60px;
  right: -60px;
}

/* ============================================================
   D. PRODUCT SECTION
   ============================================================ */
.product-section {
  position: relative;
  background: var(--bg-primary);
  overflow: hidden;
}

.product-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  position: relative;
  z-index: 2;
}

.product-image-wrapper {
  position: relative;
  max-width: 420px;
  width: 100%;
}

.product-image-wrapper::before {
  content: '';
  position: absolute;
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
  background: radial-gradient(circle, rgba(125, 227, 156, 0.25) 0%, transparent 70%);
  border-radius: var(--radius-full);
  z-index: 0;
}

.product-image-wrapper img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 12px 32px rgba(9, 5, 76, 0.12));
  transition: var(--transition);
}

.product-image-wrapper:hover img {
  transform: scale(1.03) rotate(-1deg);
}

.product-info {
  text-align: center;
}

.product-tag {
  display: inline-block;
  background: var(--coral);
  color: var(--branco);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.product-title {
  color: var(--azul-escuro);
  margin-bottom: var(--space-md);
}

.product-title span {
  color: var(--coral);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: var(--space-lg);
  text-align: left;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
}

.benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--verde);
  color: var(--azul-escuro);
  border-radius: var(--radius-sm);
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
}

/* Product section shapes */
.product-section .shape {
  position: absolute;
  border-radius: var(--radius-full);
  z-index: 0;
  opacity: 0.3;
}

.product-section .shape--1 {
  width: 200px;
  height: 200px;
  background: var(--coral);
  top: -60px;
  right: -50px;
}

.product-section .shape--2 {
  width: 140px;
  height: 140px;
  background: var(--amarelo);
  bottom: 20px;
  left: -40px;
}

/* ============================================================
   E. SOCIAL PROOF
   ============================================================ */
.social-proof {
  background: var(--branco);
  position: relative;
  overflow: hidden;
}

.social-proof-title {
  text-align: center;
  color: var(--azul-escuro);
  margin-bottom: var(--space-lg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--creme);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: 0 4px 16px rgba(9, 5, 76, 0.06);
  border: 1px solid rgba(9, 5, 76, 0.04);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--ff-heading);
  font-size: 4rem;
  color: var(--coral);
  opacity: 0.2;
  position: absolute;
  top: 0.3rem;
  left: 1rem;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 0.6rem;
  color: var(--amarelo);
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--amarelo);
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--azul-escuro);
  margin-bottom: 0.8rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--azul-sec);
}

.testimonial-author span {
  font-weight: 400;
  color: var(--coral);
}

/* ============================================================
   F. FAQ
   ============================================================ */
.faq-section {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.faq-title {
  text-align: center;
  color: var(--azul-escuro);
  margin-bottom: var(--space-lg);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--branco);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(9, 5, 76, 0.05);
  border: 1px solid rgba(9, 5, 76, 0.05);
  transition: var(--transition);
}

.faq-item.active {
  box-shadow: 0 4px 20px rgba(9, 5, 76, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: var(--space-sm) var(--space-md);
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--azul-escuro);
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--ff-body);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--azul-sec);
}

.faq-chevron {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--creme);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  background: var(--amarelo);
}

.faq-chevron svg {
  width: 16px;
  height: 16px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 var(--space-md);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 var(--space-md) var(--space-md);
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--azul-sec);
  line-height: 1.7;
}

/* FAQ shapes */
.faq-section .shape {
  position: absolute;
  border-radius: var(--radius-full);
  z-index: 0;
  opacity: 0.25;
}

.faq-section .shape--1 {
  width: 180px;
  height: 180px;
  background: var(--verde);
  bottom: -50px;
  right: -50px;
}

/* ============================================================
   G. FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-dark);
  color: var(--creme);
  text-align: center;
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-logo {
  margin: 0 auto var(--space-sm);
}

.footer-logo img {
  height: 140px;
  width: auto;
  margin: 0 auto;
}

.footer-legal {
  font-size: 0.75rem;
  opacity: 0.6;
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ============================================================
   RESPONSIVE — Tablet (≥ 640px)
   ============================================================ */
@media (min-width: 640px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-image img {
    height: 380px;
  }
}

/* ============================================================
   RESPONSIVE — Desktop (≥ 960px)
   ============================================================ */
@media (min-width: 960px) {
  .section-padding {
    padding: var(--space-xxl) 0;
  }

  .hero {
    padding-top: calc(80px + var(--space-xxl));
    padding-bottom: var(--space-xxl);
  }

  .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    text-align: left;
  }

  .hero-text-col {
    order: 1;
  }

  .hero-image-col {
    order: 2;
  }

  .hero-subheadline {
    margin-left: 0;
  }

  .hero-image {
    margin-top: 0;
    max-width: 100%;
  }

  .hero-image img {
    height: 440px;
  }

  .hero .shape--1 {
    width: 400px;
    height: 400px;
    top: -120px;
    right: -100px;
  }

  .hero .shape--2 {
    width: 280px;
    height: 280px;
    bottom: -60px;
    left: -80px;
  }

  /* Product */
  .product-inner {
    flex-direction: row;
    gap: var(--space-xl);
  }

  .product-image-wrapper {
    max-width: 520px;
  }

  .product-info {
    text-align: left;
    flex: 1;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Header */
  .header-logo {
    min-width: 220px;
  }

  .header-logo img {
    height: 240px;
  }
}/* End custom CSS */