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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

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

/* Enhanced Header Styles */
.header-enhanced {
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 4px solid #f97316;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo-enhanced {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-icon-enhanced {
  position: relative;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f97316 0%, #dc2626 50%, #ea580c 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.5);
  transition: all 0.3s ease;
  transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
}

.logo-icon-enhanced:hover {
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1.05);
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.7);
}

.logo-icon-enhanced i {
  color: white;
  font-size: 36px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

.logo-check {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 28px;
  height: 28px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: bold;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.logo-text-enhanced {
  display: flex;
  flex-direction: column;
}

.logo-brand {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 4px;
}

.brand-imprime {
  background: linear-gradient(135deg, #ea580c 0%, #dc2626 50%, #c2410c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.brand-toner {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-toner-footer {
  color: white;
}

.logo-tagline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-tagline span {
  font-size: 13px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.logo-tagline-footer {
  font-size: 13px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.dot-pulse {
  width: 10px;
  height: 10px;
  background: #f97316;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-about-us {
  background: transparent;
  border: 2px solid #f97316;
  color: #ea580c;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: inherit;
}

.btn-about-us:hover {
  background: #fff7ed;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.2);
}

.btn-solicitar-enhanced {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 18px 36px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-solicitar-enhanced:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.6);
}

/* Modal Styles */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(5px);
}

.modal-container {
  background: white;
  border-radius: 20px;
  max-width: 1100px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 40px 0;
  border-bottom: 2px solid #f3f4f6;
  margin-bottom: 40px;
}

.modal-header h2 {
  font-size: 36px;
  font-weight: 900;
  color: #1f2937;
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #6b7280;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.modal-close-btn:hover {
  background: #f3f4f6;
  color: #1f2937;
}

.modal-content {
  padding: 0 40px 40px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}

.company-intro {
  margin-bottom: 40px;
}

.company-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f97316, #dc2626);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.company-icon i {
  color: white;
  font-size: 40px;
}

.company-intro h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ea580c;
  margin-bottom: 10px;
}

.company-intro p {
  color: #6b7280;
  font-size: 20px;
}

.company-values {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.value-card {
  display: flex;
  gap: 20px;
}

.value-card i {
  color: #f97316;
  font-size: 28px;
  margin-top: 6px;
  flex-shrink: 0;
}

.value-card h4 {
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
  font-size: 18px;
}

.value-card p {
  color: #6b7280;
  line-height: 1.7;
}

.about-services h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 30px;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.service-card {
  padding: 24px;
  border-radius: 16px;
  border: 2px solid;
}

.service-card.orange-theme {
  background: #fff7ed;
  border-color: #fed7aa;
}

.service-card.blue-theme {
  background: #eff6ff;
  border-color: #bfdbfe;
}

.service-card.green-theme {
  background: #f0fdf4;
  border-color: #bbf7d0;
}

.service-card.purple-theme {
  background: #faf5ff;
  border-color: #e9d5ff;
}

.service-card h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
}

.service-card.orange-theme h4 {
  color: #c2410c;
}
.service-card.blue-theme h4 {
  color: #1e40af;
}
.service-card.green-theme h4 {
  color: #166534;
}
.service-card.purple-theme h4 {
  color: #7c3aed;
}

.service-card p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

.why-choose-us {
  background: #f9fafb;
  padding: 24px;
  border-radius: 16px;
}

.why-choose-us h4 {
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.why-choose-us ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.why-choose-us li {
  color: #6b7280;
  font-size: 14px;
}

.modal-footer {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid #f3f4f6;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #1f2937 0%, #111827 50%, #1f2937 100%);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.2);
  color: #fed7aa;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title-highlight {
  color: #f97316;
  display: block;
}

.hero-subtitle-text {
  display: block;
  font-size: 2rem;
  font-weight: 400;
  color: #d1d5db;
  margin-top: 8px;
}

.hero-description {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 32px;
  line-height: 1.6;
}

.price-highlight {
  color: #f97316;
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-image {
  position: relative;
}

.image-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 40px;
  position: relative;
}

.printer-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #dc2626;
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  transform: rotate(12deg);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
  font-size: 14px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-family: inherit;
}

.btn-primary {
  background: #f97316;
  color: white;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

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

.btn-secondary:hover {
  background: white;
  color: #1f2937;
}

.btn-white {
  background: white;
  color: #dc2626;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-white:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}

.btn-cta {
  background: linear-gradient(135deg, #f97316, #dc2626);
  color: white;
  font-size: 18px;
  font-weight: 700;
  padding: 20px 40px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(249, 115, 22, 0.5);
}

.btn-form {
  background: linear-gradient(135deg, #f97316, #dc2626);
  color: white;
  width: 100%;
  padding: 18px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

.btn-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(249, 115, 22, 0.5);
}

/* Services Section */
.services-section {
  padding: 60px 0;
  background: #f9fafb;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  text-align: center;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-icon.blue {
  background: #dbeafe;
  color: #2563eb;
}
.service-icon.green {
  background: #dcfce7;
  color: #16a34a;
}
.service-icon.orange {
  background: #fed7aa;
  color: #ea580c;
}

.service-item h3 {
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
  font-size: 16px;
}

.service-item p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

/* Economy Section */
.economy-section {
  padding: 80px 0;
  background: white;
}

.economy-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1f2937;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 48px;
}

.text-orange {
  color: #f97316;
}

.economy-card {
  background: linear-gradient(135deg, #f97316, #dc2626);
  border-radius: 24px;
  padding: 48px;
  color: white;
  margin-bottom: 48px;
}

.economy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.economy-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.economy-value {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.economy-info p {
  font-size: 1.125rem;
  opacity: 0.9;
}

.economy-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.2);
  padding: 16px;
  border-radius: 12px;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background: #f9fafb;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 60px;
}

.pricing-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.pricing-card.popular {
  border-color: #f97316;
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #f97316;
  color: white;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-header h3 {
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 12px;
}

.price {
  font-size: 3rem;
  font-weight: 900;
  color: #f97316;
  margin-bottom: 8px;
}

.price span {
  font-size: 1.125rem;
  color: #6b7280;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #374151;
}

.pricing-features i {
  color: #10b981;
  flex-shrink: 0;
}

/* Volume Discounts */
.volume-discounts {
  text-align: center;
  margin-top: 60px;
}

.volume-discounts h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 24px;
}

.discount-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.discount-badge {
  background: linear-gradient(135deg, #fed7aa, #fdba74);
  color: #c2410c;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
}

/* Urgency Section */
.urgency-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  text-align: center;
}

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

.urgency-icon {
  width: 64px;
  height: 64px;
  color: #fbbf24;
  margin: 0 auto 24px;
}

.urgency-section h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.urgency-section p {
  font-size: 1.25rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

.urgency-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.urgency-timer span {
  font-size: 1.5rem;
  font-weight: 700;
}

/* Form Section */
.form-section {
  padding: 80px 0;
  background: #f9fafb;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 48px;
}

.form-header p {
  font-size: 1.125rem;
  color: #6b7280;
}

.form-card {
  background: white;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #374151;
  font-size: 14px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  background: white;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.privacy-notice {
  text-align: center;
  color: #6b7280;
  font-size: 14px;
  margin-top: 16px;
}

/* Social Proof Section */
.social-proof-section {
  padding: 80px 0;
  background: white;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.case-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid #f3f4f6;
}

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

.case-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.case-icon.blue {
  background: #dbeafe;
  color: #2563eb;
}
.case-icon.purple {
  background: #e9d5ff;
  color: #7c3aed;
}
.case-icon.orange {
  background: #fed7aa;
  color: #ea580c;
}

.case-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.case-card p {
  color: #6b7280;
  margin-bottom: 20px;
}

.case-result {
  padding: 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.case-result.green {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.case-result.blue {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}
.case-result.orange {
  background: #fff7ed;
  color: #c2410c;
  border: 1px solid #fed7aa;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.star-filled {
  color: #fbbf24;
  fill: currentColor;
}

/* Guarantees Section */
.guarantees-section {
  padding: 80px 0;
  background: #f9fafb;
}

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

.guarantee-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid #bbf7d0;
  transition: transform 0.3s ease;
}

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

.guarantee-icon {
  width: 48px;
  height: 48px;
  color: #10b981;
  margin: 0 auto 20px;
}

.guarantee-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.guarantee-card p {
  color: #6b7280;
}

/* Enhanced Footer Styles */
.footer-enhanced {
  background: linear-gradient(135deg, #111827, #1f2937, #111827);
  color: white;
  padding: 80px 0 20px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-section h4 {
  font-size: 20px;
  font-weight: 700;
  color: #f97316;
  margin-bottom: 24px;
}

.footer-section p {
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 16px;
}

.contact-buttons,
.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-btn,
.social-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid #374151;
  border-radius: 12px;
  background: transparent;
  color: #9ca3af;
  text-align: left;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
}

.contact-btn.whatsapp-btn:hover {
  background: #10b981;
  border-color: #10b981;
  color: white;
  transform: translateY(-2px);
}

.contact-btn.email-btn {
  cursor: default;
}

.contact-btn.email-btn:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: white;
}

.contact-btn.location-btn:hover {
  background: #dc2626;
  border-color: #dc2626;
  color: white;
}

.social-btn.instagram-btn:hover {
  background: linear-gradient(135deg, #e91e63, #9c27b0);
  border-color: #e91e63;
  color: white;
  transform: translateY(-2px);
}

.social-btn.facebook-btn:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: white;
  transform: translateY(-2px);
}

.contact-icon,
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-btn.whatsapp-btn .contact-icon {
  background: #10b981;
}

.contact-btn.email-btn .contact-icon {
  background: #2563eb;
}

.contact-btn.location-btn .contact-icon {
  background: #dc2626;
}

.social-btn.instagram-btn .social-icon {
  background: linear-gradient(135deg, #e91e63, #9c27b0);
}

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

.contact-icon i,
.social-icon i {
  color: white;
  font-size: 20px;
}

.contact-info,
.social-info {
  flex: 1;
}

.contact-title,
.social-title {
  font-weight: 700;
  color: #d1d5db;
  margin-bottom: 4px;
}

.contact-detail,
.social-handle {
  font-size: 14px;
  color: #9ca3af;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  color: #9ca3af;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-family: inherit;
}

.footer-link:hover {
  color: #f97316;
  background: #1f2937;
  transform: translateX(8px);
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 20px;
  text-align: center;
  color: #9ca3af;
}

.brand-highlight {
  color: #f97316;
  font-weight: 700;
}

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

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

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

  .hero-subtitle-text {
    font-size: 1.5rem;
  }

  .hero-buttons {
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

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

  .economy-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .economy-value {
    font-size: 3rem;
  }

  .pricing-grid,
  .services-grid,
  .cases-grid,
  .guarantees-grid {
    grid-template-columns: 1fr;
  }

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

  .discount-badges {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .container {
    padding: 0 16px;
  }

  .form-card {
    padding: 32px 24px;
  }

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

  .logo-enhanced {
    gap: 12px;
  }

  .logo-icon-enhanced {
    width: 48px;
    height: 48px;
  }

  .logo-icon-enhanced i {
    font-size: 24px;
  }

  .logo-brand {
    font-size: 24px;
  }

  .header-actions {
    gap: 8px;
  }

  .btn-about-us {
    padding: 8px 12px;
    font-size: 14px;
  }

  .btn-solicitar-enhanced {
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }

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

  .price {
    font-size: 2.5rem;
  }

  .economy-value {
    font-size: 2.5rem;
  }

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

  .logo-brand {
    font-size: 20px;
  }

  .logo-icon-enhanced {
    width: 40px;
    height: 40px;
  }

  .logo-icon-enhanced i {
    font-size: 20px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading states */
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Focus states for accessibility */
.btn:focus,
input:focus,
select:focus {
  outline: 2px solid #f97316;
  outline-offset: 2px;
}

/* Performance optimizations */
img {
  max-width: 100%;
  height: auto;
}

.printer-image {
  object-fit: cover;
}
