:root {
  --primary-color: #746f35;
  --secondary-color: #f5e5c3;
  --success-color: #27ae60;
  --warning-color: #f39c12;
  --text-dark: #2c3e50;
  --footer: #475a2d;
  --text-light: #7f8c8d;
  --white: #ffffff;
  --light-bg: #f8f9fa;
  --shadow-light: 0 4px 20px rgba(45, 80, 22, 0.1);
  --shadow-medium: 0 8px 30px rgba(45, 80, 22, 0.15);
  --shadow-heavy: 0 20px 60px rgba(45, 80, 22, 0.2);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Shippori Mincho", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  background-color: #f9fafb;
}

/* ====================
           HEADER COMPONENT - NOVO DESIGN
           ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-light);
  z-index: 1000;
  transition: var(--transition);
  padding: 15px 0;
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
  text-decoration: none;
}

.header__logo img {
  width: 100%;
  max-width: 250px;
}

.header__logo-icon {
  font-size: 1.8rem;
  color: var(--success-color);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__nav-list {
  display: flex;
  gap: 25px;
  list-style: none;
}

.header__nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition);
  padding: 5px 0;
}

.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.header__nav-link:hover::after {
  width: 100%;
}

.header__nav-link.active {
  color: var(--primary-color);
  font-weight: 600;
}

.header__cta {
  display: flex;
  gap: 15px;
}

.header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  z-index: 1001;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--white);
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
  padding: 80px 30px 30px;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.mobile-menu__link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu__cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ====================
           BUTTON COMPONENTS
           ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  color: var(--white);
  border: 2px solid var(--white);
  overflow: hidden;
  font-size: 0.95rem;
}

.btn--primary {
  background: var(--secondary-color);
  color: var(--white);
  box-shadow: var(--shadow-light);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn--glow {
  background: var(--primary-color);
  color: var(--white);
  border: var(--primary-color);
  box-shadow: var(--shadow-light);
}

.btn--glow:hover {
  transform: translateY(-2px);
  background: var(--white);
  color: var(--primary-color);
  box-shadow: var(--shadow-medium);
}

.btn--outline {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
}

.btn--outline:hover {
  background: transparent;
  color: var(--secondary-color);
}

.btn--sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

/* ====================
           HERO SECTION - NOVO DESIGN
           ==================== */
.hero {
  min-height: 100vh;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50" cy="50" r="50"><stop offset="0" stop-color="rgba(255,255,255,.1)"/><stop offset="1" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="10" cy="10" r="1" fill="url(%23a)"/><circle cx="30" cy="5" r="1" fill="url(%23a)"/><circle cx="60" cy="15" r="1" fill="url(%23a)"/><circle cx="80" cy="8" r="1" fill="url(%23a)"/></svg>')
    repeat;
  opacity: 0.3;
}

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero__content {
  color: var(--white);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 24px;
  backdrop-filter: blur(5px);
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero__title-highlight {
  background: linear-gradient(135deg, #98fb98, #90ee90);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.1rem;
  margin-bottom: 32px;
  opacity: 0.9;
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.hero__stats {
  display: flex;
  gap: 30px;
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}

.hero__stat-label {
  font-size: 0.85rem;
  opacity: 0.8;
}

.hero__visual {
  position: relative;
}

.hero__image {
  width: 100%;
  height: 450px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero__floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  padding: 15px;
  animation: float 3s ease-in-out infinite;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__floating-card--1 {
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.hero__floating-card--2 {
  bottom: 15%;
  left: 5%;
  animation-delay: 1s;
}

/* ====================
           FEATURES SECTION
           ==================== */
.section {
  padding: 100px 0;
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section__badge {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.section__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.feature-card__icon {
  width: 60px;
  height: 60px;
  background: var(--secondary-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-card__title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.feature-card__description {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ====================
           STATS SECTION
           ==================== */
.stats {
  background: var(--light-bg);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stats__item {
  text-align: center;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.stats__item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.stats__number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--primary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.stats__label {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* ====================
           CTA SECTION
           ==================== */
.cta {
  background: var(--primary-color);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="b" cx="50" cy="50" r="50"><stop offset="0" stop-color="rgba(255,255,255,.05)"/><stop offset="1" stop-color="rgba(255,255,255,0)"/></radialGradient></defs><circle cx="20" cy="10" r="2" fill="url(%23b)"/><circle cx="50" cy="5" r="1.5" fill="url(%23b)"/><circle cx="80" cy="15" r="1" fill="url(%23b)"/></svg>')
    repeat;
}

.cta__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 2;
}

.cta__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.cta__subtitle {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.7;
}

.cta__form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta__form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.cta__input {
  padding: 14px 18px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
  width: 100%;
}

.cta__input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.cta__input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

.cta__textarea {
  grid-column: 1 / -1;
  min-height: 120px;
  resize: vertical;
}

.cta__select {
  padding: 14px 18px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.95rem;
  width: 100%;
}

.cta__select option {
  background: var(--primary-color);
  color: var(--white);
}

/* ====================
           TESTIMONIALS SECTION
           ==================== */
.testimonials {
  background: var(--light-bg);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.testimonial__header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.testimonial__info {
  flex: 1;
}

.testimonial__name {
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial__stars {
  color: var(--warning-color);
}

.testimonial__text {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ====================
           FOOTER COMPONENT
           ==================== */
.footer {
  background: var(--footer);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer__brand-icon {
  font-size: 1.8rem;
  color: var(--success-color);
}

.footer__description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.footer__social {
  display: flex;
  gap: 15px;
}

.footer__social-link {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.footer__section-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
}

.footer__link {
  margin-bottom: 12px;
}

.footer__link a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
  display: inline-block;
  padding: 5px 0;
}

.footer__link a:hover {
  color: var(--success-color);
}

.footer__link i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* ====================
           ANIMATIONS
           ==================== */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====================
           UTILITY CLASSES
           ==================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

/* ====================
           RESPONSIVE DESIGN
           ==================== */
@media (max-width: 992px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .header__nav-list {
    display: none;
  }

  .header__mobile-toggle {
    display: block;
  }

  .section {
    padding: 80px 0;
  }

  .cta__form-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .hero__buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero__stats {
    flex-direction: column;
    gap: 20px;
  }

  .feature-card {
    padding: 25px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ==============================================
   INFO LIST - Lista Inline com Separadores
   ============================================== */
.info-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 1rem;
}

.info-list__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.info-list__icon {
  width: 18px !important;
  height: 18px !important;
  color: var(--white);
  stroke-width: 1.8;
  flex-shrink: 0;
}

.info-list__text {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin: 0;
}

.info-list__separator {
  margin: 0 20px;
  color: var(--white);
  font-weight: bold;
  font-size: 16px;
}

/* ==============================================
   RESPONSIVIDADE
   ============================================== */

/* Tablets */
@media (max-width: 768px) {
  .info-list__separator {
    margin: 0 15px;
  }

  .info-list__icon {
    width: 16px !important;
    height: 16px !important;
  }

  .info-list__text {
    font-size: 13px;
  }

  .button-hidden {
    display: none;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .info-list {
    justify-content: flex-start;
    gap: 8px;
  }

  .info-list__item {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }

  .info-list__separator {
    display: none;
  }

  .info-list__icon {
    width: 20px !important;
    height: 20px !important;
  }

  .info-list__text {
    font-size: 11px;
    line-height: 1.2;
  }
}
