/* 1pra5 Consultoria - Simple & Clean Design */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* CSS Custom Properties - Based on provided color palette */
:root {
  --deep-blue: #5A2469;
  --electric-blue: #3E92CC;
  --white: #FFFFFF;
  --vibrant-orange: #FF6525;
  --intense-purple: #762CBF;
  --light-gray: #BFCCCD;
  --text-dark: #2D3748;
  --text-light: #718096;
  --background-light: #F7FAFC;
  --border-light: #E2E8F0;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--text-light);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.text-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 1rem 0;
}

.section-sm {
  padding: 1rem 0;
}

/* Header */
.header {
  background: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  text-decoration: none;
}

.logo .highlight {
  color: var(--vibrant-orange);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--vibrant-orange);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: var(--white);
  color: var(--text-dark);
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><circle cx="200" cy="150" r="80" fill="%23FF6525" opacity="0.1"/><rect x="150" y="200" width="60" height="60" rx="12" fill="%23FF6525" opacity="0.15"/><path d="M100,100 Q200,50 300,100 T500,100" stroke="%23FF6525" stroke-width="2" fill="none" opacity="0.2"/></svg>');
  background-size: 400px 400px;
  background-repeat: repeat;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

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

.btn-primary {
  background: var(--vibrant-orange);
  color: var(--white);
}

.btn-primary:hover {
  background: #e55a20;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 101, 37, 0.3);
}

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

.btn-secondary:hover {
  background: var(--white);
  color: var(--deep-blue);
}

.btn-outline {
  background: transparent;
  color: var(--vibrant-orange);
  border: 2px solid var(--vibrant-orange);
}

.btn-outline:hover {
  background: var(--vibrant-orange);
  color: var(--white);
}

/* Cards */
.card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.card-simple {
  background: var(--background-light);
  border: none;
  box-shadow: none;
}

.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.card-icon.orange {
  background: var(--vibrant-orange);
  color: var(--white);
}

.card-icon.purple {
  background: var(--intense-purple);
  color: var(--white);
}

.card-icon.blue {
  background: var(--electric-blue);
  color: var(--white);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.card-text {
  color: var(--text-light);
  line-height: 1.6;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

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

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Product Cards */
.product-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
  height: auto;
  min-height: 140px;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.5rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
}

.product-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.product-subtitle {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 0.85rem;
  line-height: 1.3;
}

.feature-list {
  list-style: none;
  margin: 1.5rem 0;
  text-align: left;
}

.feature-list li {
  padding: 0.5rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--vibrant-orange);
  font-weight: bold;
}

/* Benefits Section */
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.benefit-content p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Forms */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  background: var(--white);
  color: var(--text-dark);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--vibrant-orange);
  box-shadow: 0 0 0 3px rgba(255, 101, 37, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  color: #e53e3e;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Pricing Tables */
.pricing-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.pricing-card.featured {
  border-color: var(--vibrant-orange);
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pricing-header {
  background: var(--background-light);
  padding: 2rem;
  text-align: center;
}

.pricing-header.featured {
  background: linear-gradient(135deg, var(--vibrant-orange), var(--intense-purple));
  color: var(--white);
}

.pricing-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.pricing-period {
  font-size: 0.9rem;
  opacity: 0.8;
}

.pricing-body {
  padding: 2rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.pricing-feature::before {
  content: '✓';
  color: var(--vibrant-orange);
  font-weight: bold;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--white);
  font-size: 1.5rem;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* Footer */
.footer {
  background: var(--background-light);
  border-top: 1px solid var(--border-light);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--vibrant-orange);
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
  text-align: center;
  color: var(--text-light);
  font-size: 0.875rem;
}

/* Flash Messages */
.flash-messages {
  position: fixed;
  top: 80px;
  right: 1rem;
  z-index: 1000;
  max-width: 400px;
}

.flash-message {
  background: var(--white);
  border-left: 4px solid var(--vibrant-orange);
  padding: 1rem;
  margin-bottom: 0.5rem;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
}

.flash-success {
  border-left-color: #38a169;
}

.flash-error {
  border-left-color: #e53e3e;
}

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

.text-orange { color: var(--vibrant-orange); }
.text-purple { color: var(--intense-purple); }
.text-blue { color: var(--electric-blue); }
.text-gray { color: var(--text-light); }
.text-dark { color: var(--text-dark); }

.bg-light { background-color: var(--background-light); }
.bg-white { background-color: var(--white); }

.w-full { width: 100%; }
.mx-auto { margin-left: auto; margin-right: auto; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { 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; }
.mt-5 { margin-top: 3rem; }

.p-4 { padding: 2rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.px-4 { padding-left: 2rem; padding-right: 2rem; }

.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 1rem; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

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

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

  .hero {
    min-height: 80vh;
    padding: 2rem 0;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 2rem 0;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

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

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

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

  .section-title {
    font-size: 1.75rem;
  }

  .card,
  .product-card,
  .pricing-card {
    padding: 1.5rem;
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInFromRight 0.8s ease-out;
}

/* Enhanced Visual Elements */
.hero-visual {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-text {
  flex: 1;
  z-index: 2;
  position: relative;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  position: relative;
}

.hero-svg {
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(255, 101, 37, 0.2));
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  position: relative;
  border: 2px solid #f8f9fa;
}

.process-step:hover {
  transform: translateY(-8px);
  border-color: var(--vibrant-orange);
  box-shadow: 0 12px 40px rgba(255, 101, 37, 0.15);
}

.process-step::before {
  content: attr(data-step);
  position: absolute;
  top: -15px;
  right: -15px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--vibrant-orange), var(--intense-purple));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(255, 101, 37, 0.3);
}

.process-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--vibrant-orange), var(--intense-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 6px 20px rgba(255, 101, 37, 0.25);
}



/* Enhanced Icons */
.feature-icon-large {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--vibrant-orange), var(--intense-purple));
  color: white;
  font-size: 2.5rem;
  box-shadow: 0 8px 30px rgba(255, 101, 37, 0.25);
}

.feature-icon-large:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 101, 37, 0.35);
}

/* Illustrated Cards */
.illustrated-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 1px solid #f1f3f4;
  position: relative;
  overflow: hidden;
}

.illustrated-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--vibrant-orange), var(--intense-purple));
}

.illustrated-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.15);
}

/* Methodology Cards */
.methodology-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.methodology-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 101, 37, 0.02), rgba(139, 92, 246, 0.02));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.methodology-card:hover::before {
  opacity: 1;
}

.methodology-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.percentage-display {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--vibrant-orange), var(--intense-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;m;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .hero-visual {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    margin-top: 2rem;
  }

  .hero-svg {
    max-width: 300px;
  }



  .percentage-display {
    font-size: 2.5rem;
  }

  .feature-icon-large {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .process-step::before {
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
}