/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --moss-50: #f6f7f4;
  --moss-100: #e9ebe3;
  --moss-200: #d4d8c8;
  --moss-300: #b8bfa4;
  --moss-400: #9ca682;
  --moss-500: #8b9a46;
  --moss-600: #6b7c32;
  --moss-700: #4a5d23;
  --moss-800: #3d4b1e;
  --moss-900: #343f1c;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  scroll-behavior: smooth;
}

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

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e5e5;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo svg {
  height: 50px;
  width: auto;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--moss-700);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: var(--moss-700);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--moss-700);
  font-weight: 500;
}

.language-selector {
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  background: white;
  cursor: pointer;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--moss-700);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid #e5e5e5;
  background: white;
}

.mobile-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--moss-700);
  font-weight: 500;
  padding: 0 1rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--moss-800), var(--moss-700), var(--moss-600));
  color: white;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.floating-1 {
  width: 80px;
  height: 80px;
  top: 80px;
  left: 40px;
  animation: pulse 3s infinite;
}

.floating-2 {
  width: 64px;
  height: 64px;
  top: 160px;
  right: 80px;
  animation: bounce 2s infinite;
}

.floating-3 {
  width: 48px;
  height: 48px;
  bottom: 128px;
  left: 80px;
  animation: pulse 2.5s infinite;
}

.floating-4 {
  width: 96px;
  height: 96px;
  bottom: 80px;
  right: 40px;
  animation: bounce 3s infinite;
}

.floating-5 {
  width: 128px;
  height: 128px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.05);
  animation: spin 20s linear infinite;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-text {
  space-y: 2rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out;
}

.badge {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.badge:hover {
  transform: scale(1.05);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--moss-100);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.value-proposition {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.value-proposition i {
  font-size: 2.5rem;
  color: var(--moss-300);
}

.value-amount {
  font-size: 2rem;
  font-weight: bold;
  color: var(--moss-300);
}

.value-label {
  font-size: 0.9rem;
  color: var(--moss-100);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--moss-500);
  color: white;
}

.btn-primary:hover {
  background: var(--moss-400);
  transform: scale(1.05);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: var(--moss-800);
  transform: scale(1.05);
}

/* Hero Stats */
.hero-stats {
  position: relative;
}

.stats-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  transition: transform 0.5s ease;
}

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

.stats-header {
  text-align: center;
  margin-bottom: 2rem;
}

.stats-header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.stats-line {
  width: 60px;
  height: 3px;
  background: var(--moss-300);
  margin: 0 auto;
  border-radius: 2px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--moss-300);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.stat-item:hover .stat-number {
  color: var(--moss-200);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--moss-100);
  margin-bottom: 0.75rem;
}

.stat-bar {
  width: 100%;
  height: 6px;
  background: var(--moss-600);
  border-radius: 3px;
  overflow: hidden;
}

.stat-fill {
  height: 100%;
  background: var(--moss-300);
  border-radius: 3px;
  animation: pulse 2s infinite;
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.security-badge {
  text-align: center;
  transition: transform 0.3s ease;
}

.security-badge:hover {
  transform: scale(1.1);
}

.security-badge i {
  font-size: 2rem;
  color: var(--moss-300);
  margin-bottom: 0.5rem;
  display: block;
}

.security-badge span {
  font-size: 0.8rem;
  color: var(--moss-100);
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: var(--moss-500);
  color: white;
  padding: 1rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.floating-card-1 {
  top: -20px;
  right: -20px;
  animation: bounce 2s infinite;
}

.floating-card-2 {
  bottom: -20px;
  left: -20px;
  background: white;
  color: var(--moss-700);
  animation: pulse 2s infinite;
}

/* Ticker */
.ticker {
  margin-top: 4rem;
  overflow: hidden;
}

.ticker-content {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 10px;
  display: flex;
  animation: scroll 30s linear infinite;
  gap: 3rem;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  color: var(--moss-100);
}

.ticker-item i {
  color: var(--moss-300);
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.card p {
  color: #666;
  line-height: 1.6;
}

/* Problem Section */
.problem-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.problem-card {
  border: 2px solid #fecaca;
  background: #fef2f2;
}

.problem-card i {
  color: #dc2626;
}

/* Solution Section */
.solution-section {
  padding: 5rem 0;
  background: white;
}

.solution-card {
  border: 2px solid var(--moss-200);
  background: var(--moss-50);
}

.solution-card i {
  color: var(--moss-600);
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.service-card i {
  color: var(--moss-600);
}

/* Process Section */
.process-section {
  padding: 5rem 0;
  background: white;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--moss-600);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.step-number:hover {
  transform: scale(1.1);
}

.process-step i {
  font-size: 2rem;
  color: var(--moss-600);
  margin-bottom: 1rem;
  display: block;
}

.process-step h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #333;
}

.process-step p {
  color: #666;
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-text p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-stats {
  background: var(--moss-600);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.about-stat i {
  font-size: 3rem;
  color: var(--moss-300);
  margin-bottom: 1rem;
  display: block;
}

.about-stat .stat-number {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.about-stat .stat-label {
  font-size: 0.9rem;
  color: var(--moss-100);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.value-card i {
  font-size: 3rem;
  color: var(--moss-600);
  margin-bottom: 1.5rem;
  display: block;
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #333;
}

.value-card p,
.value-card ul {
  color: #666;
  text-align: left;
}

.value-card ul {
  list-style: none;
  padding: 0;
}

.value-card li {
  margin-bottom: 0.5rem;
}

/* Social Proof Section */
.social-proof-section {
  padding: 5rem 0;
  background: var(--moss-800);
  color: white;
}

.social-proof-section .section-header h2 {
  color: white;
}

.social-proof-section .section-header p {
  color: var(--moss-100);
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.proof-stat {
  text-align: center;
  transition: transform 0.3s ease;
}

.proof-stat:hover {
  transform: scale(1.1);
}

.proof-stat i {
  font-size: 3rem;
  color: var(--moss-300);
  margin-bottom: 1rem;
  display: block;
}

.proof-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--moss-300);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: scale(1.05);
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.stars i {
  color: var(--moss-300);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.testimonial-author {
  font-size: 0.9rem;
  color: var(--moss-200);
  font-weight: 500;
}

/* Final CTA Section */
.final-cta-section {
  padding: 5rem 0;
  background: var(--moss-500);
  color: white;
  text-align: center;
}

.final-cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.final-cta-section p {
  font-size: 1.25rem;
  color: var(--moss-100);
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-section .btn-primary {
  background: white;
  color: var(--moss-600);
}

.final-cta-section .btn-primary:hover {
  background: #f0f0f0;
  transform: scale(1.05);
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  space-y: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: scale(1.02);
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--moss-600);
  min-width: 24px;
}

.contact-item .fab.fa-whatsapp {
  color: #25d366;
}

.whatsapp-btn {
  background: #25d366;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  margin-right: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: scale(1.05);
}

.contact-extra {
  background: var(--moss-600);
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.contact-extra h3 {
  margin-bottom: 1rem;
}

.contact-extra-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-extra-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-extra-item i {
  color: var(--moss-300);
}

.contact-form-container {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.contact-form-container:hover {
  transform: scale(1.02);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--moss-600);
}

.contact-form .btn-primary {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand .logo svg {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #ccc;
  margin-bottom: 1.5rem;
  max-width: 400px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: #666;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: white;
  transform: scale(1.1);
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 1rem;
  color: white;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-contact li {
  color: #ccc;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 1rem;
  text-align: center;
  color: #666;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.whatsapp-float-btn {
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

.whatsapp-float-btn:hover {
  background: #128c7e;
  transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-nav.active {
    display: flex;
  }

  .phone-info {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .trust-badges {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-extra-items {
    grid-template-columns: 1fr;
  }

  .floating-card {
    position: static;
    margin: 1rem 0;
  }

  .ticker-content {
    animation-duration: 20s;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1.1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .proof-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
  }

  .whatsapp-float-btn {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}
