.elementor-6 .elementor-element.elementor-element-911e34e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:15px;--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-758f1c7{margin:27px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-6 .elementor-element.elementor-element-758f1c7.elementor-element{--align-self:stretch;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-758f1c7 *//* Design System - Mães de Pets */
:root {
  --background: hsl(30, 25%, 98%);
  --foreground: hsl(340, 15%, 15%);
  --primary: hsl(340, 65%, 55%);
  --primary-foreground: hsl(30, 25%, 98%);
  --primary-glow: hsl(340, 85%, 75%);
  --secondary: hsl(200, 85%, 85%);
  --muted: hsl(30, 40%, 93%);
  --muted-foreground: hsl(340, 10%, 45%);
  --accent: hsl(45, 90%, 88%);
  --border: hsl(30, 30%, 88%);
  --card: hsl(30, 30%, 97%);
  --input: hsl(30, 30%, 92%);
  --ring: hsl(340, 65%, 55%);
}

/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
}

/* Fontes */
.font-serif { 
  font-family: 'Playfair Display', Georgia, serif; 
}

.font-sans { 
  font-family: 'Inter', system-ui, sans-serif; 
}

/* Layout Base */
.maes-pets-landing {
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
}

/* Header Section */
.header-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  text-decoration: none;
  color: var(--foreground);
}

.brand-heart {
  color: var(--primary);
  font-size: 1.8rem;
}

.brand-text {
  color: var(--foreground);
}

.header-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
  background: hsl(340 65% 55% / 0.1);
  text-decoration: none;
}

.nav-link.active {
  color: var(--primary);
  background: linear-gradient(135deg, hsl(340 65% 55% / 0.1), hsl(340 85% 75% / 0.1));
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: linear-gradient(135deg, var(--primary), var(--primary-glow));
  border-radius: 1px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--foreground);
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-menu {
  list-style: none;
  padding: 20px;
  margin: 0;
}

.mobile-nav-item {
  margin-bottom: 8px;
}

.mobile-nav-link {
  display: block;
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 16px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary);
  background: linear-gradient(135deg, hsl(340 65% 55% / 0.1), hsl(340 85% 75% / 0.1));
  text-decoration: none;
}

.mobile-nav-link.active {
  font-weight: 600;
}

/* Body scroll lock when mobile menu is open */
body.menu-open {
  overflow: hidden;
}

/* Hero Section - Ajustado para o header fixo */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, hsl(340 65% 55% / 0.1), hsl(200 85% 85% / 0.2), hsl(45 90% 88% / 0.15));
  display: flex;
  align-items: center;
  padding: 150px 20px 80px; /* Padding top aumentado para compensar o header fixo */
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.hero-title {
  font-size: 4rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--primary-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--primary); /* Fallback */
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--muted-foreground);
  margin-bottom: 20px;
  line-height: 1.4;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--foreground);
  opacity: 0.8;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Botões */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-glow));
  color: var(--primary-foreground);
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  padding: 16px 32px;
  border: 2px solid var(--primary);
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-feature {
  background: linear-gradient(135deg, var(--primary), var(--primary-glow));
  color: var(--primary-foreground);
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  margin-top: 20px;
  text-align: center;
  width: 100%;
}

.btn-primary:hover, .btn-outline:hover, .btn-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px hsl(340 65% 55% / 0.25);
  text-decoration: none;
}

.btn-primary:disabled, .btn-outline:disabled, .btn-feature:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Hero Image */
.hero-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 30px hsl(340 65% 55% / 0.15);
  animation: scaleIn 0.8s ease-out 0.3s both;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary) / 0.1, transparent);
  border-radius: 24px;
}

/* Features Section */
.features-section {
  padding: 80px 20px;
  background: var(--background);
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 60px;
}

.features-title {
  font-size: 3rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.features-subtitle {
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: linear-gradient(180deg, var(--card), hsl(30, 35%, 95%));
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 30px hsl(340 65% 55% / 0.15);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-glow));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-foreground);
  font-size: 24px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  box-shadow: 0 0 40px hsl(var(--primary-glow) / 0.3);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--foreground);
}

.feature-description {
  color: var(--muted-foreground);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Footer */
.footer-section {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 60px 20px 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-column {
  animation: fadeInUp 0.6s ease-out;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  margin-bottom: 16px;
}

.brand-heart {
  color: var(--primary);
}

.brand-text {
  color: var(--foreground);
}

.footer-description {
  color: var(--muted-foreground);
  line-height: 1.6;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--foreground);
}

.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  margin-bottom: 8px;
}

.footer-list a {
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-list a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-glow));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 20px;
}

.social-link:hover {
  box-shadow: 0 0 40px hsl(var(--primary-glow) / 0.3);
  transform: translateY(-2px);
}

.social-notice {
  font-size: 0.9rem;
  color: var(--muted-foreground);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.copyright {
  color: var(--muted-foreground);
  margin-bottom: 10px;
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-heart-1 {
  position: absolute;
  top: 10%;
  left: 8%;
  font-size: 32px;
  color: hsl(340 65% 55% / 0.2);
  animation: float 3s ease-in-out infinite;
}

.floating-heart-2 {
  position: absolute;
  bottom: 20%;
  left: 15%;
  font-size: 24px;
  color: hsl(45 90% 88% / 0.4);
  animation: float 3s ease-in-out infinite 2s;
}

.floating-sparkle {
  position: absolute;
  top: 25%;
  right: 12%;
  font-size: 28px;
  color: hsl(200 85% 85% / 0.3);
  animation: float 3s ease-in-out infinite 1s;
}

/* Animações */
@keyframes float {
  0%, 100% { 
    transform: translateY(0px); 
  }
  50% { 
    transform: translateY(-10px); 
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsividade */
@media (max-width: 1024px) {
  .hero-title { 
    font-size: 3rem; 
  }
  .features-title { 
    font-size: 2.5rem; 
  }
  
  .nav-menu {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  /* Header Mobile */
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .header-container {
    height: 60px;
  }
  
  /* Hero Mobile */
  .hero-section {
    padding: 120px 15px 60px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title { 
    font-size: 2.5rem; 
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .features-section {
    padding: 60px 15px;
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-outline {
    width: 100%;
    max-width: 300px;
  }
  
  .header-brand {
    font-size: 1.3rem;
  }
  
  .brand-heart {
    font-size: 1.5rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}/* End custom CSS */