/* RESET & GLOBAL - Increased base sizes */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #F0F7F0;
  color: #1A3A2A;
  overflow-x: hidden;
  font-size: 1.05rem;
}

h1,
h2,
h3,
h4,
h5,
.navbar-brand,
.hero-title-wrapper {
  font-family: 'Bree Serif', serif;
}

h1 {
  font-size: 3.2rem !important;
}

h2 {
  font-size: 2.2rem !important;
}

h3 {
  font-size: 1.6rem !important;
}

h4 {
  font-size: 1.3rem !important;
}

h5 {
  font-size: 1.15rem !important;
}

h6 {
  font-size: 1rem !important;
}

/* SPINNER */
#spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1A3A2A;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s;
}

.elegant-spinner {
  width: 65px;
  height: 65px;
  border: 5px solid rgba(76, 175, 80, 0.2);
  border-top: 5px solid #4CAF50;
  border-right: 5px solid #66BB6A;
  border-bottom: 5px solid #81C784;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* NAVBAR - ALWAYS LIGHT */
.navbar-elegant {
  background: #FFFFFF !important;
  backdrop-filter: none;
  padding: 0.8rem 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #E8F5E9;
}

.nav-link-elegant {
  color: #1A3A2A !important;
  font-weight: 600;
  margin: 0 0.35rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.05rem;
  padding: 0.6rem 0.9rem !important;
}

.nav-link-elegant:hover,
.nav-link-elegant.active {
  color: #4CAF50 !important;
}

/* BUTTONS - Larger */
.btn-blue {
  background: linear-gradient(135deg, #4CAF50, #66BB6A);
  color: white;
  border: none;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.btn-blue:hover {
  background: linear-gradient(135deg, #43A047, #4CAF50);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
  color: white;
}

.btn-outline-red {
  background: transparent;
  border: 2px solid #4CAF50;
  color: #4CAF50;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
}

.btn-outline-red:hover {
  background: #4CAF50;
  color: white;
  transform: translateY(-2px);
}

.btn-red {
  background: linear-gradient(135deg, #4CAF50, #66BB6A);
  color: white;
  border-radius: 50px;
  padding: 0.8rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-block;
}

.btn-red:hover {
  background: linear-gradient(135deg, #43A047, #4CAF50);
  transform: scale(1.02);
  color: white;
}

.btn-app-elegant {
  background: #E8F5E9;
  padding: 0.45rem 1.2rem;
  border-radius: 35px;
  font-size: 0.85rem;
  text-decoration: none;
  color: #1A3A2A;
  margin: 0.25rem;
  display: inline-block;
  transition: 0.2s;
  font-weight: 500;
}

.btn-app-elegant:hover {
  background: #4CAF50;
  color: white;
}

/* HERO FULLSCREEN - Hero image opacity removed (fully visible) */
.hero-fullscreen {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(135deg, #1A3A2A 0%, #2E5A3E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 40px;
  backdrop-filter: blur(3px);
}

.hero-title-wrapper {
  font-size: 1.2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #81C784;
  margin-bottom: 1.2rem;
}

.main-title-elegant {
  font-size: 4rem !important;
  font-weight: 700;
  color: white;
  margin-bottom: 0.8rem;
}

.title-sub-elegant {
  font-size: 1.7rem !important;
  color: #A5D6A7;
  margin-bottom: 1.8rem;
}

.hero-desc-elegant {
  font-size: 1.15rem;
  color: #F0F7F0;
  margin-bottom: 2.2rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* STATS - Larger */
.stats-wrapper {
  background: white;
  margin-top: -2rem;
  position: relative;
  z-index: 5;
  border-radius: 50px 50px 0 0;
  padding: 2.5rem 0 1.5rem;
}

.stats-modern {
  background: #FFFFFF;
  border-radius: 60px;
  box-shadow: 0 25px 30px -10px rgba(0, 0, 0, 0.08);
  padding: 1.3rem 2rem;
  display: inline-block;
  width: auto;
  margin: 0 auto;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.stat-card {
  padding: 0.5rem 1.2rem;
}

.stat-number-elegant {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1A3A2A;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: #64748B;
}

.stat-divider {
  width: 2px;
  height: 45px;
  background: #E2E8F0;
}

.whatsapp-stat a {
  color: #1A3A2A;
  text-decoration: none;
  font-weight: 700;
}

.whatsapp-stat a:hover {
  color: #4CAF50;
}

/* CARDS - Larger padding and shadows */
.glass-card-elegant {
  background: white;
  border-radius: 38px;
  padding: 2.2rem;
  box-shadow: 0 15px 30px -8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.app-card-elegant {
  background: white;
  border-radius: 32px;
  padding: 1.8rem 1rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 25px -8px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.app-card-elegant:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 30px -10px rgba(0, 0, 0, 0.1);
}

.app-icon-elegant {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1.2rem;
}

/* PRICING - Larger */
.pricing-card-professional {
  background: white;
  border-radius: 38px;
  padding: 2.2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 12px 25px -8px rgba(0, 0, 0, 0.06);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.pricing-card-professional::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #4CAF50, #81C784, #A5D6A7);
}

.pricing-card-professional:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 35px -12px rgba(0, 0, 0, 0.12);
}

.price-amount {
  font-size: 2.6rem;
  font-weight: 800;
  color: #2E7D32;
}

.price-period {
  color: #64748B;
  font-size: 1rem;
}

.price-features-elegant li {
  margin-bottom: 0.85rem;
  color: #1A3A2A;
  font-size: 1rem;
}

/* FAQ - Larger text */
.faq-item-new {
  background: white;
  border-radius: 28px;
  margin-bottom: 1.2rem;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question-new {
  padding: 1.4rem 1.8rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  background: white;
  transition: 0.2s;
  font-size: 1.1rem;
}

.faq-question-new:hover {
  background: #F1F8E9;
}

.faq-question-new span:first-child {
  color: #1A3A2A;
}

.faq-answer-new {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.8rem;
  color: #64748B;
  transition: 0.3s ease;
  font-size: 1rem;
  line-height: 1.5;
}

.faq-item-new.active .faq-answer-new {
  max-height: 250px;
  padding: 0 1.8rem 1.4rem;
}

.faq-item-new.active .fa-chevron-down {
  transform: rotate(180deg);
}

/* FOOTER - #4CAF50 COLOR */
.footer-elegant {
  background: #4CAF50;
  color: white;
  padding: 4rem 0 2rem;
  margin-top: 3rem;
}

.footer-heading-elegant {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.footer-links-elegant {
  list-style: none;
  padding: 0;
}

.footer-links-elegant li {
  margin-bottom: 0.75rem;
}

.footer-links-elegant a {
  color: #FFFFFF;
  text-decoration: none;
  transition: 0.2s;
  font-size: 1rem;
  opacity: 0.9;
}

.footer-links-elegant a:hover {
  color: #FFFFFF;
  opacity: 1;
  text-decoration: underline;
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: white;
}

/* HIGHLIGHTED COPYRIGHT STYLES - NO EMOJIS */
.copyright-highlight {
  color: #FFD700;
  text-decoration: none;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  display: inline-block;
}

.copyright-highlight:hover {
  color: #FFEB3B;
  background: rgba(0, 0, 0, 0.3);
  transform: scale(1.02);
  text-decoration: underline;
}

.launch-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.2);
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  display: inline-block;
}

.launch-link:hover {
  color: #FFEB3B;
  background: rgba(0, 0, 0, 0.3);
  transform: scale(1.02);
  text-decoration: underline;
}

/* FLOATING ELEMENTS - Larger */
.whatsapp-float-elegant {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  padding: 14px 22px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  z-index: 99;
}

.back-to-top-elegant {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: linear-gradient(135deg, #4CAF50, #66BB6A);
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  z-index: 99;
  font-size: 1.2rem;
}

.back-to-top-elegant.visible {
  opacity: 1;
  visibility: visible;
}

.text-muted-custom {
  color: #64748B;
  font-size: 0.95rem;
}

/* Feature images hover */
.feature-item-elegant img {
  transition: transform 0.3s, filter 0.3s;
  width: 115px !important;
}

.feature-item-elegant img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 10px 20px rgba(76, 175, 80, 0.2));
}

/* Row padding increases */
.py-5 {
  padding: 4rem 0 !important;
}

.container {
  max-width: 1300px;
}

/* Increase spacing between sections */
.my-4 {
  margin: 2rem 0 !important;
}

.mt-3 {
  margin-top: 1.2rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.gap-3 {
  gap: 1.2rem !important;
}

.gap-2 {
  gap: 1rem !important;
}

@media (max-width: 768px) {
  .main-title-elegant {
    font-size: 2.5rem !important;
  }

  .title-sub-elegant {
    font-size: 1.3rem !important;
  }

  .stats-grid {
    gap: 0.8rem;
  }

  .stat-divider {
    display: none;
  }

  .hero-desc-elegant {
    font-size: 1rem;
  }

  .app-icon-elegant {
    width: 55px;
    height: 55px;
  }

  .hero-content {
    background: rgba(0, 0, 0, 0.6);
    margin: 1rem;
  }
}

html,
body {
  overflow-x: hidden;
}

img,
iframe {
  max-width: 100%;
}