:root {
  --primary-blue: #1e88e5;
  --primary-yellow: #ffd600;
  --dark-bg: #1a1a1a;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.navbar {
  padding: 1rem 0;
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #333 !important;
}

.navbar-logo {
  height: 50px;
  width: auto;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.navbar-brand:hover .navbar-logo {
  transform: scale(1.05);
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4a9fd8, #2171b5);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}

.nav-link {
  color: #333 !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--primary-blue) !important;
}

.btn-cotizar {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-cotizar:hover {
  background: #1565c0;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(30, 136, 229, 0.3);
}

.hero-section {
  position: relative;
  min-height: 600px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('../img/background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  display: flex;
  align-items: center;
}

.discount-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-yellow);
  color: #333;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 0.9rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content .highlight {
  color: var(--primary-yellow);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.6;
}

.feature-badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.badge-feature {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.badge-feature i {
  font-size: 1.2rem;
}

.badge-feature.green {
  border: 2px solid #4caf50;
}

.badge-feature.yellow {
  border: 2px solid var(--primary-yellow);
}

.badge-feature.red {
  border: 2px solid #f44336;
}

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

.btn-primary-cta {
  background: var(--primary-yellow);
  color: #333;
  border: none;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.btn-primary-cta:hover {
  background: #ffed4e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 214, 0, 0.4);
}

.btn-secondary-cta {
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 1rem 2rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.btn-secondary-cta:hover {
  background: white;
  color: #333;
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #e8f4f8, #f5f5f5);
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.features-header h2 .brand {
  color: var(--primary-blue);
}

.features-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.feature-icon.purple-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.feature-icon.green-gradient {
  background: linear-gradient(135deg, #a8e063 0%, #56ab2f 100%);
}

.feature-icon.teal-gradient {
  background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
}

.feature-icon.orange-gradient {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.feature-icon.blue-gradient {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.feature-icon.brown-gradient {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.cta-section {
  text-align: center;
  margin-top: 3rem;
}

.btn-start-saving {
  background: var(--primary-blue);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-start-saving:hover {
  background: #1565c0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
  color: white;
}

/* How It Works Section */
.how-it-works-section {
  padding: 5rem 0;
  background: white;
}

.how-it-works-header {
  text-align: center;
  margin-bottom: 4rem;
}

.how-it-works-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.how-it-works-header h2 .brand {
  color: var(--primary-blue);
}

.how-it-works-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.steps-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.step-item {
  flex: 1;
  min-width: 280px;
  text-align: center;
  position: relative;
}

.step-number {
  position: absolute;
  top: -15px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: var(--primary-yellow);
  color: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: 0 4px 10px rgba(255, 214, 0, 0.4);
  z-index: 10;
}

.step-icon-wrapper {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease;
}

.step-item:hover .step-icon-wrapper {
  transform: scale(1.05);
}

.step-icon-wrapper.gradient-1 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.step-icon-wrapper.gradient-2 {
  background: linear-gradient(135deg, #56ccf2 0%, #2f80ed 100%);
}

.step-icon-wrapper.gradient-3 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.step-icon-wrapper i {
  font-size: 4rem;
  color: white;
}

.step-arrow {
  position: absolute;
  top: 75px;
  right: -40px;
  font-size: 2rem;
  color: var(--primary-yellow);
  z-index: 5;
}

.step-item:last-child .step-arrow {
  display: none;
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.step-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Pricing Comparison Section */
.pricing-comparison-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #e8f4f8, #f0f0f0);
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.pricing-header h2 .highlight-orange {
  color: #ff5722;
}

.pricing-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.comparison-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 320px;
  max-width: 500px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.pricing-card-header {
  padding: 1rem 2rem;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: white;
}

.pricing-card-header.traditional {
  background: linear-gradient(135deg, #ef5350 0%, #e53935 100%);
}

.pricing-card-header.silpaq {
  background: linear-gradient(135deg, #66bb6a 0%, #43a047 100%);
}

.pricing-card-body {
  padding: 2rem;
}

.pricing-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2rem;
  text-align: left;
}

.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  margin-bottom: 0.75rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.price-item:hover {
  transform: translateX(5px);
}

.price-item.traditional-item {
  background: #ffebee;
}

.price-item.silpaq-item {
  background: #e8f5e9;
}

.price-item-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}

.price-item-icon {
  font-size: 1.2rem;
}

.price-item-icon.red {
  color: #ef5350;
}

.price-item-icon.green {
  color: #66bb6a;
}

.price-item-text {
  font-size: 0.95rem;
  color: #333;
  font-weight: 500;
}

.price-item-right {
  text-align: right;
}

.price-amount {
  font-size: 1.3rem;
  font-weight: 700;
}

.price-amount.red {
  color: #ef5350;
}

.price-amount.green {
  color: #66bb6a;
}

.savings-text {
  font-size: 0.8rem;
  color: #43a047;
  font-weight: 600;
  margin-top: 0.25rem;
}

.total-section {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
}

.total-section.traditional-total {
  background: #ffcdd2;
}

.total-section.silpaq-total {
  background: #c8e6c9;
  position: relative;
}

.total-label {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.total-amount {
  font-size: 2.2rem;
  font-weight: 800;
}

.total-amount.red {
  color: #c62828;
}

.total-amount.green {
  color: #2e7d32;
}

.savings-badge {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background: var(--primary-yellow);
  color: #333;
  border-radius: 25px;
  font-weight: 800;
  font-size: 1rem;
  animation: pulse 2s infinite;
}

/* Footer Section */
.footer {
  background: #1a1a1a;
  color: #999;
  padding: 4rem 0 0;
}

.footer-main {
  padding-bottom: 3rem;
}

.footer-logo-section {
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.footer-logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4a9fd8, #2171b5);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
}

.footer-logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 350px;
  color: #999;
}

.footer-secure-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-yellow);
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-secure-badge i {
  font-size: 1.2rem;
}

.footer-column h4 {
  color: var(--primary-yellow);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

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

.footer-links a {
  color: #999;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-links a i {
  font-size: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  color: #999;
}

.footer-contact-item i {
  font-size: 1.2rem;
  color: var(--primary-yellow);
  margin-top: 0.2rem;
}

.footer-contact-content h5 {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.footer-contact-content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, #4a90e2, #9b59b6, #e74c3c, #f39c12);
  padding: 2.5rem;
  border-radius: 20px;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #4a90e2, #9b59b6, #e74c3c, #f39c12);
  opacity: 0.9;
  z-index: 1;
}

.newsletter-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.newsletter-text h3 {
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.newsletter-text p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  margin: 0;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  flex: 1;
  max-width: 500px;
}

.newsletter-input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
}

.newsletter-input::placeholder {
  color: #999;
}

.newsletter-btn {
  background: var(--primary-yellow);
  color: #333;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.newsletter-btn:hover {
  background: #ffed4e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Social & Certifications */
.footer-bottom {
  border-top: 1px solid #333;
  padding: 2rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.social-section h4 {
  color: var(--primary-yellow);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  transition: all 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-5px);
}

.social-icon.facebook {
  background: #1877f2;
}

.social-icon.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.whatsapp {
  background: #25d366;
}

.social-icon.linkedin {
  background: #0077b5;
}

.certifications h4 {
  color: var(--primary-yellow);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.certification-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cert-badge {
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cert-badge.ssl {
  background: #7cb342;
  color: white;
}

.cert-badge.iso {
  background: #1e88e5;
  color: white;
}

.cert-badge.empresa {
  background: #f4511e;
  color: white;
}

/* Copyright */
.footer-copyright {
  background: #0d0d0d;
  padding: 1.5rem 0;
  border-top: 1px solid #222;
}

.copyright-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright-text {
  color: #666;
  font-size: 0.9rem;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-legal-links a:hover {
  color: var(--primary-yellow);
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

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

  .btn-primary-cta,
  .btn-secondary-cta {
    justify-content: center;
    width: 100%;
  }

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

  .feature-card {
    margin-bottom: 1.5rem;
  }

  .how-it-works-header h2 {
    font-size: 2rem;
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .step-item {
    width: 100%;
    max-width: 400px;
  }

  .step-arrow {
    display: none !important;
  }

  .step-number {
    right: 50%;
    transform: translateX(50%);
  }

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

  .comparison-container {
    flex-direction: column;
  }

  .pricing-card {
    max-width: 100%;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    width: 100%;
    flex-direction: column;
  }

  .newsletter-btn {
    width: 100%;
  }

  .copyright-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal-links {
    justify-content: center;
  }

  .social-icons,
  .certification-badges {
    justify-content: center;
  }
}
