/* Main Content Styles */
.content {
  overflow-x: hidden;
  color: #333;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

.process-cta {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.process-whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    font-size: 18px;
    border: none;
    cursor: pointer;
}

.process-whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.process-whatsapp-button svg {
    width: 24px;
    height: 24px;
}

/* Mobile */
@media (max-width: 768px) {
    .process-cta {
        margin: 40px auto;
    }
    
    .process-whatsapp-button {
        padding: 14px 24px;
        font-size: 16px;
    }
}

/* Hero Section */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  align-items: center;
  padding: 0 5%;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #2b5876 0%, #4e4376 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #495057;
  margin-bottom: 2.5rem;
}

.hero-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: perspective(1000px) rotateY(-10deg);
  transition: transform 0.5s ease;
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #2b5876 0%, #4e4376 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Value Proposition */
.value-prop {
  padding: 8rem 5%;
  background-color: white;
}

.value-prop h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #212529;
  text-align: center;
}

.value-prop .lead {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
  color: #495057;
}

.value-prop p {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #6c757d;
}

/* Deliverables Section */
.deliverables {
  padding: 6rem 5%;
  background-color: #f8f9fa;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 4rem;
  color: #212529;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.deliverable-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.deliverable-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.deliverable-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #2b5876, #4e4376);
}

.card-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(43, 88, 118, 0.1);
  position: absolute;
  top: 1rem;
  right: 1rem;
  line-height: 1;
}

.deliverable-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #212529;
  position: relative;
  z-index: 1;
}

.deliverable-card p {
  color: #6c757d;
  position: relative;
  z-index: 1;
}

/* Benefits Section */
.benefits {
  padding: 8rem 5%;
  background-color: white;
}

.benefits .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.benefits h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #212529;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.benefit-item:hover {
  background-color: #f8f9fa;
}

.benefit-item i {
  font-size: 1.5rem;
  color: #4e4376;
  margin-right: 1rem;
  flex-shrink: 0;
}

.benefit-item span {
  font-size: 1.1rem;
  color: #495057;
}

.benefits-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.benefits-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.benefits-image:hover img {
  transform: scale(1.05);
}

/* Differential Section */
.differential {
  padding: 8rem 5%;
  background: linear-gradient(135deg, #2b5876 0%, #4e4376 100%);
  color: white;
}

.differential .container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.differential h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.differential p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.stat-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem 1rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Case Studies */
.case-studies {
  padding: 8rem 5%;
  background-color: #f8f9fa;
}

.case-studies h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 4rem;
  color: #212529;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.case-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.case-card:hover {
  transform: translateY(-10px);
}

.case-image {
  height: 200px;
  overflow: hidden;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-card:hover .case-image img {
  transform: scale(1.1);
}

.case-content {
  padding: 2rem;
}

.case-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #212529;
}

.case-content p {
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.case-link {
  color: #4e4376;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.case-link:hover {
  text-decoration: underline;
}

.case-link::after {
  content: '→';
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.case-link:hover::after {
  transform: translateX(5px);
}

/* CTA Section */
.cta-section {
  padding: 8rem 5%;
  background: linear-gradient(135deg, #4e4376 0%, #2b5876 100%);
  color: white;
}

.cta-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.cta-section p {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

.cta-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  backdrop-filter: blur(5px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-button {
  background: white;
  color: #4e4376;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  
  .hero-content {
    max-width: 100%;
    margin-bottom: 3rem;
  }
  
  .benefits .container {
    grid-template-columns: 1fr;
  }
  
  .benefits-image {
    order: -1;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .section-title, .benefits h2, .differential h2, .case-studies h2, .cta-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .deliverables-grid, .cases-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}