/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
*:not(dialog) {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a:hover, a:focus, a:active, a:visited {
  text-decoration: none;
  color: inherit;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #ffffff;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid rgba(172, 147, 105, 0.2);
}

.modal-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-title svg {
  color: #284703;
  width: 24px;
  height: 24px;
}

.modal-title h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #284703;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.modal-close svg {
  color: #666;
  width: 20px;
  height: 20px;
}

.modal-close:hover {
  background: rgba(172, 147, 105, 0.1);
}

.modal-body {
  padding: 24px;
  max-height: 400px;
  overflow-y: auto;
}

.modal-description {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.6;
}

.privacy-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.privacy-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.privacy-info {
  flex: 1;
}

.privacy-info h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 4px;
}

.privacy-info p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 26px;
  transition: background-color 0.3s ease;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

input:checked + .toggle-slider {
  background-color: #284703;
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.modal-footer {
  display: flex;
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid rgba(172, 147, 105, 0.2);
  background: rgba(172, 147, 105, 0.05);
}

.btn-primary,
.btn-secondary {
  flex: 1;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #284703;
  color: #ffffff;
}

.btn-primary:hover {
  background: #3a5630;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 71, 3, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #284703;
  border: 2px solid #ac9369;
}

.btn-secondary:hover {
  background: rgba(172, 147, 105, 0.1);
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .modal-container {
    width: 95%;
  }
  .modal-footer {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .modal-title h2 {
    font-size: 1.2rem;
  }
  .modal-body {
    padding: 20px;
  }
  .privacy-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
body.modal-open {
  overflow: hidden;
}

.raizes-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  padding: 20px;
}
.raizes-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.raizes-modal-overlay .raizes-modal-container {
  background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
  border-radius: 24px;
  max-width: 580px;
  width: 100%;
  max-height: 95vh;
  overflow-y: auto;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.raizes-modal-overlay .raizes-modal-container .raizes-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(172, 147, 105, 0.3);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transition: all 0.3s ease;
}
.raizes-modal-overlay .raizes-modal-container .raizes-modal-close:hover {
  transform: rotate(90deg);
}
.raizes-modal-overlay .raizes-modal-container .raizes-modal-close svg {
  color: #000000;
  width: 20px;
  height: 20px;
}
.raizes-modal-overlay .raizes-modal-container .raizes-modal-close:hover svg {
  color: #ffffff;
}
.raizes-modal-overlay .raizes-modal-container .raizes-modal-content {
  padding: 40px 36px 36px;
}
.raizes-modal-overlay .raizes-modal-container .raizes-modal-content .raizes-modal-image {
  text-align: center;
  margin-bottom: 24px;
}
.raizes-modal-overlay .raizes-modal-container .raizes-modal-content .raizes-modal-image .raizes-image-wrapper {
  position: relative;
  display: inline-block;
}
.raizes-modal-overlay .raizes-modal-container .raizes-modal-content .raizes-modal-image .raizes-image-wrapper img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 5px solid #284703;
  box-shadow: 0 8px 24px rgba(200, 164, 92, 0.3);
}
.raizes-modal-overlay .raizes-modal-container .raizes-modal-content .raizes-modal-title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #284703;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.3;
}
.raizes-modal-overlay .raizes-modal-container .raizes-modal-content .raizes-modal-title .highlight-text {
  color: #c8a45c;
  position: relative;
  display: inline-block;
}
.raizes-modal-overlay .raizes-modal-container .raizes-modal-content .raizes-modal-title .highlight-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  opacity: 0.3;
  z-index: -1;
}
.raizes-modal-overlay .raizes-modal-container .raizes-modal-content .raizes-modal-message {
  margin-bottom: 32px;
}
.raizes-modal-overlay .raizes-modal-container .raizes-modal-content .raizes-modal-message .raizes-intro {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
}
.raizes-modal-overlay .raizes-modal-container .raizes-modal-content .raizes-modal-message .raizes-description {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 16px;
  text-align: center;
}
.raizes-modal-overlay .raizes-modal-container .raizes-modal-content .raizes-modal-message .raizes-description strong {
  color: #c8a45c;
  font-weight: 600;
}
.raizes-modal-overlay .raizes-modal-container .raizes-modal-content .raizes-modal-message .raizes-description .highlight-gold {
  color: #c8a45c;
  font-weight: 600;
}
.raizes-modal-overlay .raizes-modal-container .raizes-modal-content .raizes-modal-message .raizes-benefits {
  background: linear-gradient(135deg, rgba(40, 71, 3, 0.05) 0%, rgba(172, 147, 105, 0.05) 100%);
  border-left: 4px solid #284703;
  padding: 20px;
  margin: 24px 0;
  border-radius: 8px;
}
.raizes-modal-overlay .raizes-modal-container .raizes-modal-content .raizes-modal-message .raizes-benefits .raizes-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-family: "Poppins", sans-serif;
  color: #000000;
  line-height: 1.6;
}
.raizes-modal-overlay .raizes-modal-container .raizes-modal-content .raizes-modal-message .raizes-benefits .raizes-benefit-item:last-child {
  margin-bottom: 0;
}
.raizes-modal-overlay .raizes-modal-container .raizes-modal-content .raizes-modal-message .raizes-benefits .raizes-benefit-item svg {
  color: #284703;
  flex-shrink: 0;
  margin-top: 2px;
}
.raizes-modal-overlay .raizes-modal-container .raizes-modal-content .raizes-modal-message .raizes-cta-text {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #000000;
  text-align: center;
  background: #c8a45c;
  padding: 20px;
  border-radius: 12px;
  margin-top: 24px;
}
.raizes-modal-overlay .raizes-modal-container .raizes-modal-content .raizes-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.raizes-modal-overlay .raizes-modal-container .raizes-modal-content .raizes-modal-actions .raizes-btn-whatsapp {
  background: #284703;
  color: #ffffff;
  padding: 18px 32px;
  border-radius: 50px;
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulse-green 2s ease infinite;
  text-align: center;
}
.raizes-modal-overlay .raizes-modal-container .raizes-modal-content .raizes-modal-actions .raizes-btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  background-color: #407405;
}
.raizes-modal-overlay .raizes-modal-container .raizes-modal-content .raizes-modal-actions .raizes-btn-whatsapp svg {
  width: 24px;
  height: 24px;
}
@keyframes pulse-green {
  0%, 100% {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  }
}
.raizes-modal-overlay .raizes-modal-container .raizes-modal-content .raizes-modal-actions .raizes-btn-later {
  background: transparent;
  color: #000000;
  padding: 12px 24px;
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.raizes-modal-overlay .raizes-modal-container .raizes-modal-content .raizes-modal-actions .raizes-btn-later:hover {
  color: #284703;
}
.raizes-modal-overlay .raizes-modal-container .raizes-modal-content .raizes-modal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  color: #000000;
  text-align: center;
  font-weight: 500;
}
.raizes-modal-overlay .raizes-modal-container .raizes-modal-content .raizes-modal-footer svg {
  flex-shrink: 0;
}
.raizes-modal-overlay.active .raizes-modal-container {
  transform: scale(1) translateY(0);
}

@media (max-width: 768px) {
  .raizes-modal-container {
    max-width: 95%;
  }
  .raizes-modal-content {
    padding: 32px 24px 28px;
  }
  .raizes-modal-title {
    font-size: 1.6rem;
  }
  .raizes-description {
    font-size: 0.95rem;
  }
  .raizes-btn-whatsapp {
    font-size: 1rem;
    padding: 16px 28px;
  }
}
@media (max-width: 480px) {
  .raizes-modal-content {
    padding: 28px 20px 24px;
  }
  .raizes-image-wrapper img {
    width: 120px;
    height: 120px;
  }
  .raizes-modal-title {
    font-size: 1.4rem;
  }
  .raizes-intro {
    font-size: 1rem;
  }
  .raizes-description {
    font-size: 0.9rem;
  }
  .raizes-benefits {
    padding: 16px;
  }
  .raizes-benefit-item {
    font-size: 0.9rem;
  }
  .raizes-cta-text {
    font-size: 0.95rem;
    padding: 16px;
  }
  .raizes-btn-whatsapp {
    font-size: 0.95rem;
    padding: 14px 24px;
  }
  .raizes-modal-footer {
    font-size: 0.8rem;
  }
}
.liberdade-page {
  background: #ffffff;
  color: #ffffff;
}

.header {
  background: #ffffff;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header .header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header-container .logo {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: #284703;
  font-weight: 600;
  margin: 0;
}
.header .header-container .btn-cta {
  background: #284703;
  color: #ffffff;
  padding: 12px 32px;
  border-radius: 50px;
  border: none;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.header .header-container .btn-cta:hover {
  background: #407405;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 71, 3, 0.3);
}

.hero-liberdade {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}
.hero-liberdade .hero-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: #284703;
  margin-bottom: 24px;
  line-height: 1.2;
}
.hero-liberdade .hero-title .highlight {
  color: #284703;
}
.hero-liberdade .hero-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-liberdade .btn-primary-large {
  background: #284703;
  color: #ffffff;
  padding: 18px 48px;
  border-radius: 50px;
  border: none;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-liberdade .btn-primary-large a {
  text-decoration: none;
  color: inherit;
}
.hero-liberdade .btn-primary-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(74, 20, 140, 0.4);
  background: #407405;
}

.question-section {
  padding: 60px 20px;
  text-align: center;
  background: #284703;
}
.question-section .section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #ffffff;
  line-height: 1.3;
}
.question-section .section-title .text-highlight {
  color: #c8a45c;
}

.about-section {
  background: #284703;
  padding: 80px 20px;
}
.about-section .about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-section .about-content .about-image {
  position: relative;
}
.about-section .about-content .about-image .image-frame {
  position: relative;
  border: 3px solid #c8a45c;
  border-radius: 20px;
  overflow: hidden;
  transform: rotate(0deg);
}
.about-section .about-content .about-image .image-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.about-section .about-content .about-text {
  padding: 20px;
}
.about-section .about-content .about-text .btn-secondary-large {
  text-decoration: none;
  color: inherit;
  background: #c8a45c;
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 50px;
  border: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.about-section .about-content .about-text .btn-secondary-large:hover {
  background: rgb(180.1972477064, 140.3990825688, 60.8027522936);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(200, 164, 92, 0.4);
}
.about-section .about-content .about-text .quote {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 32px;
  font-style: italic;
}

.feelings-section {
  background: #ffffff;
  padding: 80px 20px;
}
.feelings-section .section-title-center {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: #284703;
  text-align: center;
  margin-bottom: 60px;
}
.feelings-section .feelings-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.feelings-section .feelings-grid .feeling-card {
  flex: 0 1 349px;
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
}
.feelings-section .feelings-grid .feeling-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.feelings-section .feelings-grid .feeling-card .feeling-icon {
  width: 48px;
  height: 48px;
  background: rgba(172, 147, 105, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.feelings-section .feelings-grid .feeling-card .feeling-icon svg {
  color: #284703;
}
.feelings-section .feelings-grid .feeling-card p {
  font-family: "Poppins", sans-serif;
  color: #000000;
  line-height: 1.6;
}

.benefits-section {
  background: #ffffff;
  padding: 80px 20px;
}
.benefits-section .section-title-center {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: #284703;
  text-align: center;
  margin-bottom: 60px;
}
.benefits-section .section-title-center .text-highlight {
  color: #c8a45c;
}
.benefits-section .benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.benefits-section .benefits-grid .benefit-card {
  width: 320px;
  text-align: center;
  padding: 14px 14px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.36);
  transition: all 0.3s ease;
  background: #ffffff;
}
.benefits-section .benefits-grid .benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.benefits-section .benefits-grid .benefit-card .benefit-icon {
  width: 80px;
  height: 80px;
  background: #c8a45c;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 24px;
}
.benefits-section .benefits-grid .benefit-card .benefit-icon img {
  width: 48px;
  height: 48px;
  color: #ffffff;
}
.benefits-section .benefits-grid .benefit-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: #284703;
  margin-bottom: 16px;
}
.benefits-section .benefits-grid .benefit-card p {
  font-family: "Poppins", sans-serif;
  color: #000000;
  line-height: 1.7;
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-carousel .testimonials-section {
  padding: 80px 20px;
}
.testimonials-carousel .testimonials-section .section-title-center {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: #284703;
  text-align: center;
  margin-bottom: 60px;
}
.testimonials-carousel .testimonials-section .section-title-center .text-highlight {
  color: #c8a45c;
}
.testimonials-carousel .testimonials-section .section-title-center .text-highlight-secondary {
  color: #c8a45c;
}
.testimonials-carousel .testimonials-section .testimonials-grid {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
  will-change: transform;
}
.testimonials-carousel .testimonials-section .testimonials-grid .testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  background: #284703;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 340px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 4px solid #c8a45c;
}
.testimonials-carousel .testimonials-section .testimonials-grid .testimonial-card .testimonial-text {
  flex: 1;
  overflow-y: auto;
  padding-right: 6px;
  margin-bottom: 18px;
  font-style: italic;
}
.testimonials-carousel .testimonials-section .testimonials-grid .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonials-carousel .testimonials-section .testimonials-grid .testimonial-card .testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials-carousel .testimonials-section .testimonials-grid .testimonial-card .testimonial-author span {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #ffffff;
}
.testimonials-carousel .carousel-controls {
  display: block;
}
.testimonials-carousel .carousel-controls .carousel-btn {
  position: absolute;
  margin-right: 12px;
  margin-left: 12px;
  top: 45%;
  transform: translateY(170%);
  background: #ffffff;
  color: #000000;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.testimonials-carousel .carousel-controls .carousel-btn.prev {
  left: -10px;
}
.testimonials-carousel .carousel-controls .carousel-btn.next {
  right: -10px;
}
.testimonials-carousel .testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.testimonials-carousel .testimonials-grid .testimonial-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.testimonials-carousel .testimonials-grid .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.creator-section {
  background: #284703;
  padding: 80px 20px;
}
.creator-section .creator-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.creator-section .creator-content .creator-image {
  position: relative;
}
.creator-section .creator-content .creator-image .image-frame-gold {
  position: relative;
  border: 4px solid #c8a45c;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.creator-section .creator-content .creator-image .image-frame-gold img {
  width: 100%;
  height: auto;
  display: block;
}
.creator-section .creator-content .creator-image .image-frame-gold .creator-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ac9369;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}
.creator-section .creator-content .creator-text .creator-title {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 24px;
}
.creator-section .creator-content .creator-text .creator-title .text-highlight {
  color: #c8a45c;
}
.creator-section .creator-content .creator-text p {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 20px;
}

.how-works-section {
  padding: 80px 20px;
}
.how-works-section .section-title-center {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: #284703;
  text-align: center;
  margin-bottom: 60px;
}
.how-works-section .section-title-center .text-highlight {
  color: #c8a45c;
}
.how-works-section .how-works-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.how-works-section .how-works-grid .how-work-card {
  flex: 0 1 320px;
  background: #ffffff;
  padding: 40px 28px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.how-works-section .how-works-grid .how-work-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.how-works-section .how-works-grid .how-work-card .how-work-icon {
  width: 72px;
  height: 72px;
  background: rgba(40, 71, 3, 0.08);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
}
.how-works-section .how-works-grid .how-work-card .how-work-icon svg {
  color: #284703;
}
.how-works-section .how-works-grid .how-work-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: #284703;
  margin-bottom: 12px;
}
.how-works-section .how-works-grid .how-work-card p {
  font-family: "Poppins", sans-serif;
  color: #000000;
  line-height: 1.6;
}

.cta-section {
  background: #284703;
  padding: 60px 20px;
}
.cta-section .cta-box {
  background: linear-gradient(135deg, #f9f5e8 0%, #f5ede0 100%);
  border: 2px solid #ac9369;
  border-radius: 20px;
  padding: 50px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-section .cta-box .cta-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #284703;
  margin-bottom: 20px;
}
.cta-section .cta-box .cta-content p {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  color: #000000;
  line-height: 1.7;
  margin-bottom: 32px;
}
.cta-section .cta-box .cta-content a {
  text-decoration: none;
  color: inherit;
  background: #284703;
  color: #ffffff;
  padding: 16px 40px;
  border-radius: 50px;
  border: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cta-section .cta-box .cta-content a:hover {
  background: #407405;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 71, 3, 0.3);
}
.cta-section .cta-box .cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-section .cta-box .cta-benefits .cta-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Poppins", sans-serif;
  color: #000000;
}
.cta-section .cta-box .cta-benefits .cta-benefit svg {
  color: #000000;
  flex-shrink: 0;
}

.faq-section {
  background: #ffffff;
  padding: 80px 20px;
}
.faq-section .faq-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.faq-section .faq-icon svg {
  color: #284703;
}
.faq-section .section-title-center {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: #284703;
  text-align: center;
  margin-bottom: 60px;
}
.faq-section .faq-subtitle {
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #000000;
  margin-bottom: 48px;
}
.faq-section .faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-section .faq-container .faq-item {
  border-bottom: 1px solid rgba(172, 147, 105, 0.2);
  margin-bottom: 12px;
}
.faq-section .faq-container .faq-item.active .faq-question svg {
  transform: rotate(180deg);
}
.faq-section .faq-container .faq-item.active .faq-answer {
  max-height: 500px;
}
.faq-section .faq-container .faq-item .faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: #284703;
  font-weight: 500;
  transition: all 0.3s ease;
}
.faq-section .faq-container .faq-item .faq-question:hover {
  color: #284703;
}
.faq-section .faq-container .faq-item .faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-section .faq-container .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-section .faq-container .faq-item .faq-answer p {
  font-family: "Poppins", sans-serif;
  color: #000000;
  line-height: 1.7;
  padding-bottom: 24px;
}

.footer-liberdade {
  background: #284703;
  text-align: center;
}
.footer-liberdade p {
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  font-size: 0.95rem;
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .section-title-center {
    font-size: 1.8rem;
  }
  .about-content {
    display: flow-root !important;
  }
  .btn-primary-large,
  .btn-secondary-large,
  .btn-cta-purple {
    padding: 14px 32px;
    font-size: 1rem;
  }
  .feeling-card {
    padding: 24px;
  }
  .benefit-card {
    padding: 32px 20px;
  }
  .testimonials-grid .testimonial-card {
    max-width: 100% !important;
    flex: none !important;
  }
  .creator-content {
    display: flow-root !important;
  }
  .cta-box {
    display: flow-root !important;
    padding: 30px 20px;
  }
  .cta-content h2 {
    font-size: 1.8rem;
  }
  .cta-benefit {
    margin-top: 26px !important;
  }
}
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 16px;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .section-title-center {
    font-size: 2.2rem;
  }
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feelings-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .creator-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .how-works-grid {
    grid-template-columns: 1fr;
  }
  .cta-box {
    display: flow-root;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 30px;
  }
  .cta-content a {
    padding: 6px 24px;
  }
  .cta-benefit {
    margin-top: 26px;
  }
}
/* ===============================
   RESPONSIVO
================================ */
/* Tablet */
@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}
/* Mobile */
@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #3a5630 0%, #284703 100%);
  color: #ffffff;
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.security-badge {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(200, 178, 153, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid #ac9369;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease;
}

.security-badge svg {
  color: #ac9369;
  width: 24px;
  height: 24px;
}

.security-badge:hover {
  background: rgba(200, 178, 153, 0.3);
  transform: scale(1.05);
  border-color: #d9c9b0;
}

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

.hero {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInDown 0.8s ease;
}

.profile-image {
  width: 180px;
  height: 180px;
  margin: 0 auto 30px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #ac9369;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.profile-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile-image:hover {
  transform: scale(1.05);
  border-color: #d9c9b0;
  box-shadow: 0 15px 40px rgba(200, 178, 153, 0.3);
}

.main-title {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 1px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #d9c9b0;
  line-height: 1.8;
}

.cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.card {
  display: flex;
  width: 100%;
  max-width: 650px;
  height: 180px;
  background: rgba(74, 107, 58, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid #ac9369;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.8s ease;
}
.card a {
  display: flex;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.card:hover {
  border-color: #d9c9b0;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.card:nth-child(1) {
  animation-delay: 0.1s;
}

.card:nth-child(2) {
  animation-delay: 0.2s;
}

.card:nth-child(3) {
  animation-delay: 0.3s;
}

.card-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #ac9369;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
}

.card-icon svg {
  width: 20px;
  height: 20px;
  stroke: #ac9369;
}

.card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.2;
  color: #ffffff;
}

.card-subtitle {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}

.card-description {
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #d9c9b0;
}

.card-image {
  flex: 0 0 180px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 2px solid #ac9369;
}

.card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.footer {
  text-align: center;
  padding: 30px 0;
  border-top: 2px solid #ac9369;
}

.footer p {
  font-size: 0.9rem;
  color: #d9c9b0;
  font-weight: 300;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mb-4 {
  margin-bottom: 40px;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-4 {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 30px 15px;
  }
  .hero {
    margin-bottom: 40px;
  }
  .profile-image {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
  }
  .main-title {
    font-size: 2.5rem;
  }
  .subtitle {
    font-size: 1rem;
  }
  .card {
    flex-direction: column;
  }
  .card-content {
    padding: 30px;
  }
  .card-title {
    font-size: 2rem;
  }
  .card-subtitle {
    font-size: 1.3rem;
  }
  .card-image {
    flex: 0 0 250px;
    height: 250px;
    border-left: none;
    border-top: 3px solid #ac9369;
  }
}
@media (max-width: 480px) {
  .main-title {
    font-size: 2rem;
  }
  .subtitle {
    font-size: 0.95rem;
  }
  .card-content {
    padding: 25px;
  }
  .card-icon {
    font-size: 0.75rem;
    margin-bottom: 15px;
  }
  .card-title {
    font-size: 1.75rem;
  }
  .card-subtitle {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  .card-description {
    font-size: 0.95rem;
  }
  .card-image {
    flex: 0 0 200px;
    height: 200px;
  }
  .footer p {
    font-size: 0.85rem;
  }
}/*# sourceMappingURL=style.css.map */