.elementor-250 .elementor-element.elementor-element-5a8b7c3{--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;}.elementor-250 .elementor-element.elementor-element-b3ac6b7{--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:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-widget-theme-post-featured-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-250 .elementor-element.elementor-element-9472a05{margin:65px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-250 .elementor-element.elementor-element-9472a05 img{width:40%;border-radius:10px 10px 10px 10px;}.elementor-250 .elementor-element.elementor-element-e658ab0{--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;}.elementor-widget-theme-post-title .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-250 .elementor-element.elementor-element-0bc3335{text-align:center;}.elementor-250 .elementor-element.elementor-element-0bc3335 .elementor-heading-title{font-family:"Merriweather", Sans-serif;font-weight:600;color:#FF5300;}.elementor-250 .elementor-element.elementor-element-1147ee8{--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;}.elementor-widget-theme-post-content{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-250 .elementor-element.elementor-element-bc04921{text-align:justify;color:#000000;font-family:"Roboto", Sans-serif;font-weight:400;}.elementor-250 .elementor-element.elementor-element-dc367bf{--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;}/* Start custom CSS for html, class: .elementor-element-73be072 *//* 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;
}

/* Responsividade para Header */
@media (max-width: 1024px) {
  .nav-menu {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  /* Header Mobile */
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .header-container {
    height: 60px;
  }
}

@media (max-width: 600px) {
  .header-brand {
    font-size: 1.3rem;
  }
  
  .brand-heart {
    font-size: 1.5rem;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d7659e4 *//* 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;
}

/* Footer Contact Info */
.footer-contact {
  font-size: 0.9rem;
}

.footer-contact p {
  margin-bottom: 12px;
}

.footer-contact strong {
  color: var(--foreground);
}

.footer-contact a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--primary-glow);
  text-decoration: underline;
}

/* Responsividade para Footer */
@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}/* End custom CSS */