:root {
  --primary: #0a2342; /* Azul Navy NYC */
  --accent: #d4af37; /* Dorado elegante */
  --text: #000000; /* Negro general */
  --light: #f9f9f9;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: var(--text);
  scroll-behavior: smooth;
  background-color: white;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* --- Navegación --- */
nav {
  background: white;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  height: 60px;
  width: auto;
}

.logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.logo span {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 3px;
  font-weight: 800;
}

/* --- Hero Section --- */
.hero {
  background:
    linear-gradient(rgba(10, 35, 66, 0.8), rgba(10, 35, 66, 0.4)),
    url(assets/img/dry.png);
  background-size: cover;
  background-position: center;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 40px 20px;
}

.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

h4 {
  color: rgb(0, 0, 0);
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: center;
}

.btn-main {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 18px 35px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  margin-top: 10px;
  transition: 0.3s;
  text-transform: uppercase;
}

.btn-main:hover {
  background-color: #b8952e;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-areas {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.area-btn-mini {
  background-color: transparent;
  color: white;
  padding: 6px 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1px solid white;
}

.area-btn-mini:hover {
  background-color: #b8952e;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* --- Pricing Section --- */
.pricing {
  background-color: var(--light);
  padding: 80px 0;
}

.pricing h2 {
  text-align: center;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  color: var(--primary);
}

.pricing-subtitle {
  margin-bottom: 40px;
  color: #666;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.pricing-card {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--accent);

  /* ✅ Para que NUNCA corte la última columna en móvil */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-card h3 {
  margin-bottom: 20px;
  color: var(--primary);
}

/* --- Tablas --- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;

  /* ✅ CLAVE: evita que la última columna colapse/desaparezca en mobile real */
  table-layout: fixed;
}

/* HEADERS */
.pricing-table th {
  background-color: var(--primary);
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  padding: 12px 10px;
  font-size: 0.75rem;
  text-align: left;

  /* evita que se rompan raro los headers */
  white-space: nowrap;
}

/* CELDAS */
.pricing-table td {
  padding: 12px 10px;
  border-bottom: 1px solid #f0f0f0;
  color: #000000 !important;
  font-size: 0.9rem;
}

/* ITEM */
.pricing-table td:first-child {
  font-weight: 600;

  /* ✅ para que "Blouses cashmere" no empuje la tabla y mate PRESS */
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* CLEAN más a la izquierda */
.pricing-table td:nth-child(2),
.pricing-table th:nth-child(2) {
  text-align: left;
  padding-left: 6px;
  white-space: nowrap;
}

/* PRESS visible + alineación derecha */
.pricing-table th:last-child {
  text-align: right;
  color: #ffffff !important;
  white-space: nowrap;
}

/* Solo el precio (td) en azul */
.pricing-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--primary) !important;
  white-space: nowrap;
}

/* --- Formulario --- */
.order-section {
  background: var(--primary);
  color: white;
  padding: 80px 0;
}

.order-section h2 {
  color: white;
  margin-bottom: 10px;
}

.order-section p {
  color: #ccc;
  margin-bottom: 30px;
  font-weight: normal;
}

.form-container {
  max-width: 500px;
  margin: auto;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
select,
textarea {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 100%;
  font-size: 1rem;
  font-family: inherit;
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  padding: 18px;
  font-weight: bold;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  transition: 0.3s;
  text-transform: uppercase;
}

.btn-whatsapp:hover {
  background: #1eb956;
  transform: scale(1.02);
}

/* --- Footer --- */
footer {
  background: white;
  padding: 40px 0;
  border-top: 1px solid #eee;
}

footer p {
  color: #333 !important;
  font-weight: normal;
  text-align: center;
}

.pricing-footer {
  text-align: center;
  margin-top: 40px;
  padding: 0 20px;
}

.special-factor {
  font-family: "Montserrat", sans-serif;
  color: var(--primary) !important;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 30px;
  margin-bottom: 20px;
  line-height: 1.4;
  text-align: center;
}

.special-factor span {
  font-weight: 400;
  font-size: 0.9rem;
  display: block;
}

.pickup-notice {
  font-family: "Montserrat", sans-serif;
  color: #555 !important;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.5;
}

.pickup-notice span {
  font-weight: 400;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 10px;
}

/* --- Media Queries --- */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .nav-logo {
    height: 50px;
  }

  .hero {
    min-height: 60vh;
  }

  .pricing-card {
    padding: 18px; /* un toque menos para que quepa mejor en móvil */
  }

  .pricing-table td,
  .pricing-table th {
    padding: 10px 6px;
    font-size: 0.85rem;
  }
}

/* --- Bonus: Animación para el banner de iOS --- */
#ios-install-banner {
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
