/* Base Styles */
:root {
  --primary-color: #0a1a2f;
  --secondary-color: #1e3a5f;
  --accent-color: #ff8c2f;
  --text-color: #f8f9fa;
  --text-dark: #333333;
  --bg-light: #f8f9fa;
  --bg-dark: #0a1a2f;
  --whatsapp-color: #25D366;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --radius: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style-position: inside;
  margin-bottom: 16px;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

section {
  padding: 80px 0;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

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

.btn-primary:hover {
  background-color: #e67a1e;
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: #2a4a75;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  color: var(--text-color);
  background: url('https://images.pexels.com/photos/5202957/pexels-photo-5202957.jpeg') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(10, 26, 47, 0.8), rgba(10, 26, 47, 0.9));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 6rem;
  margin-bottom: 34px;
  font-weight: 700;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 400;
}

.cta-buttons {
  margin-top: 16px;
  gap: 20px;
}

/* Introduction Section */
.intro {
  background-color: white;
  text-align: center;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.intro h2 {
  color: var(--primary-color);
  font-size: 2rem;
}

.highlight {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--accent-color);
  padding: 16px;
  background-color: rgba(255, 140, 47, 0.1);
  border-radius: var(--radius);
  margin-top: 24px;
}

/* Feature Section */
.feature {
  background-color: #f5f7fa;
}

.feature-content {
  display: flex;
  align-items: center;
  gap: 48px;
}

.feature-image, .feature-text {
  flex: 1;
}

.feature-text h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
}

.feature-text .btn {
  margin-top: 16px;
}

/* Differences Section */
.differences {
  background-color: white;
  text-align: center;
}

.differences h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 48px;
}

.card-container {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.card {
  flex: 1;
  background-color: #f5f7fa;
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.card:nth-child(1) .card-icon {
  color: #dc3545;
}

.card:nth-child(2) .card-icon {
  color: #28a745;
}

.card:nth-child(3) .card-icon {
  color: var(--accent-color);
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.benefits-list {
  list-style: none;
  text-align: left;
}

.benefits-list li {
  margin-bottom: 8px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--text-color);
  text-align: center;
  padding: 64px 0;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.cta-content p {
  margin-bottom: 32px;
  font-size: 1.1rem;
}

/* Trust Section */
.trust {
  background-color: white;
  text-align: center;
  padding: 48px 0;
}

.trust-seal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 1.1rem;
  color: var(--primary-color);
}

.trust-seal i {
  color: #28a745;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.badge i {
  font-size: 1.5rem;
  color: var(--secondary-color);
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--text-color);
  text-align: center;
  padding: 24px 0;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--whatsapp-color);
  color: white;
  display: flex;
  align-items: center;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 100;
  transition: all 0.3s ease;
}

.whatsapp-button i {
  font-size: 1.5rem;
  margin-right: 8px;
}

.whatsapp-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 992px) {
  section {
    padding: 64px 0;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero h2 {
    font-size: 1.5rem;
  }
  
  .feature-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .feature-image, .feature-text {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 500px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .card-container {
    flex-direction: column;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 16px;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 24px;
  }
  
  .whatsapp-button span {
    display: none;
  }
  
  .whatsapp-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    justify-content: center;
    padding: 0;
  }
  
  .whatsapp-button i {
    margin: 0;
  }
}

@media (max-width: 576px) {
  section {
    padding: 48px 0;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero h2 {
    font-size: 1.2rem;
  }
  
  .intro h2, .feature-text h2, .differences h2, .cta-content h2 {
    font-size: 1.5rem;
  }
}