/* ============================================================
   CONTACTO - ESTILOS
   ============================================================ */

/* ========== HERO ========== */
.sitio-web-contacto-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #111827;
  padding: 60px 20px;
  overflow: hidden;
}

.sitio-web-contacto-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  color: #fff;
}

.sitio-web-contacto-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  background: #84cc16;
  color: #111827;
  margin-bottom: 16px;
}

.sitio-web-contacto-hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.2;
}

.sitio-web-contacto-hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  max-width: 600px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .sitio-web-contacto-hero {
    min-height: 300px;
  }
  .sitio-web-contacto-hero-title {
    font-size: 32px;
  }
  .sitio-web-contacto-hero-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .sitio-web-contacto-hero {
    min-height: 250px;
  }
  .sitio-web-contacto-hero-title {
    font-size: 24px;
  }
  .sitio-web-contacto-hero-subtitle {
    font-size: 14px;
  }
}

/* ========== PÁGINA DE CONTACTO ========== */
.sitio-web-contacto-page {
  padding: 60px 20px;
  background: #f8fafc;
}

.sitio-web-contacto-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ========== FORMULARIO ========== */
.sitio-web-contacto-form {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e5e7eb;
}

.sitio-web-contacto-form h2 {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f3f4f6;
}

.sitio-web-contacto-form h2 i {
  color: #84cc16;
  margin-right: 10px;
}

.sitio-web-contacto-form .form-group {
  margin-bottom: 16px;
}

.sitio-web-contacto-form .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.sitio-web-contacto-form .form-group label .required {
  color: #ef4444;
}

.sitio-web-contacto-form .form-group input,
.sitio-web-contacto-form .form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s;
  outline: none;
  font-family: inherit;
  box-sizing: border-box;
}

.sitio-web-contacto-form .form-group input:focus,
.sitio-web-contacto-form .form-group textarea:focus {
  border-color: #84cc16;
}

.sitio-web-contacto-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.sitio-web-contacto-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sitio-web-contacto-form .checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0;
}

.sitio-web-contacto-form .checkbox-group input[type='checkbox'] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #84cc16;
  cursor: pointer;
}

.sitio-web-contacto-form .checkbox-group label {
  font-size: 14px;
  font-weight: 400;
  color: #6b7280;
  cursor: pointer;
  line-height: 1.4;
}

.sitio-web-contacto-form .checkbox-group label a {
  color: #84cc16;
  text-decoration: none;
}

.sitio-web-contacto-form .checkbox-group label a:hover {
  text-decoration: underline;
}

.sitio-web-contacto-error {
  background: #fef2f2;
  color: #dc2626;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
  border: 1px solid #fca5a5;
}

.sitio-web-contacto-btn {
  width: 100%;
  padding: 14px;
  background: #84cc16;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.sitio-web-contacto-btn:hover {
  background: #65a30d;
}

.sitio-web-contacto-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.sitio-web-contacto-btn i {
  margin-right: 8px;
}

/* ========== INFORMACIÓN DE CONTACTO ========== */
.sitio-web-contacto-info {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e5e7eb;
}

.sitio-web-contacto-info h2 {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f3f4f6;
}

.sitio-web-contacto-info h2 i {
  color: #84cc16;
  margin-right: 10px;
}

.sitio-web-contacto-info-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sitio-web-contacto-info .info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.sitio-web-contacto-info .info-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0fdf4;
  color: #84cc16;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.sitio-web-contacto-info .info-text {
  flex: 1;
}

.sitio-web-contacto-info .info-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2px;
}

.sitio-web-contacto-info .info-text span,
.sitio-web-contacto-info .info-text div {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.5;
}

/* Redes sociales en contacto */
.sitio-web-contacto-info .redes-sociales {
  display: flex;
  gap: 12px;
  margin-top: 4px;
  flex-wrap: wrap;
}

.sitio-web-contacto-info .redes-sociales a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform 0.2s;
}

.sitio-web-contacto-info .redes-sociales a:hover {
  transform: scale(1.15);
}

/* Horarios */
#infoHorariosText .horario-row {
  display: flex;
  justify-content: space-between;
  padding: 2px 0;
  font-size: 14px;
  color: #6b7280;
}

#infoHorariosText .horario-row .dia {
  font-weight: 600;
  color: #111827;
}

/* ========== MAPA ========== */
.sitio-web-contacto-mapa {
  padding: 40px 20px 60px;
  background: #f8fafc;
}

.sitio-web-contacto-mapa-container {
  max-width: 1100px;
  margin: 0 auto;
}

.sitio-web-contacto-mapa-container h2 {
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.sitio-web-contacto-mapa-container h2 i {
  color: #84cc16;
  margin-right: 10px;
}

.sitio-web-contacto-mapa-iframe {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #f3f4f6;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sitio-web-contacto-mapa-iframe iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

.sitio-web-contacto-mapa-iframe p {
  color: #6b7280;
  font-size: 16px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .sitio-web-contacto-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .sitio-web-contacto-form {
    padding: 24px 20px;
  }
  .sitio-web-contacto-info {
    padding: 24px 20px;
  }
  .sitio-web-contacto-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .sitio-web-contacto-mapa-iframe iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .sitio-web-contacto-form {
    padding: 16px;
  }
  .sitio-web-contacto-info {
    padding: 16px;
  }
  .sitio-web-contacto-btn {
    font-size: 15px;
    padding: 12px;
  }
  .sitio-web-contacto-mapa-iframe iframe {
    height: 220px;
  }
}

/* ============================================================
   RESERVA DE MESA
   ============================================================ */
.sitio-web-reserva {
  padding: 60px 20px;
  background: #fff;
  border-top: 1px solid #e5e7eb;
}

.sitio-web-reserva-container {
  max-width: 800px;
  margin: 0 auto;
}

.sitio-web-reserva-header {
  text-align: center;
  margin-bottom: 32px;
}

.sitio-web-reserva-subtitle {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #84cc16;
  margin-bottom: 4px;
}

.sitio-web-reserva-title {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.sitio-web-reserva-descripcion {
  font-size: 16px;
  color: #6b7280;
  max-width: 500px;
  margin: 0 auto;
}

.sitio-web-reserva-form {
  background: #f8fafc;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e5e7eb;
}

.sitio-web-reserva-form .form-group {
  margin-bottom: 16px;
}

.sitio-web-reserva-form .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.sitio-web-reserva-form .form-group label .required {
  color: #ef4444;
}

.sitio-web-reserva-form .form-group input,
.sitio-web-reserva-form .form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s;
  outline: none;
  font-family: inherit;
  box-sizing: border-box;
}

.sitio-web-reserva-form .form-group input:focus,
.sitio-web-reserva-form .form-group textarea:focus {
  border-color: #84cc16;
}

.sitio-web-reserva-form .form-group textarea {
  resize: vertical;
}

.sitio-web-reserva-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sitio-web-reserva-row .form-group:last-child {
  margin-bottom: 0;
}

.sitio-web-reserva-error {
  background: #fef2f2;
  color: #dc2626;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 16px;
  border: 1px solid #fca5a5;
}

.sitio-web-reserva-btn {
  width: 100%;
  padding: 14px;
  background: #84cc16;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

.sitio-web-reserva-btn:hover {
  background: #65a30d;
}

.sitio-web-reserva-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.sitio-web-reserva-btn i {
  margin-right: 8px;
}

@media (max-width: 768px) {
  .sitio-web-reserva-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .sitio-web-reserva-form {
    padding: 24px 16px;
  }
  .sitio-web-reserva-title {
    font-size: 26px;
  }
}
