/* Variables CSS */
:root {
  --primary: #071734;
  --secondary: #44B39C;
  --accent: #A1D9CD;
  --light: #E8F7F7;
  --gray: rgba(7,23,52,0.64);
  --shadow: 0 10px 28px rgba(13,36,63,0.07);
  --transition: all 0.3s ease;
}
/* Reset minimal */
* { 
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  font-family: 'Ciutadella', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--primary);
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, #fbfdff 0%, #f1f6fb 45%, #e6eef8 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header fijo */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(7,23,52,0.08);
  z-index: 1000;
  padding: 12px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  width: 250px;
  height: auto;
}

.branch-indicator {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.current-branch {
  background: linear-gradient(135deg, rgb(10, 30, 66), var(--primary));
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(10, 30, 66, 0.3);
}



.branch-switcher {
  background: var(--light);
  border: 1px solid rgba(7,23,52,0.1);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.branch-switcher:hover {
  background: rgba(7,23,52,0.05);
  transform: translateY(-2px);
}

/* Contenido principal */
.main-content {
  flex: 1;
  margin-top: 80px;
  padding: 40px 24px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.hero-content {
  flex: 1;
}

.hero-image {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-height: 300px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cordon-page .hero-image {
  background: linear-gradient(135deg, var(--accent),var(--secondary));
}

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

h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
}

.subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.5;
}

.highlight {
  color: var(--accent);
  font-weight: 700;
}

.prado-page .highlight {
  color: var(--secondary);
}

.opening-date {
  margin-bottom: 24px;
  font-size: 1.1rem;
}

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

.color-secondary {
  color: var(--secondary) !important;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), #1CA292);
  color: white;
  box-shadow: 0 4px 12px rgba(72, 183, 165, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(72, 183, 165, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--primary);
  border: 1px solid rgba(7,23,52,0.1);
}

.btn-secondary:hover {
  background: rgba(7,23,52,0.05);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Sección de información */
.info-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.info-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(7,23,52,0.04);
}

.info-card h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card h2 svg {
  width: 24px;
  height: 24px;
}

.info-list {
  list-style: none;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--gray);
}

.info-list li svg {
  width: 18px;
  height: 18px;
  color: var(--secondary);
}

/* Sección de pedidos online */
.online-orders {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.online-orders h2 {
  font-size: 1.8rem;
  margin-bottom: 32px;
  color: var(--primary);
  text-align: center;
}

.order-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.order-method {
  padding: 24px;
  border-radius: 12px;
  background: var(--light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.order-method.current {
  border: 2px solid var(--secondary);
}

.order-method.future {
  opacity: 0.7;
  border: 2px dashed rgba(7,23,52,0.2);
}

.method-icon {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(13,36,63,0.1);
}

.method-icon svg {
  width: 30px;
  height: 30px;
  color: var(--secondary);
}

.order-method h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.order-method p {
  color: var(--gray);
  margin-bottom: 20px;
  flex-grow: 1;
}

.coming-soon {
  background: rgba(7,23,52,0.1);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Sección de contacto */
.contact-section {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.contact-section h2 {
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: var(--primary);
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  background: var(--light);
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(13,36,63,0.1);
}

.contact-item svg {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  color: var(--secondary);
}

.contact-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  margin-top: 8px;
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--secondary);
}

/* Sección de servicios */
.services-section {
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(7,23,52,0.04);
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(13,36,63,0.1);
}

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

.service-icon svg {
  width: 40px;
  height: 40px;
  color: var(--secondary);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.service-card p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.5;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.service-table {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  font-weight: 700;
  color: var(--primary);
}

.service-table .col {
  flex: 1;
}

.service-table h4 {
  font-weight: 600;
  margin-bottom: 6px;
  text-decoration: underline;
}

.service-table ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-table li {
  margin-bottom: 4px;
  color: var(--secondary);
}

/* En pantalla chica, una sola columna */
@media (max-width: 600px) {
  .service-table {
    flex-direction: column;
  }
}
.service-table.single ul {
  list-style: none;
  padding: 0;
  margin: 10px auto 0 auto;
}

.service-table.single li {
  margin-bottom: 4px;
}

/* Sección de métodos de pago */
.payment-section {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.payment-section h2 {
  font-size: 1.8rem;
  margin-bottom: 32px;
  color: var(--primary);
  text-align: center;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.payment-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  border-radius: 12px;
  background: var(--light);
}

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

.payment-icon svg {
  width: 30px;
  height: 30px;
  color: var(--secondary);
}

.payment-method h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.payment-method p {
  color: var(--gray);
}

/* Sección de precios */
.pricing-section {
  margin-bottom: 60px;
}

.pricing-container {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.pricing-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(7,23,52,0.1);
}

.pricing-header h2 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.pricing-header p {
  color: var(--gray);
  font-size: 1.1rem;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pricing-category {
  border-bottom: 1px solid rgba(7,23,52,0.1);
  padding-bottom: 24px;
}

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

.pricing-category h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--primary);
  padding-left: 12px;
  border-left: 4px solid var(--secondary);
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(7,23,52,0.05);
}

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

.service-name {
  color: var(--primary);
  font-weight: 500;
}

.service-price {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.1rem;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.payment-option {
  display: flex;
  flex-direction: column;
  padding: 16px;
  background: var(--light);
  border-radius: 8px;
}

.payment-name {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.payment-desc {
  color: var(--gray);
  font-size: 0.9rem;
}

.pricing-footer {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(7,23,52,0.1);
}

.pricing-footer p {
  color: var(--gray);
  margin-bottom: 20px;
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  color: white;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px 10px rgba(37, 211, 102, 0.3);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

/* Footer */
.footer {
  text-align: center;
  padding: 24px;
  color: var(--gray);
  font-size: 0.9rem;
  border-top: 1px solid rgba(7,23,52,0.08);
}

/* Responsive */
@media (max-width: 968px) {
  .hero {
    flex-direction: column;
  }
  
  .info-section {
    grid-template-columns: 1fr;
  }
  
  .order-methods {
    grid-template-columns: 1fr;
  }
  
  h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 12px;
  }
  
  .main-content {
    margin-top: 120px;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  .contact-grid,
  .services-grid,
  .payment-methods {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    justify-content: center;
  }
}

/* Sección de cobertura */
.coverage-section {
  margin-bottom: 60px;
}

.coverage-container {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.coverage-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(7,23,52,0.1);
}

.coverage-header h2 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.coverage-header p {
  color: var(--gray);
  font-size: 1.1rem;
}

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

.coverage-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.coverage-notice {
  background: var(--light);
  border-radius: 12px;
  padding: 24px;
}

.coverage-notice h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.coverage-notice p {
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.5;
}

.coverage-area {
  margin: 20px 0;
  padding: 16px;
  background: white;
  border-radius: 8px;
  border-left: 4px solid var(--secondary);
}

.address-point {
  display: flex;
  align-items: center;
  gap: 12px;
}

.address-icon {
  font-size: 1.5rem;
}

.address-text {
  font-weight: 600;
  color: var(--primary);
}

.coverage-expansion {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(7,23,52,0.1);
}

.coverage-actions {
  text-align: center;
  padding: 24px;
  background: rgba(161, 217, 205, 0.1);
  border-radius: 12px;
}

.action-note {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--gray);
}

.coverage-map {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  position: relative;
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #e8f7f7 0%, #d1e9e9 100%);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(7,23,52,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.center-marker {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.center-address {
  font-weight: 600;
  color: var(--primary);
  background: white;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.coverage-radius {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.radius-circle {
  width: 300px;
  height: 300px;
  border: 2px dashed var(--secondary);
  border-radius: 50%;
  opacity: 0.7;
}

.radius-label {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 600;
  color: var(--secondary);
  background: white;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.9rem;
}

.coverage-footer {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(7,23,52,0.1);
}

.coverage-footer p {
  color: var(--gray);
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 968px) {
  .coverage-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .map-placeholder {
    height: 300px;
  }
  
  .radius-circle {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .coverage-container {
    padding: 24px;
  }
  
  .coverage-header h2 {
    font-size: 1.6rem;
  }
  
  .radius-circle {
    width: 150px;
    height: 150px;
  }
}
.leaflet-control-attribution{
  display:none;
}