/* ========== VARIABLES ========== */
:root {
  --blue: #1B3A5C;
  --blue-dark: #142D47;
  --blue-light: #2A5580;
  --orange: #E87722;
  --orange-dark: #D06818;
  --orange-light: #F09044;
  --white: #FFFFFF;
  --gray-50: #F8F9FA;
  --gray-100: #F1F3F5;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-500: #6C757D;
  --gray-700: #495057;
  --gray-900: #212529;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --nav-height: 80px;
}

/* ========== RESET ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--blue);
  line-height: 1.2;
}

/* ========== UTILITIES ========== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
}

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

.section-subtitle {
  text-align: center;
  color: var(--gray-500);
  font-size: 1.1rem;
  margin-bottom: 48px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(232, 119, 34, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--blue);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-nav {
  background: var(--orange);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-size: 0.85rem;
}

.btn-nav:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow var(--transition), background var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.navbar-logo img {
  height: 64px;
  width: auto;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.navbar-menu a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue);
  position: relative;
}

.navbar-menu a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}

.navbar-menu a:not(.btn):hover::after,
.navbar-menu a:not(.btn).active::after {
  width: 100%;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue);
  transition: all var(--transition);
  border-radius: 2px;
}

.navbar-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== LANG SWITCH ========== */
.lang-switch {
  display: flex;
  gap: 4px;
  margin-left: auto;
  margin-right: 16px;
}

.lang-btn {
  background: none;
  border: 1px solid var(--gray-300);
  border-radius: 4px;
  padding: 4px 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  color: var(--gray-500);
  cursor: pointer;
  transition: all var(--transition);
}

.lang-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.lang-btn:hover:not(.active) {
  border-color: var(--blue);
  color: var(--blue);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 40px 20px;
}

.hero-brand {
  display: block;
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  margin-bottom: 12px;
  animation: fadeInDown 0.8s ease-out;
}

.hero h1 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* ========== SERVICIOS ========== */
.servicios {
  background: var(--gray-50);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange-light);
}

.card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  border-radius: 50%;
  padding: 16px;
  color: var(--white);
  transition: all var(--transition);
}

.card:hover .card-icon {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  transform: scale(1.1);
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ========== NOSOTROS ========== */
.nosotros-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.nosotros-highlight {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 20px;
}

.nosotros-text p {
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.nosotros-text .btn {
  margin-top: 12px;
}

.nosotros-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nosotros-image img {
  max-width: 320px;
  filter: drop-shadow(0 8px 25px rgba(27, 58, 92, 0.15));
}

/* ========== VENTAJAS ========== */
.ventajas {
  background: var(--gray-50);
}

.ventajas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.ventaja {
  text-align: center;
  padding: 32px 20px;
}

.ventaja-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  color: var(--orange);
}

.ventaja-icon svg {
  width: 100%;
  height: 100%;
}

.ventaja h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.ventaja p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ========== TARIFAS ========== */
.tarifas {
  background: var(--gray-50);
}

.tarifas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.tarifa-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.tarifa-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.tarifa-featured {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(232, 119, 34, 0.15);
}

.tarifa-featured:hover {
  box-shadow: 0 8px 30px rgba(232, 119, 34, 0.25);
}

.tarifa-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.tarifa-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  color: var(--blue);
}

.tarifa-icon svg {
  width: 100%;
  height: 100%;
}

.tarifa-featured .tarifa-icon {
  color: var(--orange);
}

.tarifa-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.tarifa-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 4px;
  line-height: 1;
}

.tarifa-unit {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-500);
}

.tarifa-detail {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.tarifa-features {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}

.tarifa-features li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 0.9rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  text-align: left;
}

.tarifa-features li:last-child {
  border-bottom: none;
}

.tarifa-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='7' fill='%23E87722' opacity='0.15'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%23E87722' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}

.tarifa-card .btn {
  margin-top: auto;
}

.tarifas-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

/* ========== GALERIA ========== */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.galeria-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--transition);
  aspect-ratio: 3 / 4;
}

.galeria-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.galeria-item:hover img {
  transform: scale(1.08);
}

.galeria-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}

.galeria-item:hover .galeria-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ========== LIGHTBOX ========== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
  z-index: 10001;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 28px;
  padding: 16px 12px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.3);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ========== CONTACTO ========== */
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contacto-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contacto-item-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: var(--white);
}

.contacto-item-icon svg {
  width: 100%;
  height: 100%;
}

.contacto-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contacto-item a,
.contacto-item p {
  display: block;
  font-size: 0.95rem;
  color: var(--gray-500);
}

.contacto-item a:hover {
  color: var(--orange);
}

.contacto-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: var(--white);
  transition: all var(--transition);
}

.social-whatsapp { background: #25D366; }
.social-facebook { background: #1877F2; }
.social-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.social-link svg {
  width: 100%;
  height: 100%;
}

/* Form */
.contacto-form {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-200);
}

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

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

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--blue);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-700);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 119, 34, 0.15);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236C757D' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 60px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  width: 60px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 280px;
}

.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links a,
.footer-contact a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 8px;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition);
  animation: pulse 2s infinite;
}

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

.whatsapp-float svg {
  width: 100%;
  height: 100%;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ventajas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tarifas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .galeria-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .nosotros-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .section-title--left {
    text-align: center;
  }

  .nosotros-image {
    order: -1;
  }

  .nosotros-image img {
    max-width: 240px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .section {
    padding: 60px 0;
  }

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

  /* Mobile nav */
  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 0;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
  }

  .navbar-menu.open {
    right: 0;
  }

  .navbar-menu li {
    width: 100%;
  }

  .navbar-menu a {
    display: block;
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--gray-100);
  }

  .navbar-menu a::after {
    display: none;
  }

  .btn-nav {
    margin-top: 16px;
    text-align: center;
  }

  /* Lang switch mobile */
  .lang-switch {
    margin-right: 12px;
  }

  /* Hero mobile */
  .hero-brand {
    font-size: 2.4rem;
    letter-spacing: 2px;
  }

  .hero h1 {
    font-size: 1.4rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

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

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

  /* Cards mobile */
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    padding: 32px 24px;
  }

  /* Tarifas mobile */
  .tarifas-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tarifa-card {
    padding: 28px 20px;
  }

  .tarifa-featured {
    order: -1;
  }

  /* Galeria mobile */
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Ventajas mobile */
  .ventajas-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* Contacto mobile */
  .contacto-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .contacto-form {
    padding: 24px;
  }

  /* Footer mobile */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-logo {
    margin: 0 auto 16px;
  }

  .footer-brand p {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-brand {
    font-size: 1.9rem;
    letter-spacing: 1px;
  }

  .hero h1 {
    font-size: 1.2rem;
  }

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

  .contacto-social {
    justify-content: center;
  }

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

  .footer-bottom p {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .lightbox-prev,
  .lightbox-next {
    padding: 20px 14px;
    font-size: 24px;
  }

  .lightbox-img {
    max-width: 95vw;
    max-height: 80vh;
  }
}
