/*
Theme Name:     Condor Web
Theme URI:  https://condor.pe/theme
Author:     Bertol Castro
Author URI: https://tusitio.example
Description: Tema profesional para Condor - Especialistas en contrómetros y papel térmico
Version:    1.0
License:    GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: condor-web
Tags:       custom-logo, custom-header, flexible-header, accessibility-ready, responsive-layout, business, professional

Tema profesional para empresa especializada en contrómetros y papel térmico.
*/

/* Reset y Base */
/* Google Fonts Variables */
:root {
  --font-titles: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-content: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

body {
  font-family: var(--font-content);
  font-size: 16px;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #ffffff;
}

/* Typography - Títulos con Roboto */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-titles);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  font-weight: 900;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
}

h3 {
  font-size: 2rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

h5 {
  font-size: 1.25rem;
  font-weight: 500;
}

h6 {
  font-size: 1.125rem;
  font-weight: 500;
}

/* Párrafos y contenido con Poppins */
p,
span,
div,
li,
a {
  font-family: var(--font-content);
}

/* Botones con Roboto para mejor legibilidad */
.btn {
  font-family: var(--font-titles);
  font-weight: 600;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #2c3e50;
}

h1 {
  font-size: 48px;
  font-weight: 700;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 16px;
}

.btn-primary {
  background-color: #0057b7;
  color: #ffffff;
  display: flex;
  align-items: center;
}

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

.btn-secondary {
  background-color: transparent;
  color: #0057b7;
  border: 2px solid #0057b7;
}

.btn-secondary:hover {
  background-color: #0057b7;
  color: #ffffff;
}

/* Hero Section */
.hero-section {
  /* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
  /* Use theme-relative path so it resolves correctly regardless of site URL */
  background-image: url(assets/images/qondor-contometros.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  min-height: 800px;
  display: flex;
  align-items: center;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-family: var(--font-titles);
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-family: var(--font-content);
  font-size: 18px;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image {
  text-align: center;
}

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Productos Section */
.productos-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-titles);
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.section-subtitle {
  font-family: var(--font-content);
  font-size: 18px;
  font-weight: 400;
  color: #34495e;
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.producto-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.producto-image {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.producto-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.producto-card:hover .producto-img {
  transform: scale(1.05);
}

.producto-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.producto-title {
  font-family: var(--font-titles);
  font-size: 24px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.producto-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.spec-item {
  background-color: #f8f9fa;
  color: #0057b7;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #e9ecef;
}

.producto-description {
  color: #34495e;
  margin-bottom: 20px;
  line-height: 1.6;
}

.producto-actions {
  margin-top: auto;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background-color: #25d366;
  color: #ffffff;
  border: none;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  color: #ffffff;
}

.whatsapp-btn svg {
  flex-shrink: 0;
}

/* Productos Más Vendidos Section - Nueva sección premium */
.productos-mas-vendidos-section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(248, 250, 252, 0.9) 100%
  );
  overflow: hidden;
}

.decorative-bg {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  opacity: 0.05;
  pointer-events: none;
  z-index: 1;
}

.bg-shape {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 50%;
  transform: rotate(25deg);
}

.productos-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 2;
}

.productos-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary-color), #0047a3);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 87, 183, 0.3);
}

.productos-title {
  font-family: var(--font-titles);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.productos-description {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.productos-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.producto-premium-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  backdrop-filter: blur(20px);
}

.producto-premium-container {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 381px;
}

.producto-premium-card.destacado {
  border-color: var(--secondary-color);

  position: relative;
}

.producto-premium-header {
  text-align: center;
}

.producto-premium-image {
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(45deg, #f8fafc, #e2e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.premium-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.producto-premium-card:hover .premium-img {
  transform: scale(1.1);
}

.producto-premium-name {
  font-family: var(--font-titles);
  font-size: 1rem;
  font-weight: 700;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.producto-premium-price {
  margin-bottom: 1rem;
}

.price-amount {
  font-family: var(--font-titles);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--secondary-color);
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  color: #64748b;
  font-weight: 500;
}

.producto-premium-subtitle {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  text-align: left;
}

.producto-premium-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  color: #374151;
  font-weight: 500;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  font-size: 14px;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  color: #0057b7;
  margin-right: 10px;
  flex-shrink: 0;
}

.producto-premium-actions {
  display: flex;

  gap: 0.75rem;
}

.btn-premium {
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  flex: 1;
}

.btn-cotizar {
  background: linear-gradient(135deg, #0047a3, #0047a3);
  color: white;
}

.btn-cotizar:hover {
  background: linear-gradient(135deg, #0047a3, #003875);
  transform: translateY(-2px);
  color: white;
}

.btn-detalles {
  background: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-detalles:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 87, 183, 0.2);
}

/* Producto Personalizado con Mini Calculadora */
.producto-personalizado {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border: 1px solid #0057b7;
}

.personalizado-header {
  background: linear-gradient(135deg, #0057b7 0%, #003d82 100%);
  padding: 1rem 0;
  border-radius: 14px 14px 0 0;
}

.calc-mini-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.calc-mini-icon svg {
  color: white;
}

.personalizado-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.personalizado-price .price-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
  font-family: var(--font-content);
}

.personalizado-price .price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: #0057b7;
  font-family: var(--font-titles);
  line-height: 1;
}

/* Mini Calculator Styles */
.mini-calculator {
  background: white;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #e2e8f0;
}

.mini-calc-selector {
  margin-bottom: 16px;
}

.mini-calc-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 8px;
  font-family: var(--font-titles);
}

.mini-radio-group {
  display: flex;
  gap: 8px;
}

.mini-radio {
  flex: 1;
  position: relative;
  cursor: pointer;
}

.mini-radio input {
  position: absolute;
  opacity: 0;
}

.mini-radio span {
  display: block;
  padding: 10px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: #64748b;
  transition: all 0.3s ease;
}

.mini-radio input:checked + span {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-color: #0057b7;
  color: #0057b7;
}

.mini-radio:hover span {
  border-color: #cbd5e1;
}

.mini-calc-input-group {
  margin-bottom: 16px;
}

.mini-calc-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-content);
  transition: all 0.3s ease;
}

.mini-calc-input:focus {
  outline: none;
  border-color: #0057b7;
  box-shadow: 0 0 0 3px rgba(0, 87, 183, 0.1);
}

.mini-calc-input.input-error {
  border-color: #ef4444;
  background: #fef2f2;
}

.mini-calc-input-small {
  width: 100%;
  padding: 10px 12px;
  font-size: 0.9rem;
}

.mini-mixto-container {
  display: flex;
  gap: 12px;
}

.mini-mixto-item {
  flex: 1;
}

.mini-mixto-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
}

.mini-error {
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 6px;
  padding: 6px 10px;
  background: linear-gradient(135deg, #fee2e2 0%, #fef2f2 100%);
  border-left: 3px solid #ef4444;
  border-radius: 4px;
  font-weight: 500;
}

.mini-calc-result {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #bae6fd;
  border-radius: 8px;
  padding: 0;
  margin-bottom: 16px;
  overflow: hidden;
}

.mini-result-header {
  background: linear-gradient(135deg, #0057b7 0%, #003d82 100%);
  color: white;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.875rem;
}

.mini-result-header svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

#mini-btn-comprar {
  width: 100%;
}

.mini-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  font-size: 0.875rem;
}

.mini-result-label {
  color: #64748b;
  font-weight: 500;
}

.mini-result-value {
  color: #1e293b;
  font-weight: 600;
}

.mini-tier-badge {
  background: linear-gradient(135deg, #0057b7 0%, #003d82 100%);
  color: white;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.total-value {
  font-size: 1.125rem;
  color: #0057b7;
}

.mini-result-row.total-row {
  margin-top: 4px;
  padding: 12px;
  border-top: 2px solid #bae6fd;
  background: linear-gradient(
    135deg,
    rgba(0, 87, 183, 0.05) 0%,
    rgba(0, 87, 183, 0.1) 100%
  );
}

.mini-result-row.total-row .mini-result-label {
  font-size: 1rem;
  font-weight: 700;
  color: #0057b7;
}

.mini-result-row.total-row .mini-result-value {
  font-size: 1rem;
  font-weight: 700;
  color: #0057b7;
}

/* Responsive Mini Calculator */
@media (max-width: 968px) {
  .mini-calculator {
    padding: 16px;
  }

  .mini-radio span {
    padding: 8px 12px;
    font-size: 0.8125rem;
  }

  .mini-calc-input {
    padding: 10px 14px;
    font-size: 0.9375rem;
  }
}

@media (max-width: 640px) {
  .personalizado-header {
    padding: 30px 20px;
  }

  .calc-mini-icon {
    width: 64px;
    height: 64px;
  }

  .calc-mini-icon svg {
    width: 36px;
  }

  .mini-calculator {
    padding: 14px;
  }

  .mini-mixto-container {
    flex-direction: column;
    gap: 12px;
  }

  .mini-mixto-item {
    width: 100%;
  }

  .mini-result-header {
    font-size: 0.8125rem;
    padding: 8px 10px;
  }

  .mini-result-row {
    font-size: 0.8125rem;
    padding: 6px 10px;
  }

  .total-value {
    font-size: 1rem !important;
  }
}

.producto-description {
  color: #34495e;
  margin-bottom: 20px;
  line-height: 1.6;
}

.producto-link {
  color: #0057b7;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.producto-link:hover {
  color: #003d82;
}

/* CTA Personalizar Section */
.cta-personalizar-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-personalizar-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 87, 183, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
}

.cta-personalizar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 50px 60px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
}

.cta-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-icon svg {
  color: #0057b7;
  width: 48px;
  height: 48px;
}

.cta-text {
  flex: 1;
}

.cta-title {
  font-family: var(--font-titles);
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.cta-subtitle {
  font-family: var(--font-content);
  font-size: 1.1rem;
  color: #64748b;
  margin: 0;
}

.btn-cta-personalizar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #0057b7 0%, #003d82 100%);
  color: white;
  font-family: var(--font-titles);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 87, 183, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-cta-personalizar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-cta-personalizar:hover::before {
  left: 100%;
}

.btn-cta-personalizar:hover {
  background: linear-gradient(135deg, #003d82 0%, #002855 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 87, 183, 0.35);
}

.btn-cta-personalizar svg {
  transition: transform 0.3s ease;
}

.btn-cta-personalizar:hover svg {
  transform: translateX(4px);
}

/* Responsive CTA Personalizar */
@media (max-width: 968px) {
  .cta-personalizar-content {
    flex-direction: column;
    text-align: center;
    padding: 40px 30px;
  }

  .cta-title {
    font-size: 1.6rem;
  }

  .cta-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .cta-personalizar-section {
    padding: 50px 0;
  }

  .cta-personalizar-content {
    padding: 30px 20px;
    gap: 24px;
  }

  .cta-icon {
    width: 64px;
    height: 64px;
  }

  .cta-icon svg {
    width: 36px;
    height: 36px;
  }

  .cta-title {
    font-size: 1.4rem;
  }

  .cta-subtitle {
    font-size: 0.95rem;
  }

  .btn-cta-personalizar {
    padding: 16px 28px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
}

/* Características Section */
.caracteristicas-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}

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

.caracteristica-item {
  text-align: center;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.caracteristica-icon {
  color: #0057b7;
  margin-bottom: 20px;
}

.caracteristica-title {
  font-size: 24px;
  color: #2c3e50;
  margin-bottom: 15px;
}

.caracteristica-description {
  color: #34495e;
  line-height: 1.6;
}

/* Por Qué Elegirnos Section */
.por-que-elegirnos-section {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.por-que-elegirnos-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.por-que-elegirnos-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.elegirnos-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.image-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
}

.stats-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  justify-content: space-around;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #0057b7;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: #34495e;
  font-weight: 500;
  margin-top: 4px;
}

.section-header-left {
  text-align: left;
  margin-bottom: 40px;
}

.section-header-left .section-title {
  text-align: left;
  margin-bottom: 15px;
}

.section-header-left .section-subtitle {
  text-align: left;
  max-width: 400px;
}

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

.beneficio-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.beneficio-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0057b7, #003d82);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.beneficio-content {
  flex: 1;
}

.beneficio-title {
  font-family: var(--font-titles);
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 8px;
}

.beneficio-description {
  font-family: var(--font-content);
  color: #34495e;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.cta-section {
  text-align: left;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
}

/* Delivery Section */
.delivery-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.delivery-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23C0C0C0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.1;
  z-index: 1;
}

.delivery-content {
  position: relative;
  z-index: 2;
}

/* Banner Principal */
.delivery-banner {
  margin-bottom: 60px;
}

.banner-background {
  background: linear-gradient(135deg, #d8444e 0%, #e30613 100%);
  border-radius: 20px;
  padding: 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 87, 183, 0.2);
}

.geometric-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: -100px;
  right: -100px;
  animation: float 6s ease-in-out infinite;
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: -75px;
  left: -75px;
  animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 20%;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.banner-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 3;
}

.banner-text {
  flex: 1;
  color: white;
}

.delivery-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.delivery-title {
  font-family: var(--font-titles);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1.2;
  color: white;
}

.delivery-subtitle {
  font-family: var(--font-content);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 40px;
  opacity: 0.9;
}

.delivery-metrics {
  display: flex;
  align-items: center;
  gap: 30px;
}

.metric-item {
  text-align: center;
}

.metric-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 5px;
}

.metric-label {
  font-size: 14px;
  opacity: 0.8;
  font-weight: 500;
}

.metric-divider {
  width: 2px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
}

.banner-action {
  margin-left: 40px;
}

.delivery-cta-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #18b652;
  color: white;
  padding: 18px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.delivery-cta-btn:hover {
  background: #0c943b;
  transform: translateY(-2px);
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.delivery-cta-btn:hover .btn-icon {
  transform: translateX(5px);
}

/* Grid de Contenido */
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Proceso de Envío */
.delivery-process {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(192, 192, 192, 0.2);
}

.process-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  border: 1px solid rgba(192, 192, 192, 0.1);
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 87, 183, 0.1);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0057b7 0%, #003d82 100%);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.step-description {
  color: #666;
  line-height: 1.5;
}

.step-connector {
  height: 2px;
  background: linear-gradient(90deg, #c0c0c0 0%, #0057b7 50%, #c0c0c0 100%);
  margin: 10px 0;
  opacity: 0.5;
}

/* Cobertura */
.delivery-coverage {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(192, 192, 192, 0.2);
}

.coverage-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.region-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.region-card:hover {
  border-color: #c0c0c0;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.region-card.highlight {
  background: linear-gradient(135deg, #0057b7 0%, #003d82 100%);
  color: white;
}

.region-card.highlight:hover {
  border-color: #25d366;
}

.region-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(192, 192, 192, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.region-card.highlight .region-icon {
  background: rgba(255, 255, 255, 0.2);
}

.region-info {
  flex: 1;
}

.region-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.region-time {
  font-size: 14px;
  opacity: 0.7;
  font-weight: 500;
}

.coverage-note {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, #25d366, #20c55a);
  border-radius: 12px;
  color: white;
}

.coverage-note p {
  margin: 0;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .delivery-grid {
    gap: 40px;
  }

  .banner-background {
    padding: 40px;
  }

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

  .productos-premium-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .delivery-section {
    padding: 60px 0;
  }

  .delivery-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .banner-info {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .banner-action {
    margin-left: 0;
  }

  .banner-background {
    padding: 30px;
  }

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

  .delivery-subtitle {
    font-size: 1.1rem;
  }

  .delivery-metrics {
    justify-content: center;
    gap: 20px;
  }

  .metric-number {
    font-size: 2rem;
  }

  .delivery-process,
  .delivery-coverage {
    padding: 30px;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .banner-background {
    padding: 20px;
  }

  .delivery-title {
    font-size: 1.8rem;
  }

  .delivery-metrics {
    flex-direction: column;
    gap: 15px;
  }

  .metric-divider {
    width: 40px;
    height: 2px;
  }

  .delivery-process,
  .delivery-coverage {
    padding: 20px;
  }

  .step-item {
    flex-direction: column;
    text-align: center;
  }

  .step-number {
    margin: 0 auto;
  }
}

/* Responsive Design para Productos Premium */
@media (max-width: 768px) {
  .productos-mas-vendidos-section {
    padding: 60px 0;
  }

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

  .productos-premium-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  /* .producto-premium-card {
    padding: 1.5rem;
  } */

  .price-amount {
    font-size: 2rem;
  }

  .producto-premium-actions {
    flex-direction: column;
  }
}

/* Calculadora de Precios Section */
.calculadora-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.calculadora-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.calculadora-content {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

/* Tabla de Precios Card */
.tabla-precios-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid #e9ecef;
}

.tabla-title {
  font-family: var(--font-titles);
  font-size: 1.5rem;
  font-weight: 700;
  color: #0057b7;
  margin-bottom: 10px;
  text-align: center;
}

.tabla-subtitle {
  font-size: 0.9rem;
  color: #64748b;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.4;
}

.pricing-table {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e9ecef;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  border-bottom: 1px solid #e9ecef;
  transition: background 0.2s ease;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row:hover:not(.pricing-header) {
  background: #f8f9fa;
}

.pricing-header {
  background: linear-gradient(135deg, #0057b7, #003d82);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.pricing-row.highlight {
  background: linear-gradient(
    135deg,
    rgba(0, 87, 183, 0.08),
    rgba(0, 87, 183, 0.04)
  );
  border-left: 4px solid #0057b7;
  font-weight: 600;
}

.pricing-col {
  padding: 12px 10px;
  text-align: center;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tabla-nota {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #e74c3c;
  text-align: center;
  font-weight: 500;
  font-style: italic;
}

/* Calculadora Card */
.calculadora-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.03);
  border: 1px solid #f1f5f9;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: sticky;
  top: 100px;
}

.calculadora-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08),
    0 4px 6px -2px rgba(0, 0, 0, 0.04);
}

.calc-title {
  font-family: var(--font-titles);
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 25px;
  text-align: center;
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group-calc {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-label {
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.calc-label svg {
  color: #0057b7;
}

.calc-input {
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-content);
  background: #ffffff;
  width: 100%;
}

.calc-input:focus {
  outline: none;
  border-color: #0057b7;
  box-shadow: 0 0 0 4px rgba(0, 87, 183, 0.08);
  background: #fafbfc;
}

.calc-input:hover:not(:focus) {
  border-color: #cbd5e1;
}

.calc-input.input-error {
  border-color: #ef4444;
  background: #fef2f2;
  animation: shake 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-8px);
  }
  75% {
    transform: translateX(8px);
  }
}

/* Error Message */
.error-message {
  margin-top: 8px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #fee2e2 0%, #fef2f2 100%);
  border-left: 3px solid #ef4444;
  border-radius: 8px;
  color: #dc2626;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.calc-hint {
  font-size: 0.8rem;
  color: #64748b;
  font-style: italic;
}

/* Radio Group */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
  position: relative;
  overflow: hidden;
  flex: 1;
}

.radio-option:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.radio-option input[type="radio"] {
  margin-top: 2px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #0057b7;
  flex-shrink: 0;
}

.radio-option input[type="radio"]:checked + .radio-label {
  color: #0057b7;
}

.radio-option:has(input[type="radio"]:checked) {
  border-color: #0057b7;
  background: linear-gradient(to right, #e3f2fd 0%, #ffffff 100%);
  box-shadow: 0 4px 12px rgba(0, 87, 183, 0.12);
}

.radio-option:has(input[type="radio"]:checked)::before {
  transform: scaleY(1);
}

.radio-label {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.radio-label strong {
  font-size: 1rem;
  color: #1e293b;
  font-family: var(--font-titles);
  font-weight: 600;
}

.radio-label small {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 400;
}

/* Input Mixto */
.input-mixto-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 12px;
}

.mixto-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mixto-label {
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mixto-label small {
  font-weight: 400;
  color: #0057b7;
  font-size: 0.8rem;
}

.calc-input-small {
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-content);
  background: #ffffff;
}

.calc-input-small:focus {
  outline: none;
  border-color: #0057b7;
  box-shadow: 0 0 0 4px rgba(0, 87, 183, 0.08);
  background: #fafbfc;
}

.calc-input-small:hover:not(:focus) {
  border-color: #cbd5e1;
}

.calc-input-small.input-error {
  border-color: #ef4444;
  background: #fef2f2;
  animation: shake 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

/* Result Breakdown */
.result-breakdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.result-item.subtotal {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(0, 87, 183, 0.2);
}

/* Resultado */
.calc-result {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  gap: 16px;
}

.result-item:last-of-type {
  border-bottom: none;
}

.result-item.total {
  margin-top: 12px;
  padding-top: 16px;
  border-top: 2px solid #0057b7;
  background: linear-gradient(
    135deg,
    rgba(0, 87, 183, 0.05) 0%,
    transparent 100%
  );
  padding: 16px;
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 24px;
  padding-right: 24px;
  margin-bottom: -24px;
  border-radius: 0 0 14px 14px;
}

.result-label {
  font-weight: 500;
  color: #475569;
  font-size: 0.95rem;
}

.result-value {
  font-weight: 700;
  color: #1e293b;
  font-size: 1rem;
}

.result-value.precio-unitario {
  color: #0057b7;
  font-size: 1.1rem;
}

.result-value.total-precio {
  color: #0057b7;
  font-size: 1.5rem;
  font-weight: 800;
}

.result-tier {
  margin-top: 15px;
  padding: 12px;
  background: white;
  border-radius: 8px;
  text-align: center;
  font-size: 0.85rem;
  color: #0057b7;
  font-weight: 600;
}

/* Botón Comprar */
.btn-comprar-calc {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #25d366 0%, #1ebe57 100%);
  color: white;
  padding: 18px 32px;
  border-radius: 12px;
  border: none;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
  font-family: var(--font-titles);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-comprar-calc::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-comprar-calc:hover::before {
  left: 100%;
}

.btn-comprar-calc:hover {
  background: linear-gradient(135deg, #1ebe57 0%, #17a347 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-comprar-calc:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-comprar-calc svg {
  width: 24px;
  height: 24px;
  fill: white;
}

/* .primary-menu li:last-child() a{
  color: #0057b7;
} */

.nav-menu li:last-child a {
  color: #0057b7;
}

/* Responsive para Calculadora */
@media (max-width: 968px) {
  .calculadora-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .calculadora-card {
    position: static;
  }

  .pricing-row {
    font-size: 0.85rem;
  }

  .pricing-col {
    padding: 10px 5px;
  }
}

@media (max-width: 640px) {
  .calculadora-section {
    padding: 50px 0;
  }

  .tabla-precios-card,
  .calculadora-card {
    padding: 20px;
  }

  .pricing-table {
    font-size: 0.75rem;
  }

  .pricing-row {
    grid-template-columns: 1fr 0.8fr 0.9fr 1fr;
  }

  .pricing-col {
    padding: 8px 4px;
    font-size: 0.75rem;
  }

  .calc-result {
    padding: 15px;
  }

  .result-value.total-precio {
    font-size: 1.2rem;
  }

  .input-mixto-group {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .radio-option {
    padding: 12px;
  }

  .radio-label strong {
    font-size: 0.9rem;
  }

  .radio-label small {
    font-size: 0.75rem;
  }
}

/* Contacto Section */
.contacto-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.contacto-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contacto-title {
  font-family: var(--font-titles);
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

.contacto-subtitle {
  font-family: var(--font-content);
  font-size: 18px;
  font-weight: 400;
  color: #34495e;
  margin-bottom: 30px;
}

.contacto-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contacto-item {
  color: #34495e;
  font-size: 16px;
}

.contacto-item strong {
  color: #2c3e50;
}

/* Form Styles */
.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-input,
.form-textarea {
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #0057b7;
}

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

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

  .hero-title {
    font-size: 36px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .contacto-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .productos-grid {
    grid-template-columns: 1fr;
  }

  .caracteristicas-grid {
    grid-template-columns: 1fr;
  }

  .por-que-elegirnos-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .delivery-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .map-container {
    padding: 30px;
  }

  .peru-svg {
    width: 150px;
    height: 180px;
  }

  .delivery-stats {
    flex-direction: column;
    gap: 15px;
  }

  .stat-card {
    justify-content: center;
  }

  .delivery-cta {
    padding: 24px;
  }

  .cta-title {
    font-size: 20px;
  }

  .elegirnos-img {
    height: 350px;
  }

  .stats-card {
    padding: 15px;
  }

  .stat-number {
    font-size: 24px;
  }

  .container {
    padding: 0 15px;
  }

  .hero-section,
  .productos-section,
  .caracteristicas-section,
  .por-que-elegirnos-section,
  .delivery-section,
  .contacto-section {
    padding: 60px 0;
  }
}

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

  .section-title {
    font-size: 28px;
  }

  .contacto-title {
    font-size: 28px;
  }

  .elegirnos-img {
    height: 250px;
  }

  .beneficio-card {
    padding: 16px;
    flex-direction: column;
    text-align: center;
  }

  .beneficio-icon {
    width: 40px;
    height: 40px;
  }

  .feature-item {
    padding: 12px;
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }

  .feature-icon {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    margin-right: 8px;
  }

  .peru-svg {
    width: 120px;
    height: 150px;
  }

  .map-container {
    padding: 20px;
  }

  .delivery-cta {
    padding: 20px;
  }

  .delivery-btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .stats-card {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
}
